diff --git a/protocol/communities/community.go b/protocol/communities/community.go index b4aa4a6dc..4b1f30304 100644 --- a/protocol/communities/community.go +++ b/protocol/communities/community.go @@ -516,16 +516,6 @@ type CommunitySettings struct { Clock uint64 `json:"clock"` } -// `CommunityAdminEventChanges contain additional changes that don't live on -// a `Community` but still have to be propagated to other admin and control nodes -type CommunityEventChanges struct { - *CommunityChanges - // `RejectedRequestsToJoin` is a map of signer keys to requests to join - RejectedRequestsToJoin map[string]*protobuf.CommunityRequestToJoin `json:"rejectedRequestsToJoin"` - // `AcceptedRequestsToJoin` is a map of signer keys to requests to join - AcceptedRequestsToJoin map[string]*protobuf.CommunityRequestToJoin `json:"acceptedRequestsToJoin"` -} - func (o *Community) emptyCommunityChanges() *CommunityChanges { changes := EmptyCommunityChanges() changes.Community = o @@ -2343,20 +2333,14 @@ func (o *Community) DeclineRequestToJoin(dbRequest *RequestToJoin) (adminEventCr } if o.IsControlNode() { - // typically, community's clock is increased implicitly when making changes - // to it, however in this scenario there are no changes in the community, yet - // we need to increase the clock to ensure the owner event is processed by other - // nodes. + pk, err := common.HexToPubkey(dbRequest.PublicKey) + if err != nil { + return false, err + } + o.removeMemberFromOrg(pk) o.increaseClock() } else { - rejectedRequestsToJoin := make(map[string]*protobuf.CommunityRequestToJoin) - rejectedRequestsToJoin[dbRequest.PublicKey] = dbRequest.ToCommunityRequestToJoinProtobuf() - - adminChanges := &CommunityEventChanges{ - CommunityChanges: o.emptyCommunityChanges(), - RejectedRequestsToJoin: rejectedRequestsToJoin, - } - err = o.addNewCommunityEvent(o.ToCommunityRequestToJoinRejectCommunityEvent(adminChanges)) + err = o.addNewCommunityEvent(o.ToCommunityRequestToJoinRejectCommunityEvent(dbRequest.PublicKey, dbRequest.ToCommunityRequestToJoinProtobuf())) if err != nil { return adminEventCreated, err } @@ -2367,11 +2351,8 @@ func (o *Community) DeclineRequestToJoin(dbRequest *RequestToJoin) (adminEventCr return adminEventCreated, err } -func (o *Community) ValidateEvent(event *CommunityEvent, signer *ecdsa.PublicKey) error { - o.mutex.Lock() - defer o.mutex.Unlock() - - err := validateCommunityEvent(event) +func (o *Community) validateEvent(event *CommunityEvent, signer *ecdsa.PublicKey) error { + err := event.Validate() if err != nil { return err } @@ -2397,6 +2378,12 @@ func (o *Community) ValidateEvent(event *CommunityEvent, signer *ecdsa.PublicKey return nil } +func (o *Community) ValidateEvent(event *CommunityEvent, signer *ecdsa.PublicKey) error { + o.mutex.Lock() + defer o.mutex.Unlock() + return o.validateEvent(event, signer) +} + func (o *Community) MemberCanManageToken(member *ecdsa.PublicKey, token *community_token.CommunityToken) bool { return o.IsMemberOwner(member) || o.IsControlNode() || (o.IsMemberTokenMaster(member) && token.PrivilegesLevel != community_token.OwnerLevel && token.PrivilegesLevel != community_token.MasterLevel) diff --git a/protocol/communities/community_event.go b/protocol/communities/community_event.go index 5e92742d5..7f1176fbd 100644 --- a/protocol/communities/community_event.go +++ b/protocol/communities/community_event.go @@ -2,435 +2,257 @@ package communities import ( "crypto/ecdsa" + "encoding/json" "errors" + "fmt" "github.com/golang/protobuf/proto" - utils "github.com/status-im/status-go/common" - "github.com/status-im/status-go/protocol/common" + "github.com/status-im/status-go/eth-node/crypto" "github.com/status-im/status-go/protocol/protobuf" ) -var ErrInvalidCommunityEventClock = errors.New("clock for admin event message is outdated") +type CommunityEvent struct { + CommunityEventClock uint64 `json:"communityEventClock"` + Type protobuf.CommunityEvent_EventType `json:"type"` + CommunityConfig *protobuf.CommunityConfig `json:"communityConfig,omitempty"` + TokenPermission *protobuf.CommunityTokenPermission `json:"tokenPermissions,omitempty"` + CategoryData *protobuf.CategoryData `json:"categoryData,omitempty"` + ChannelData *protobuf.ChannelData `json:"channelData,omitempty"` + MemberToAction string `json:"memberToAction,omitempty"` + RequestToJoin *protobuf.CommunityRequestToJoin `json:"requestToJoin,omitempty"` + TokenMetadata *protobuf.CommunityTokenMetadata `json:"tokenMetadata,omitempty"` + Payload []byte `json:"payload"` + Signature []byte `json:"signature"` +} -func (o *Community) ToCreateChannelCommunityEvent(channelID string, channel *protobuf.CommunityChat) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CHANNEL_CREATE), - Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_CREATE, - ChannelData: &protobuf.ChannelData{ - ChannelId: channelID, - Channel: channel, - }, +func (e *CommunityEvent) ToProtobuf() *protobuf.CommunityEvent { + var acceptedRequestsToJoin map[string]*protobuf.CommunityRequestToJoin + var rejectedRequestsToJoin map[string]*protobuf.CommunityRequestToJoin + + switch e.Type { + case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT: + acceptedRequestsToJoin = make(map[string]*protobuf.CommunityRequestToJoin) + acceptedRequestsToJoin[e.MemberToAction] = e.RequestToJoin + case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT: + rejectedRequestsToJoin = make(map[string]*protobuf.CommunityRequestToJoin) + rejectedRequestsToJoin[e.MemberToAction] = e.RequestToJoin + } + + return &protobuf.CommunityEvent{ + CommunityEventClock: e.CommunityEventClock, + Type: e.Type, + CommunityConfig: e.CommunityConfig, + TokenPermission: e.TokenPermission, + CategoryData: e.CategoryData, + ChannelData: e.ChannelData, + MemberToAction: e.MemberToAction, + RejectedRequestsToJoin: rejectedRequestsToJoin, + AcceptedRequestsToJoin: acceptedRequestsToJoin, + TokenMetadata: e.TokenMetadata, } } -func (o *Community) ToEditChannelCommunityEvent(channelID string, channel *protobuf.CommunityChat) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CHANNEL_EDIT), - Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_EDIT, - ChannelData: &protobuf.ChannelData{ - ChannelId: channelID, - Channel: channel, - }, +func communityEventFromProtobuf(msg *protobuf.SignedCommunityEvent) (*CommunityEvent, error) { + decodedEvent := protobuf.CommunityEvent{} + err := proto.Unmarshal(msg.Payload, &decodedEvent) + if err != nil { + return nil, err } + + memberToAction := decodedEvent.MemberToAction + var requestToJoin *protobuf.CommunityRequestToJoin + + switch decodedEvent.Type { + case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT: + for member, request := range decodedEvent.AcceptedRequestsToJoin { + memberToAction = member + requestToJoin = request + break + } + case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT: + for member, request := range decodedEvent.RejectedRequestsToJoin { + memberToAction = member + requestToJoin = request + break + } + } + + return &CommunityEvent{ + CommunityEventClock: decodedEvent.CommunityEventClock, + Type: decodedEvent.Type, + CommunityConfig: decodedEvent.CommunityConfig, + TokenPermission: decodedEvent.TokenPermission, + CategoryData: decodedEvent.CategoryData, + ChannelData: decodedEvent.ChannelData, + MemberToAction: memberToAction, + RequestToJoin: requestToJoin, + TokenMetadata: decodedEvent.TokenMetadata, + Payload: msg.Payload, + Signature: msg.Signature, + }, nil } -func (o *Community) ToDeleteChannelCommunityEvent(channelID string) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CHANNEL_DELETE), - Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_DELETE, - ChannelData: &protobuf.ChannelData{ - ChannelId: channelID, - }, +func (e *CommunityEvent) RecoverSigner() (*ecdsa.PublicKey, error) { + if e.Signature == nil || len(e.Signature) == 0 { + return nil, errors.New("missing signature") } + + signer, err := crypto.SigToPub( + crypto.Keccak256(e.Payload), + e.Signature, + ) + if err != nil { + return nil, errors.New("failed to recover signer") + } + + return signer, nil } -func (o *Community) ToReorderChannelCommunityEvent(categoryID string, channelID string, position int) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CHANNEL_REORDER), - Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_REORDER, - ChannelData: &protobuf.ChannelData{ - CategoryId: categoryID, - ChannelId: channelID, - Position: int32(position), - }, - } -} - -func (o *Community) ToCreateCategoryCommunityEvent(categoryID string, categoryName string, channelsIds []string) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CATEGORY_CREATE), - Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_CREATE, - CategoryData: &protobuf.CategoryData{ - Name: categoryName, - CategoryId: categoryID, - ChannelsIds: channelsIds, - }, - } -} - -func (o *Community) ToEditCategoryCommunityEvent(categoryID string, categoryName string, channelsIds []string) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CATEGORY_EDIT), - Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_EDIT, - CategoryData: &protobuf.CategoryData{ - Name: categoryName, - CategoryId: categoryID, - ChannelsIds: channelsIds, - }, - } -} - -func (o *Community) ToDeleteCategoryCommunityEvent(categoryID string) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CATEGORY_DELETE), - Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_DELETE, - CategoryData: &protobuf.CategoryData{ - CategoryId: categoryID, - }, - } -} - -func (o *Community) ToReorderCategoryCommunityEvent(categoryID string, position int) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_CATEGORY_REORDER), - Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_REORDER, - CategoryData: &protobuf.CategoryData{ - CategoryId: categoryID, - Position: int32(position), - }, - } -} - -func (o *Community) ToBanCommunityMemberCommunityEvent(pubkey string) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_MEMBER_BAN), - Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_BAN, - MemberToAction: pubkey, - } -} - -func (o *Community) ToUnbanCommunityMemberCommunityEvent(pubkey string) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_MEMBER_UNBAN), - Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_UNBAN, - MemberToAction: pubkey, - } -} - -func (o *Community) ToKickCommunityMemberCommunityEvent(pubkey string) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_MEMBER_KICK), - Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_KICK, - MemberToAction: pubkey, - } -} - -func (o *Community) ToCommunityEditCommunityEvent(description *protobuf.CommunityDescription) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_EDIT), - Type: protobuf.CommunityEvent_COMMUNITY_EDIT, - CommunityConfig: &protobuf.CommunityConfig{ - Identity: description.Identity, - Permissions: description.Permissions, - AdminSettings: description.AdminSettings, - IntroMessage: description.IntroMessage, - OutroMessage: description.OutroMessage, - Tags: description.Tags, - }, - } -} - -func (o *Community) ToCommunityTokenPermissionChangeCommunityEvent(permission *protobuf.CommunityTokenPermission) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE), - Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE, - TokenPermission: permission, - } -} - -func (o *Community) ToCommunityTokenPermissionDeleteCommunityEvent(permission *protobuf.CommunityTokenPermission) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE), - Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE, - TokenPermission: permission, - } -} - -func (o *Community) ToCommunityRequestToJoinAcceptCommunityEvent(changes *CommunityEventChanges) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT), - Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, - AcceptedRequestsToJoin: changes.AcceptedRequestsToJoin, - } -} - -func (o *Community) ToCommunityRequestToJoinRejectCommunityEvent(changes *CommunityEventChanges) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT), - Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT, - RejectedRequestsToJoin: changes.RejectedRequestsToJoin, - } -} - -func (o *Community) ToAddTokenMetadataCommunityEvent(tokenMetadata *protobuf.CommunityTokenMetadata) *CommunityEvent { - return &CommunityEvent{ - CommunityEventClock: o.nextEventClock(protobuf.CommunityEvent_COMMUNITY_TOKEN_ADD), - Type: protobuf.CommunityEvent_COMMUNITY_TOKEN_ADD, - TokenMetadata: tokenMetadata, - } -} - -func (o *Community) UpdateCommunityByEvents(communityEventMessage *CommunityEventsMessage) error { - o.mutex.Lock() - defer o.mutex.Unlock() - - // Validate that EventsBaseCommunityDescription was signed by the control node - description, err := validateAndGetEventsMessageCommunityDescription(communityEventMessage.EventsBaseCommunityDescription, o.ControlNode()) - if err != nil { - return err - } - - if description.Clock != o.config.CommunityDescription.Clock { - return ErrInvalidCommunityEventClock - } - - // Merge community events to existing community. Community events must be stored to the db - // during saving the community - o.mergeCommunityEvents(communityEventMessage) - - if o.encryptor != nil { - _, err = decryptDescription(o.ID(), o.encryptor, description, o.config.Logger) - if err != nil { - return err - } - } - - o.config.CommunityDescription = description - o.config.CommunityDescriptionProtocolMessage = communityEventMessage.EventsBaseCommunityDescription - - // Update the copy of the CommunityDescription by community events - err = o.updateCommunityDescriptionByEvents() +func (e *CommunityEvent) Sign(pk *ecdsa.PrivateKey) error { + sig, err := crypto.Sign(crypto.Keccak256(e.Payload), pk) if err != nil { return err } + e.Signature = sig return nil } -func (o *Community) updateCommunityDescriptionByEvents() error { - if o.config.EventsData == nil { - return nil - } - - for _, event := range o.config.EventsData.Events { - err := o.updateCommunityDescriptionByCommunityEvent(event) - if err != nil { - return err - } - } - - return nil -} - -func (o *Community) updateCommunityDescriptionByCommunityEvent(communityEvent CommunityEvent) error { - switch communityEvent.Type { +func (e *CommunityEvent) Validate() error { + switch e.Type { case protobuf.CommunityEvent_COMMUNITY_EDIT: - o.config.CommunityDescription.Identity = communityEvent.CommunityConfig.Identity - o.config.CommunityDescription.Permissions = communityEvent.CommunityConfig.Permissions - o.config.CommunityDescription.AdminSettings = communityEvent.CommunityConfig.AdminSettings - o.config.CommunityDescription.IntroMessage = communityEvent.CommunityConfig.IntroMessage - o.config.CommunityDescription.OutroMessage = communityEvent.CommunityConfig.OutroMessage - o.config.CommunityDescription.Tags = communityEvent.CommunityConfig.Tags + if e.CommunityConfig == nil || e.CommunityConfig.Identity == nil || + e.CommunityConfig.Permissions == nil || e.CommunityConfig.AdminSettings == nil { + return errors.New("invalid config change admin event") + } case protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE: - if o.IsControlNode() { - _, err := o.upsertTokenPermission(communityEvent.TokenPermission) - if err != nil { - return err - } + if e.TokenPermission == nil || len(e.TokenPermission.Id) == 0 { + return errors.New("invalid token permission change event") } case protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE: - if o.IsControlNode() { - _, err := o.deleteTokenPermission(communityEvent.TokenPermission.Id) - if err != nil { - return err - } + if e.TokenPermission == nil || len(e.TokenPermission.Id) == 0 { + return errors.New("invalid token permission delete event") } case protobuf.CommunityEvent_COMMUNITY_CATEGORY_CREATE: - _, err := o.createCategory(communityEvent.CategoryData.CategoryId, communityEvent.CategoryData.Name, communityEvent.CategoryData.ChannelsIds) - if err != nil { - return err + if e.CategoryData == nil || len(e.CategoryData.CategoryId) == 0 { + return errors.New("invalid community category create event") } case protobuf.CommunityEvent_COMMUNITY_CATEGORY_DELETE: - _, err := o.deleteCategory(communityEvent.CategoryData.CategoryId) - if err != nil { - return err + if e.CategoryData == nil || len(e.CategoryData.CategoryId) == 0 { + return errors.New("invalid community category delete event") } case protobuf.CommunityEvent_COMMUNITY_CATEGORY_EDIT: - _, err := o.editCategory(communityEvent.CategoryData.CategoryId, communityEvent.CategoryData.Name, communityEvent.CategoryData.ChannelsIds) - if err != nil { - return err + if e.CategoryData == nil || len(e.CategoryData.CategoryId) == 0 { + return errors.New("invalid community category edit event") } case protobuf.CommunityEvent_COMMUNITY_CHANNEL_CREATE: - err := o.createChat(communityEvent.ChannelData.ChannelId, communityEvent.ChannelData.Channel) - if err != nil { - return err + if e.ChannelData == nil || len(e.ChannelData.ChannelId) == 0 || + e.ChannelData.Channel == nil { + return errors.New("invalid community channel create event") } case protobuf.CommunityEvent_COMMUNITY_CHANNEL_DELETE: - o.deleteChat(communityEvent.ChannelData.ChannelId) + if e.ChannelData == nil || len(e.ChannelData.ChannelId) == 0 { + return errors.New("invalid community channel delete event") + } case protobuf.CommunityEvent_COMMUNITY_CHANNEL_EDIT: - err := o.editChat(communityEvent.ChannelData.ChannelId, communityEvent.ChannelData.Channel) - if err != nil { - return err + if e.ChannelData == nil || len(e.ChannelData.ChannelId) == 0 || + e.ChannelData.Channel == nil { + return errors.New("invalid community channel edit event") } case protobuf.CommunityEvent_COMMUNITY_CHANNEL_REORDER: - _, err := o.reorderChat(communityEvent.ChannelData.CategoryId, communityEvent.ChannelData.ChannelId, int(communityEvent.ChannelData.Position)) - if err != nil { - return err + if e.ChannelData == nil || len(e.ChannelData.ChannelId) == 0 { + return errors.New("invalid community channel reorder event") } case protobuf.CommunityEvent_COMMUNITY_CATEGORY_REORDER: - _, err := o.reorderCategories(communityEvent.CategoryData.CategoryId, int(communityEvent.CategoryData.Position)) - if err != nil { - return err + if e.CategoryData == nil || len(e.CategoryData.CategoryId) == 0 { + return errors.New("invalid community category reorder event") + } + + case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT: + if len(e.MemberToAction) == 0 || e.RequestToJoin == nil { + return errors.New("invalid community request to join event") } case protobuf.CommunityEvent_COMMUNITY_MEMBER_KICK: - if o.IsControlNode() { - pk, err := common.HexToPubkey(communityEvent.MemberToAction) - if err != nil { - return err - } - o.removeMemberFromOrg(pk) + if len(e.MemberToAction) == 0 { + return errors.New("invalid community member kick event") } + case protobuf.CommunityEvent_COMMUNITY_MEMBER_BAN: - if o.IsControlNode() { - pk, err := common.HexToPubkey(communityEvent.MemberToAction) - if err != nil { - return err - } - o.banUserFromCommunity(pk) + if len(e.MemberToAction) == 0 { + return errors.New("invalid community member ban event") } + case protobuf.CommunityEvent_COMMUNITY_MEMBER_UNBAN: - if o.IsControlNode() { - pk, err := common.HexToPubkey(communityEvent.MemberToAction) - if err != nil { - return err - } - o.unbanUserFromCommunity(pk) + if len(e.MemberToAction) == 0 { + return errors.New("invalid community member unban event") } + case protobuf.CommunityEvent_COMMUNITY_TOKEN_ADD: - o.config.CommunityDescription.CommunityTokensMetadata = append(o.config.CommunityDescription.CommunityTokensMetadata, communityEvent.TokenMetadata) + if e.TokenMetadata == nil || len(e.TokenMetadata.ContractAddresses) == 0 { + return errors.New("invalid add community token event") + } } return nil } -func (o *Community) nextEventClock(eventType protobuf.CommunityEvent_EventType) uint64 { - // assumes events are already sorted by clock - latestEventClock := uint64(0) - if o.config.EventsData != nil { - for _, event := range o.config.EventsData.Events { - if event.Type == eventType { - latestEventClock = event.CommunityEventClock - } - } +// EventTypeID constructs a unique identifier for an event and its associated target. +func (e *CommunityEvent) EventTypeID() string { + switch e.Type { + case protobuf.CommunityEvent_COMMUNITY_EDIT: + return fmt.Sprintf("%d", e.Type) + + case protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE, + protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE: + return fmt.Sprintf("%d-%s", e.Type, e.TokenPermission.Id) + + case protobuf.CommunityEvent_COMMUNITY_CATEGORY_CREATE, + protobuf.CommunityEvent_COMMUNITY_CATEGORY_DELETE, + protobuf.CommunityEvent_COMMUNITY_CATEGORY_EDIT, + protobuf.CommunityEvent_COMMUNITY_CATEGORY_REORDER: + return fmt.Sprintf("%d-%s", e.Type, e.CategoryData.CategoryId) + + case protobuf.CommunityEvent_COMMUNITY_CHANNEL_CREATE, + protobuf.CommunityEvent_COMMUNITY_CHANNEL_DELETE, + protobuf.CommunityEvent_COMMUNITY_CHANNEL_EDIT, + protobuf.CommunityEvent_COMMUNITY_CHANNEL_REORDER: + return fmt.Sprintf("%d-%s", e.Type, e.ChannelData.ChannelId) + + case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, + protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT, + protobuf.CommunityEvent_COMMUNITY_MEMBER_KICK, + protobuf.CommunityEvent_COMMUNITY_MEMBER_BAN, + protobuf.CommunityEvent_COMMUNITY_MEMBER_UNBAN: + return fmt.Sprintf("%d-%s", e.Type, e.MemberToAction) + + case protobuf.CommunityEvent_COMMUNITY_TOKEN_ADD: + return fmt.Sprintf("%d-%s", e.Type, e.TokenMetadata.Name) } - clock := o.config.CommunityDescription.Clock - if latestEventClock > clock { - clock = latestEventClock - } - - // lamport timestamp - timestamp := o.timesource.GetCurrentTime() - if clock == 0 || clock < timestamp { - clock = timestamp - } else { - clock = clock + 1 - } - - return clock + return "" } -func (o *Community) addNewCommunityEvent(event *CommunityEvent) error { - err := validateCommunityEvent(event) - if err != nil { - return err - } - - // All events must be built on top of the control node CommunityDescription - // 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.CommunityDescriptionProtocolMessage, o.ControlNode()) - if err != nil { - return err - } - - o.config.EventsData = &EventsData{ - EventsBaseCommunityDescription: o.config.CommunityDescriptionProtocolMessage, - Events: []CommunityEvent{}, - } - } - - event.Payload, err = proto.Marshal(event.ToProtobuf()) - if err != nil { - return err - } - - o.config.EventsData.Events = append(o.config.EventsData.Events, *event) - - return nil +func communityEventsToJSONEncodedBytes(communityEvents []CommunityEvent) ([]byte, error) { + return json.Marshal(communityEvents) } -func (o *Community) ToCommunityEventsMessage() *CommunityEventsMessage { - return &CommunityEventsMessage{ - CommunityID: o.ID(), - EventsBaseCommunityDescription: o.config.EventsData.EventsBaseCommunityDescription, - Events: o.config.EventsData.Events, - } -} - -func validateAndGetEventsMessageCommunityDescription(signedDescription []byte, signerPubkey *ecdsa.PublicKey) (*protobuf.CommunityDescription, error) { - metadata := &protobuf.ApplicationMetadataMessage{} - - err := proto.Unmarshal(signedDescription, metadata) +func communityEventsFromJSONEncodedBytes(jsonEncodedRawEvents []byte) ([]CommunityEvent, error) { + var events []CommunityEvent + err := json.Unmarshal(jsonEncodedRawEvents, &events) if err != nil { return nil, err } - if metadata.Type != protobuf.ApplicationMetadataMessage_COMMUNITY_DESCRIPTION { - return nil, ErrInvalidMessage - } - - signer, err := utils.RecoverKey(metadata) - if err != nil { - return nil, err - } - - if signer == nil { - return nil, errors.New("CommunityDescription does not contain the control node signature") - } - - if !signer.Equal(signerPubkey) { - return nil, errors.New("CommunityDescription was not signed by an owner") - } - - description := &protobuf.CommunityDescription{} - - err = proto.Unmarshal(metadata.Payload, description) - if err != nil { - return nil, err - } - - return description, nil + return events, nil } diff --git a/protocol/communities/community_event_message.go b/protocol/communities/community_event_message.go index 423264de2..2472be9fc 100644 --- a/protocol/communities/community_event_message.go +++ b/protocol/communities/community_event_message.go @@ -1,100 +1,11 @@ package communities import ( - "bytes" - "crypto/ecdsa" - "encoding/json" - "errors" - "sort" - "github.com/golang/protobuf/proto" - "github.com/status-im/status-go/eth-node/crypto" "github.com/status-im/status-go/protocol/protobuf" ) -type CommunityEvent struct { - CommunityEventClock uint64 `json:"communityEventClock"` - Type protobuf.CommunityEvent_EventType `json:"type"` - CommunityConfig *protobuf.CommunityConfig `json:"communityConfig,omitempty"` - TokenPermission *protobuf.CommunityTokenPermission `json:"tokenPermissions,omitempty"` - CategoryData *protobuf.CategoryData `json:"categoryData,omitempty"` - ChannelData *protobuf.ChannelData `json:"channelData,omitempty"` - MemberToAction string `json:"memberToAction,omitempty"` - MembersAdded map[string]*protobuf.CommunityMember `json:"membersAdded,omitempty"` - RejectedRequestsToJoin map[string]*protobuf.CommunityRequestToJoin `json:"rejectedRequestsToJoin,omitempty"` - AcceptedRequestsToJoin map[string]*protobuf.CommunityRequestToJoin `json:"acceptedRequestsToJoin,omitempty"` - TokenMetadata *protobuf.CommunityTokenMetadata `json:"tokenMetadata,omitempty"` - Payload []byte `json:"payload"` - Signature []byte `json:"signature"` -} - -func (e *CommunityEvent) ToProtobuf() *protobuf.CommunityEvent { - return &protobuf.CommunityEvent{ - CommunityEventClock: e.CommunityEventClock, - Type: e.Type, - CommunityConfig: e.CommunityConfig, - TokenPermission: e.TokenPermission, - CategoryData: e.CategoryData, - ChannelData: e.ChannelData, - MemberToAction: e.MemberToAction, - MembersAdded: e.MembersAdded, - RejectedRequestsToJoin: e.RejectedRequestsToJoin, - AcceptedRequestsToJoin: e.AcceptedRequestsToJoin, - TokenMetadata: e.TokenMetadata, - } -} - -func communityEventFromProtobuf(msg *protobuf.SignedCommunityEvent) (*CommunityEvent, error) { - decodedEvent := protobuf.CommunityEvent{} - err := proto.Unmarshal(msg.Payload, &decodedEvent) - if err != nil { - return nil, err - } - - return &CommunityEvent{ - CommunityEventClock: decodedEvent.CommunityEventClock, - Type: decodedEvent.Type, - CommunityConfig: decodedEvent.CommunityConfig, - TokenPermission: decodedEvent.TokenPermission, - CategoryData: decodedEvent.CategoryData, - ChannelData: decodedEvent.ChannelData, - MemberToAction: decodedEvent.MemberToAction, - MembersAdded: decodedEvent.MembersAdded, - RejectedRequestsToJoin: decodedEvent.RejectedRequestsToJoin, - AcceptedRequestsToJoin: decodedEvent.AcceptedRequestsToJoin, - TokenMetadata: decodedEvent.TokenMetadata, - Payload: msg.Payload, - Signature: msg.Signature, - }, nil -} - -func (e *CommunityEvent) RecoverSigner() (*ecdsa.PublicKey, error) { - if e.Signature == nil || len(e.Signature) == 0 { - return nil, errors.New("missing signature") - } - - signer, err := crypto.SigToPub( - crypto.Keccak256(e.Payload), - e.Signature, - ) - if err != nil { - return nil, errors.New("failed to recover signer") - } - - return signer, nil -} - -func (e *CommunityEvent) Sign(pk *ecdsa.PrivateKey) error { - sig, err := crypto.Sign(crypto.Keccak256(e.Payload), pk) - if err != nil { - return err - } - - e.Signature = sig - return nil -} - type CommunityEventsMessage struct { CommunityID []byte `json:"communityId"` EventsBaseCommunityDescription []byte `json:"eventsBaseCommunityDescription"` @@ -141,145 +52,3 @@ func (m *CommunityEventsMessage) Marshal() ([]byte, error) { pb := m.ToProtobuf() return proto.Marshal(pb) } - -func (c *Community) mergeCommunityEvents(communityEventMessage *CommunityEventsMessage) { - if c.config.EventsData == nil { - c.config.EventsData = &EventsData{ - EventsBaseCommunityDescription: communityEventMessage.EventsBaseCommunityDescription, - Events: communityEventMessage.Events, - } - return - } - - for _, update := range communityEventMessage.Events { - var exists bool - for _, existing := range c.config.EventsData.Events { - if isCommunityEventsEqual(update, existing) { - exists = true - break - } - } - if !exists { - c.config.EventsData.Events = append(c.config.EventsData.Events, update) - } - } - - c.sortCommunityEvents() -} - -func (c *Community) sortCommunityEvents() { - sort.Slice(c.config.EventsData.Events, func(i, j int) bool { - return c.config.EventsData.Events[i].CommunityEventClock < c.config.EventsData.Events[j].CommunityEventClock - }) -} - -func validateCommunityEvent(communityEvent *CommunityEvent) error { - switch communityEvent.Type { - case protobuf.CommunityEvent_COMMUNITY_EDIT: - if communityEvent.CommunityConfig == nil || communityEvent.CommunityConfig.Identity == nil || - communityEvent.CommunityConfig.Permissions == nil || communityEvent.CommunityConfig.AdminSettings == nil { - return errors.New("invalid config change admin event") - } - - case protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE: - if communityEvent.TokenPermission == nil || len(communityEvent.TokenPermission.Id) == 0 { - return errors.New("invalid token permission change event") - } - - case protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE: - if communityEvent.TokenPermission == nil || len(communityEvent.TokenPermission.Id) == 0 { - return errors.New("invalid token permission delete event") - } - - case protobuf.CommunityEvent_COMMUNITY_CATEGORY_CREATE: - if communityEvent.CategoryData == nil || len(communityEvent.CategoryData.CategoryId) == 0 { - return errors.New("invalid community category create event") - } - - case protobuf.CommunityEvent_COMMUNITY_CATEGORY_DELETE: - if communityEvent.CategoryData == nil || len(communityEvent.CategoryData.CategoryId) == 0 { - return errors.New("invalid community category delete event") - } - - case protobuf.CommunityEvent_COMMUNITY_CATEGORY_EDIT: - if communityEvent.CategoryData == nil || len(communityEvent.CategoryData.CategoryId) == 0 { - return errors.New("invalid community category edit event") - } - - case protobuf.CommunityEvent_COMMUNITY_CHANNEL_CREATE: - if communityEvent.ChannelData == nil || len(communityEvent.ChannelData.ChannelId) == 0 || - communityEvent.ChannelData.Channel == nil { - return errors.New("invalid community channel create event") - } - - case protobuf.CommunityEvent_COMMUNITY_CHANNEL_DELETE: - if communityEvent.ChannelData == nil || len(communityEvent.ChannelData.ChannelId) == 0 { - return errors.New("invalid community channel delete event") - } - - case protobuf.CommunityEvent_COMMUNITY_CHANNEL_EDIT: - if communityEvent.ChannelData == nil || len(communityEvent.ChannelData.ChannelId) == 0 || - communityEvent.ChannelData.Channel == nil { - return errors.New("invalid community channel edit event") - } - - case protobuf.CommunityEvent_COMMUNITY_CHANNEL_REORDER: - if communityEvent.ChannelData == nil || len(communityEvent.ChannelData.ChannelId) == 0 { - return errors.New("invalid community channel reorder event") - } - - case protobuf.CommunityEvent_COMMUNITY_CATEGORY_REORDER: - if communityEvent.CategoryData == nil || len(communityEvent.CategoryData.CategoryId) == 0 { - return errors.New("invalid community category reorder event") - } - - case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT: - if communityEvent.AcceptedRequestsToJoin == nil { - return errors.New("invalid community request to join accepted event") - } - - case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT: - if communityEvent.RejectedRequestsToJoin == nil { - return errors.New("invalid community request to join reject event") - } - - case protobuf.CommunityEvent_COMMUNITY_MEMBER_KICK: - if len(communityEvent.MemberToAction) == 0 { - return errors.New("invalid community member kick event") - } - - case protobuf.CommunityEvent_COMMUNITY_MEMBER_BAN: - if len(communityEvent.MemberToAction) == 0 { - return errors.New("invalid community member ban event") - } - - case protobuf.CommunityEvent_COMMUNITY_MEMBER_UNBAN: - if len(communityEvent.MemberToAction) == 0 { - return errors.New("invalid community member unban event") - } - - case protobuf.CommunityEvent_COMMUNITY_TOKEN_ADD: - if communityEvent.TokenMetadata == nil || len(communityEvent.TokenMetadata.ContractAddresses) == 0 { - return errors.New("invalid add community token event") - } - } - return nil -} - -func isCommunityEventsEqual(left CommunityEvent, right CommunityEvent) bool { - return bytes.Equal(left.Payload, right.Payload) -} - -func communityEventsToJSONEncodedBytes(communityEvents []CommunityEvent) ([]byte, error) { - return json.Marshal(communityEvents) -} - -func communityEventsFromJSONEncodedBytes(jsonEncodedRawEvents []byte) ([]CommunityEvent, error) { - var events []CommunityEvent - err := json.Unmarshal(jsonEncodedRawEvents, &events) - if err != nil { - return nil, err - } - - return events, nil -} diff --git a/protocol/communities/community_events_factory.go b/protocol/communities/community_events_factory.go new file mode 100644 index 000000000..311e21f85 --- /dev/null +++ b/protocol/communities/community_events_factory.go @@ -0,0 +1,199 @@ +package communities + +import "github.com/status-im/status-go/protocol/protobuf" + +func (o *Community) ToCreateChannelCommunityEvent(channelID string, channel *protobuf.CommunityChat) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_CREATE, + ChannelData: &protobuf.ChannelData{ + ChannelId: channelID, + Channel: channel, + }, + } +} + +func (o *Community) ToEditChannelCommunityEvent(channelID string, channel *protobuf.CommunityChat) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_EDIT, + ChannelData: &protobuf.ChannelData{ + ChannelId: channelID, + Channel: channel, + }, + } +} + +func (o *Community) ToDeleteChannelCommunityEvent(channelID string) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_DELETE, + ChannelData: &protobuf.ChannelData{ + ChannelId: channelID, + }, + } +} + +func (o *Community) ToReorderChannelCommunityEvent(categoryID string, channelID string, position int) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CHANNEL_REORDER, + ChannelData: &protobuf.ChannelData{ + CategoryId: categoryID, + ChannelId: channelID, + Position: int32(position), + }, + } +} + +func (o *Community) ToCreateCategoryCommunityEvent(categoryID string, categoryName string, channelsIds []string) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_CREATE, + CategoryData: &protobuf.CategoryData{ + Name: categoryName, + CategoryId: categoryID, + ChannelsIds: channelsIds, + }, + } +} + +func (o *Community) ToEditCategoryCommunityEvent(categoryID string, categoryName string, channelsIds []string) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_EDIT, + CategoryData: &protobuf.CategoryData{ + Name: categoryName, + CategoryId: categoryID, + ChannelsIds: channelsIds, + }, + } +} + +func (o *Community) ToDeleteCategoryCommunityEvent(categoryID string) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_DELETE, + CategoryData: &protobuf.CategoryData{ + CategoryId: categoryID, + }, + } +} + +func (o *Community) ToReorderCategoryCommunityEvent(categoryID string, position int) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_CATEGORY_REORDER, + CategoryData: &protobuf.CategoryData{ + CategoryId: categoryID, + Position: int32(position), + }, + } +} + +func (o *Community) ToBanCommunityMemberCommunityEvent(pubkey string) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_BAN, + MemberToAction: pubkey, + } +} + +func (o *Community) ToUnbanCommunityMemberCommunityEvent(pubkey string) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_UNBAN, + MemberToAction: pubkey, + } +} + +func (o *Community) ToKickCommunityMemberCommunityEvent(pubkey string) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_KICK, + MemberToAction: pubkey, + } +} + +func (o *Community) ToCommunityEditCommunityEvent(description *protobuf.CommunityDescription) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_EDIT, + CommunityConfig: &protobuf.CommunityConfig{ + Identity: description.Identity, + Permissions: description.Permissions, + AdminSettings: description.AdminSettings, + IntroMessage: description.IntroMessage, + OutroMessage: description.OutroMessage, + Tags: description.Tags, + }, + } +} + +func (o *Community) ToCommunityTokenPermissionChangeCommunityEvent(permission *protobuf.CommunityTokenPermission) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE, + TokenPermission: permission, + } +} + +func (o *Community) ToCommunityTokenPermissionDeleteCommunityEvent(permission *protobuf.CommunityTokenPermission) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE, + TokenPermission: permission, + } +} + +func (o *Community) ToCommunityRequestToJoinAcceptCommunityEvent(member string, request *protobuf.CommunityRequestToJoin) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, + MemberToAction: member, + RequestToJoin: request, + } +} + +func (o *Community) ToCommunityRequestToJoinRejectCommunityEvent(member string, request *protobuf.CommunityRequestToJoin) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT, + MemberToAction: member, + RequestToJoin: request, + } +} + +func (o *Community) ToAddTokenMetadataCommunityEvent(tokenMetadata *protobuf.CommunityTokenMetadata) *CommunityEvent { + return &CommunityEvent{ + CommunityEventClock: o.nextEventClock(), + Type: protobuf.CommunityEvent_COMMUNITY_TOKEN_ADD, + TokenMetadata: tokenMetadata, + } +} + +func (o *Community) nextEventClock() uint64 { + latestEventClock := uint64(0) + if o.config.EventsData != nil { + for _, event := range o.config.EventsData.Events { + if event.CommunityEventClock > latestEventClock { + latestEventClock = event.CommunityEventClock + } + } + } + + clock := o.config.CommunityDescription.Clock + if latestEventClock > clock { + clock = latestEventClock + } + + // lamport timestamp + timestamp := o.timesource.GetCurrentTime() + if clock == 0 || clock < timestamp { + clock = timestamp + } else { + clock = clock + 1 + } + + return clock +} diff --git a/protocol/communities/community_events_processing.go b/protocol/communities/community_events_processing.go new file mode 100644 index 000000000..c43b6bdda --- /dev/null +++ b/protocol/communities/community_events_processing.go @@ -0,0 +1,337 @@ +package communities + +import ( + "crypto/ecdsa" + "errors" + "sort" + + "github.com/golang/protobuf/proto" + "go.uber.org/zap" + + utils "github.com/status-im/status-go/common" + "github.com/status-im/status-go/protocol/common" + "github.com/status-im/status-go/protocol/protobuf" +) + +var ErrInvalidCommunityEventClock = errors.New("clock for admin event message is outdated") + +func (o *Community) processEvents(message *CommunityEventsMessage, lastlyAppliedEvents map[string]uint64) error { + processor := &eventsProcessor{ + community: o, + message: message, + logger: o.config.Logger.Named("eventsProcessor"), + lastlyAppliedEvents: lastlyAppliedEvents, + } + return processor.exec() +} + +type eventsProcessor struct { + community *Community + message *CommunityEventsMessage + logger *zap.Logger + lastlyAppliedEvents map[string]uint64 + + eventsToApply []CommunityEvent +} + +func (e *eventsProcessor) exec() error { + e.community.mutex.Lock() + defer e.community.mutex.Unlock() + + err := e.validateDescription() + if err != nil { + return err + } + + e.filterEvents() + e.mergeEvents() + e.retainNewestEventsPerEventTypeID() + e.sortEvents() + e.applyEvents() + + return nil +} + +func (e *eventsProcessor) validateDescription() error { + description, err := validateAndGetEventsMessageCommunityDescription(e.message.EventsBaseCommunityDescription, e.community.ControlNode()) + if err != nil { + return err + } + + // Control node is the only entity that can apply events from past description. + // In this case, events are compared against the clocks of the most recently applied events. + if e.community.IsControlNode() && description.Clock < e.community.config.CommunityDescription.Clock { + return nil + } + + if description.Clock != e.community.config.CommunityDescription.Clock { + return ErrInvalidCommunityEventClock + } + + return nil +} + +// Filter invalid and outdated events. +func (e *eventsProcessor) filterEvents() { + validateEvent := func(event *CommunityEvent) error { + if e.lastlyAppliedEvents != nil { + if clock, found := e.lastlyAppliedEvents[event.EventTypeID()]; found && clock >= event.CommunityEventClock { + return errors.New("event outdated") + } + } + + signer, err := event.RecoverSigner() + if err != nil { + return err + } + + err = e.community.validateEvent(event, signer) + if err != nil { + return err + } + + return nil + } + + for i := range e.message.Events { + event := e.message.Events[i] + + if err := validateEvent(&event); err == nil { + e.eventsToApply = append(e.eventsToApply, event) + } else { + e.logger.Warn("invalid community event", zap.String("EventTypeID", event.EventTypeID()), zap.Uint64("clock", event.CommunityEventClock), zap.Error(err)) + } + } +} + +// Merge message's events with community's events. +func (e *eventsProcessor) mergeEvents() { + if e.community.config.EventsData != nil { + e.eventsToApply = append(e.eventsToApply, e.community.config.EventsData.Events...) + } +} + +// Keep only the newest event per PropertyTypeID. +func (e *eventsProcessor) retainNewestEventsPerEventTypeID() { + eventsMap := make(map[string]CommunityEvent) + + for _, event := range e.eventsToApply { + if existingEvent, found := eventsMap[event.EventTypeID()]; !found || event.CommunityEventClock > existingEvent.CommunityEventClock { + eventsMap[event.EventTypeID()] = event + } + } + + e.eventsToApply = []CommunityEvent{} + for _, event := range eventsMap { + e.eventsToApply = append(e.eventsToApply, event) + } +} + +// Sorts events by clock. +func (e *eventsProcessor) sortEvents() { + sort.Slice(e.eventsToApply, func(i, j int) bool { + if e.eventsToApply[i].CommunityEventClock == e.eventsToApply[j].CommunityEventClock { + return e.eventsToApply[i].Type < e.eventsToApply[j].Type + } + return e.eventsToApply[i].CommunityEventClock < e.eventsToApply[j].CommunityEventClock + }) +} + +func (e *eventsProcessor) applyEvents() { + if e.community.config.EventsData == nil { + e.community.config.EventsData = &EventsData{ + EventsBaseCommunityDescription: e.message.EventsBaseCommunityDescription, + } + } + e.community.config.EventsData.Events = e.eventsToApply + + e.community.applyEvents() +} + +func (o *Community) applyEvents() { + if o.config.EventsData == nil { + return + } + + for _, event := range o.config.EventsData.Events { + err := o.applyEvent(event) + if err != nil { + o.config.Logger.Warn("failed to apply event", zap.String("EventTypeID", event.EventTypeID()), zap.Uint64("clock", event.CommunityEventClock), zap.Error(err)) + } + } +} + +func (o *Community) applyEvent(communityEvent CommunityEvent) error { + switch communityEvent.Type { + case protobuf.CommunityEvent_COMMUNITY_EDIT: + o.config.CommunityDescription.Identity = communityEvent.CommunityConfig.Identity + o.config.CommunityDescription.Permissions = communityEvent.CommunityConfig.Permissions + o.config.CommunityDescription.AdminSettings = communityEvent.CommunityConfig.AdminSettings + o.config.CommunityDescription.IntroMessage = communityEvent.CommunityConfig.IntroMessage + o.config.CommunityDescription.OutroMessage = communityEvent.CommunityConfig.OutroMessage + o.config.CommunityDescription.Tags = communityEvent.CommunityConfig.Tags + + case protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE: + if o.IsControlNode() { + _, err := o.upsertTokenPermission(communityEvent.TokenPermission) + if err != nil { + return err + } + } + + case protobuf.CommunityEvent_COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE: + if o.IsControlNode() { + _, err := o.deleteTokenPermission(communityEvent.TokenPermission.Id) + if err != nil { + return err + } + } + + case protobuf.CommunityEvent_COMMUNITY_CATEGORY_CREATE: + _, err := o.createCategory(communityEvent.CategoryData.CategoryId, communityEvent.CategoryData.Name, communityEvent.CategoryData.ChannelsIds) + if err != nil { + return err + } + + case protobuf.CommunityEvent_COMMUNITY_CATEGORY_DELETE: + _, err := o.deleteCategory(communityEvent.CategoryData.CategoryId) + if err != nil { + return err + } + + case protobuf.CommunityEvent_COMMUNITY_CATEGORY_EDIT: + _, err := o.editCategory(communityEvent.CategoryData.CategoryId, communityEvent.CategoryData.Name, communityEvent.CategoryData.ChannelsIds) + if err != nil { + return err + } + + case protobuf.CommunityEvent_COMMUNITY_CHANNEL_CREATE: + err := o.createChat(communityEvent.ChannelData.ChannelId, communityEvent.ChannelData.Channel) + if err != nil { + return err + } + + case protobuf.CommunityEvent_COMMUNITY_CHANNEL_DELETE: + o.deleteChat(communityEvent.ChannelData.ChannelId) + + case protobuf.CommunityEvent_COMMUNITY_CHANNEL_EDIT: + err := o.editChat(communityEvent.ChannelData.ChannelId, communityEvent.ChannelData.Channel) + if err != nil { + return err + } + + case protobuf.CommunityEvent_COMMUNITY_CHANNEL_REORDER: + _, err := o.reorderChat(communityEvent.ChannelData.CategoryId, communityEvent.ChannelData.ChannelId, int(communityEvent.ChannelData.Position)) + if err != nil { + return err + } + + case protobuf.CommunityEvent_COMMUNITY_CATEGORY_REORDER: + _, err := o.reorderCategories(communityEvent.CategoryData.CategoryId, int(communityEvent.CategoryData.Position)) + if err != nil { + return err + } + + case protobuf.CommunityEvent_COMMUNITY_MEMBER_KICK: + if o.IsControlNode() { + pk, err := common.HexToPubkey(communityEvent.MemberToAction) + if err != nil { + return err + } + o.removeMemberFromOrg(pk) + } + case protobuf.CommunityEvent_COMMUNITY_MEMBER_BAN: + if o.IsControlNode() { + pk, err := common.HexToPubkey(communityEvent.MemberToAction) + if err != nil { + return err + } + o.banUserFromCommunity(pk) + } + case protobuf.CommunityEvent_COMMUNITY_MEMBER_UNBAN: + if o.IsControlNode() { + pk, err := common.HexToPubkey(communityEvent.MemberToAction) + if err != nil { + return err + } + o.unbanUserFromCommunity(pk) + } + case protobuf.CommunityEvent_COMMUNITY_TOKEN_ADD: + o.config.CommunityDescription.CommunityTokensMetadata = append(o.config.CommunityDescription.CommunityTokensMetadata, communityEvent.TokenMetadata) + } + return nil +} + +func (o *Community) addNewCommunityEvent(event *CommunityEvent) error { + err := event.Validate() + if err != nil { + return err + } + + // All events must be built on top of the control node CommunityDescription + // 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.CommunityDescriptionProtocolMessage, o.ControlNode()) + if err != nil { + return err + } + + o.config.EventsData = &EventsData{ + EventsBaseCommunityDescription: o.config.CommunityDescriptionProtocolMessage, + Events: []CommunityEvent{}, + } + } + + event.Payload, err = proto.Marshal(event.ToProtobuf()) + if err != nil { + return err + } + + o.config.EventsData.Events = append(o.config.EventsData.Events, *event) + + return nil +} + +func (o *Community) toCommunityEventsMessage() *CommunityEventsMessage { + return &CommunityEventsMessage{ + CommunityID: o.ID(), + EventsBaseCommunityDescription: o.config.EventsData.EventsBaseCommunityDescription, + Events: o.config.EventsData.Events, + } +} + +func validateAndGetEventsMessageCommunityDescription(signedDescription []byte, signerPubkey *ecdsa.PublicKey) (*protobuf.CommunityDescription, error) { + metadata := &protobuf.ApplicationMetadataMessage{} + + err := proto.Unmarshal(signedDescription, metadata) + if err != nil { + return nil, err + } + + if metadata.Type != protobuf.ApplicationMetadataMessage_COMMUNITY_DESCRIPTION { + return nil, ErrInvalidMessage + } + + signer, err := utils.RecoverKey(metadata) + if err != nil { + return nil, err + } + + if signer == nil { + return nil, errors.New("CommunityDescription does not contain the control node signature") + } + + if !signer.Equal(signerPubkey) { + return nil, errors.New("CommunityDescription was not signed by an owner") + } + + description := &protobuf.CommunityDescription{} + + err = proto.Unmarshal(metadata.Payload, description) + if err != nil { + return nil, err + } + + return description, nil +} diff --git a/protocol/communities/community_events_processing_test.go b/protocol/communities/community_events_processing_test.go new file mode 100644 index 000000000..28f986af4 --- /dev/null +++ b/protocol/communities/community_events_processing_test.go @@ -0,0 +1,69 @@ +package communities + +import ( + "testing" + + "github.com/stretchr/testify/suite" + + "github.com/status-im/status-go/protocol/protobuf" +) + +func TestEventsProcessorSuite(t *testing.T) { + suite.Run(t, new(EventsProcessorSuite)) +} + +type EventsProcessorSuite struct { + suite.Suite +} + +func (s *EventsProcessorSuite) TestRetainNewestEventsPerPropertyTypeID() { + processor := &eventsProcessor{ + eventsToApply: []CommunityEvent{ + CommunityEvent{ + CommunityEventClock: 1, + Type: protobuf.CommunityEvent_COMMUNITY_EDIT, + }, + CommunityEvent{ + CommunityEventClock: 2, + Type: protobuf.CommunityEvent_COMMUNITY_EDIT, + }, + CommunityEvent{ + CommunityEventClock: 3, + Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, + MemberToAction: "A", + }, + CommunityEvent{ + CommunityEventClock: 4, + Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT, + MemberToAction: "A", + }, + CommunityEvent{ + CommunityEventClock: 5, + Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, + MemberToAction: "A", + }, + CommunityEvent{ + CommunityEventClock: 1, + Type: protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, + MemberToAction: "B", + }, + }, + } + + processor.retainNewestEventsPerEventTypeID() + s.Require().Len(processor.eventsToApply, 4) + + processor.sortEvents() + + s.Require().Equal(protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, processor.eventsToApply[0].Type) + s.Require().EqualValues(1, processor.eventsToApply[0].CommunityEventClock) + + s.Require().Equal(protobuf.CommunityEvent_COMMUNITY_EDIT, processor.eventsToApply[1].Type) + s.Require().EqualValues(2, processor.eventsToApply[1].CommunityEventClock) + + s.Require().Equal(protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT, processor.eventsToApply[2].Type) + s.Require().EqualValues(4, processor.eventsToApply[2].CommunityEventClock) + + s.Require().Equal(protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT, processor.eventsToApply[3].Type) + s.Require().EqualValues(5, processor.eventsToApply[3].CommunityEventClock) +} diff --git a/protocol/communities/manager.go b/protocol/communities/manager.go index 8dee0102b..8c570b008 100644 --- a/protocol/communities/manager.go +++ b/protocol/communities/manager.go @@ -346,7 +346,6 @@ type Subscription struct { DownloadingHistoryArchivesFinishedSignal *signal.DownloadingHistoryArchivesFinishedSignal ImportingHistoryArchiveMessagesSignal *signal.ImportingHistoryArchiveMessagesSignal CommunityEventsMessage *CommunityEventsMessage - CommunityEventsMessageInvalidClock *CommunityEventsMessageInvalidClockSignal AcceptedRequestsToJoin []types.HexBytes RejectedRequestsToJoin []types.HexBytes CommunityPrivilegedMemberSyncMessage *CommunityPrivilegedMemberSyncMessage @@ -360,11 +359,6 @@ type CommunityResponse struct { FailedToDecrypt []*CommunityPrivateDataFailedToDecrypt `json:"-"` } -type CommunityEventsMessageInvalidClockSignal struct { - Community *Community - CommunityEventsMessage *CommunityEventsMessage -} - func (m *Manager) Subscribe() chan *Subscription { subscription := make(chan *Subscription, 100) m.subscriptions = append(m.subscriptions, subscription) @@ -1839,19 +1833,15 @@ func (m *Manager) HandleCommunityEventsMessage(signer *ecdsa.PublicKey, message originCommunity := community.CreateDeepCopy() - eventsMessage.Events = m.validateAndFilterEvents(community, eventsMessage.Events) - - err = community.UpdateCommunityByEvents(eventsMessage) - if err != nil { - if err == ErrInvalidCommunityEventClock && community.IsControlNode() { - // send updated CommunityDescription to the event sender on top of which he must apply his changes - eventsMessage.EventsBaseCommunityDescription = community.config.CommunityDescriptionProtocolMessage - m.publish(&Subscription{ - CommunityEventsMessageInvalidClock: &CommunityEventsMessageInvalidClockSignal{ - Community: community, - CommunityEventsMessage: eventsMessage, - }}) + var lastlyAppliedEvents map[string]uint64 + if community.IsControlNode() { + lastlyAppliedEvents, err = m.persistence.GetAppliedCommunityEvents(community.ID()) + if err != nil { + return nil, err } + } + err = community.processEvents(eventsMessage, lastlyAppliedEvents) + if err != nil { return nil, err } @@ -1866,6 +1856,12 @@ func (m *Manager) HandleCommunityEventsMessage(signer *ecdsa.PublicKey, message // Control node applies events and publish updated CommunityDescription if community.IsControlNode() { + appliedEvents := map[string]uint64{} + if community.config.EventsData != nil { + for _, event := range community.config.EventsData.Events { + appliedEvents[event.EventTypeID()] = event.CommunityEventClock + } + } community.config.EventsData = nil // clear events, they are already applied community.increaseClock() @@ -1882,6 +1878,11 @@ func (m *Manager) HandleCommunityEventsMessage(signer *ecdsa.PublicKey, message return nil, err } + err = m.persistence.UpsertAppliedCommunityEvents(community.ID(), appliedEvents) + if err != nil { + return nil, err + } + m.publish(&Subscription{Community: community}) } else { err = m.persistence.SaveCommunity(community) @@ -1952,7 +1953,7 @@ func (m *Manager) HandleCommunityEventsMessageRejected(signer *ecdsa.PublicKey, EventsBaseCommunityDescription: community.config.CommunityDescriptionProtocolMessage, Events: myRejectedEvents, } - reapplyEventsMessage := community.ToCommunityEventsMessage() + reapplyEventsMessage := community.toCommunityEventsMessage() return reapplyEventsMessage, nil } @@ -1967,10 +1968,20 @@ func (m *Manager) handleAdditionalAdminChanges(community *Community) (*Community return &communityResponse, nil } - for i := range community.config.EventsData.Events { + if community.config.EventsData == nil { + return &communityResponse, nil + } + + handledMembers := map[string]struct{}{} + + for i := len(community.config.EventsData.Events) - 1; i >= 0; i-- { communityEvent := &community.config.EventsData.Events[i] + if _, handled := handledMembers[communityEvent.MemberToAction]; handled { + continue + } switch communityEvent.Type { case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT: + handledMembers[communityEvent.MemberToAction] = struct{}{} requestsToJoin, err := m.handleCommunityEventRequestAccepted(community, communityEvent) if err != nil { return nil, err @@ -1980,6 +1991,7 @@ func (m *Manager) handleAdditionalAdminChanges(community *Community) (*Community } case protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_REJECT: + handledMembers[communityEvent.MemberToAction] = struct{}{} requestsToJoin, err := m.handleCommunityEventRequestRejected(community, communityEvent) if err != nil { return nil, err @@ -2031,43 +2043,45 @@ func (m *Manager) handleCommunityEventRequestAccepted(community *Community, comm requestsToJoin := make([]*RequestToJoin, 0) - for signer, request := range communityEvent.AcceptedRequestsToJoin { - requestToJoin := &RequestToJoin{ - PublicKey: signer, - Clock: request.Clock, - ENSName: request.EnsName, - CommunityID: request.CommunityId, - State: RequestToJoinStateAcceptedPending, - } - requestToJoin.CalculateID() + signer := communityEvent.MemberToAction + request := communityEvent.RequestToJoin - existingRequestToJoin, err := m.persistence.GetRequestToJoin(requestToJoin.ID) - if err != nil && err != sql.ErrNoRows { - return nil, err - } - - if existingRequestToJoin != nil { - alreadyProcessedByControlNode := existingRequestToJoin.State == RequestToJoinStateAccepted || existingRequestToJoin.State == RequestToJoinStateDeclined - if alreadyProcessedByControlNode || existingRequestToJoin.State == RequestToJoinStateCanceled { - continue - } - } - - requestUpdated, err := m.saveOrUpdateRequestToJoin(community.ID(), requestToJoin) - if err != nil { - return nil, err - } - - // If request to join exists in control node, add request to acceptedRequestsToJoin. - // Otherwise keep the request as RequestToJoinStateAcceptedPending, - // as privileged users don't have revealed addresses. This can happen if control node received - // community event message before user request to join. - if community.IsControlNode() && requestUpdated { - acceptedRequestsToJoin = append(acceptedRequestsToJoin, requestToJoin.ID) - } - - requestsToJoin = append(requestsToJoin, requestToJoin) + requestToJoin := &RequestToJoin{ + PublicKey: signer, + Clock: request.Clock, + ENSName: request.EnsName, + CommunityID: request.CommunityId, + State: RequestToJoinStateAcceptedPending, } + requestToJoin.CalculateID() + + existingRequestToJoin, err := m.persistence.GetRequestToJoin(requestToJoin.ID) + if err != nil && err != sql.ErrNoRows { + return nil, err + } + + if existingRequestToJoin != nil { + alreadyProcessedByControlNode := existingRequestToJoin.State == RequestToJoinStateAccepted + if alreadyProcessedByControlNode || existingRequestToJoin.State == RequestToJoinStateCanceled { + return requestsToJoin, nil + } + } + + requestUpdated, err := m.saveOrUpdateRequestToJoin(community.ID(), requestToJoin) + if err != nil { + return nil, err + } + + // If request to join exists in control node, add request to acceptedRequestsToJoin. + // Otherwise keep the request as RequestToJoinStateAcceptedPending, + // as privileged users don't have revealed addresses. This can happen if control node received + // community event message before user request to join. + if community.IsControlNode() && requestUpdated { + acceptedRequestsToJoin = append(acceptedRequestsToJoin, requestToJoin.ID) + } + + requestsToJoin = append(requestsToJoin, requestToJoin) + if community.IsControlNode() { m.publish(&Subscription{AcceptedRequestsToJoin: acceptedRequestsToJoin}) } @@ -2079,42 +2093,43 @@ func (m *Manager) handleCommunityEventRequestRejected(community *Community, comm requestsToJoin := make([]*RequestToJoin, 0) - for signer, request := range communityEvent.RejectedRequestsToJoin { - requestToJoin := &RequestToJoin{ - PublicKey: signer, - Clock: request.Clock, - ENSName: request.EnsName, - CommunityID: request.CommunityId, - State: RequestToJoinStateDeclinedPending, - } - requestToJoin.CalculateID() + signer := communityEvent.MemberToAction + request := communityEvent.RequestToJoin - existingRequestToJoin, err := m.persistence.GetRequestToJoin(requestToJoin.ID) - if err != nil && err != sql.ErrNoRows { - return nil, err - } - - if existingRequestToJoin != nil { - alreadyProcessedByControlNode := existingRequestToJoin.State == RequestToJoinStateAccepted || existingRequestToJoin.State == RequestToJoinStateDeclined - if alreadyProcessedByControlNode || existingRequestToJoin.State == RequestToJoinStateCanceled { - continue - } - } - - requestUpdated, err := m.saveOrUpdateRequestToJoin(community.ID(), requestToJoin) - if err != nil { - return nil, err - } - // If request to join exists in control node, add request to rejectedRequestsToJoin. - // Otherwise keep the request as RequestToJoinStateDeclinedPending, - // as privileged users don't have revealed addresses. This can happen if control node received - // community event message before user request to join. - if community.IsControlNode() && requestUpdated { - rejectedRequestsToJoin = append(rejectedRequestsToJoin, requestToJoin.ID) - } - - requestsToJoin = append(requestsToJoin, requestToJoin) + requestToJoin := &RequestToJoin{ + PublicKey: signer, + Clock: request.Clock, + ENSName: request.EnsName, + CommunityID: request.CommunityId, + State: RequestToJoinStateDeclinedPending, } + requestToJoin.CalculateID() + + existingRequestToJoin, err := m.persistence.GetRequestToJoin(requestToJoin.ID) + if err != nil && err != sql.ErrNoRows { + return nil, err + } + + if existingRequestToJoin != nil { + alreadyProcessedByControlNode := existingRequestToJoin.State == RequestToJoinStateDeclined + if alreadyProcessedByControlNode || existingRequestToJoin.State == RequestToJoinStateCanceled { + return requestsToJoin, nil + } + } + + requestUpdated, err := m.saveOrUpdateRequestToJoin(community.ID(), requestToJoin) + if err != nil { + return nil, err + } + // If request to join exists in control node, add request to rejectedRequestsToJoin. + // Otherwise keep the request as RequestToJoinStateDeclinedPending, + // as privileged users don't have revealed addresses. This can happen if control node received + // community event message before user request to join. + if community.IsControlNode() && requestUpdated { + rejectedRequestsToJoin = append(rejectedRequestsToJoin, requestToJoin.ID) + } + + requestsToJoin = append(requestsToJoin, requestToJoin) if community.IsControlNode() { m.publish(&Subscription{RejectedRequestsToJoin: rejectedRequestsToJoin}) @@ -2325,16 +2340,7 @@ func (m *Manager) AcceptRequestToJoin(dbRequest *RequestToJoin) (*Community, err } } } else if community.hasPermissionToSendCommunityEvent(protobuf.CommunityEvent_COMMUNITY_REQUEST_TO_JOIN_ACCEPT) { - // admins do not perform permission checks, they merely mark the - // request as accepted (pending) and forward their decision to the control node - acceptedRequestsToJoin := make(map[string]*protobuf.CommunityRequestToJoin) - acceptedRequestsToJoin[dbRequest.PublicKey] = dbRequest.ToCommunityRequestToJoinProtobuf() - - adminChanges := &CommunityEventChanges{ - AcceptedRequestsToJoin: acceptedRequestsToJoin, - } - - err := community.addNewCommunityEvent(community.ToCommunityRequestToJoinAcceptCommunityEvent(adminChanges)) + err := community.addNewCommunityEvent(community.ToCommunityRequestToJoinAcceptCommunityEvent(dbRequest.PublicKey, dbRequest.ToCommunityRequestToJoinProtobuf())) if err != nil { return nil, err } @@ -3213,9 +3219,14 @@ func (m *Manager) dbRecordBundleToCommunity(r *CommunityRecordBundle) (*Communit return err } - err = community.updateCommunityDescriptionByEvents() - if err != nil { - return err + if community.config.EventsData != nil { + eventsDescription, err := validateAndGetEventsMessageCommunityDescription(community.config.EventsData.EventsBaseCommunityDescription, community.ControlNode()) + if err != nil { + m.logger.Error("invalid EventsBaseCommunityDescription", zap.Error(err)) + } + if eventsDescription.Clock == community.Clock() { + community.applyEvents() + } } if m.transport != nil && m.transport.WakuVersion() == 2 { @@ -4658,7 +4669,7 @@ func (m *Manager) saveAndPublish(community *Community) error { return err } - m.publish(&Subscription{CommunityEventsMessage: community.ToCommunityEventsMessage()}) + m.publish(&Subscription{CommunityEventsMessage: community.toCommunityEventsMessage()}) return nil } diff --git a/protocol/communities/persistence.go b/protocol/communities/persistence.go index abb9eaf7d..f15d7a54c 100644 --- a/protocol/communities/persistence.go +++ b/protocol/communities/persistence.go @@ -1806,3 +1806,66 @@ func (p *Persistence) DeleteCommunityShard(communityID types.HexBytes) error { _, err := p.db.Exec(`DELETE FROM communities_shards WHERE community_id = ?`, communityID) return err } + +func (p *Persistence) GetAppliedCommunityEvents(communityID types.HexBytes) (map[string]uint64, error) { + rows, err := p.db.Query(`SELECT event_type_id, clock FROM applied_community_events WHERE community_id = ?`, communityID.String()) + if err != nil { + return nil, err + } + defer rows.Close() + + result := map[string]uint64{} + + eventTypeID := "" + clock := uint64(0) + + for rows.Next() { + err := rows.Scan(&eventTypeID, &clock) + if err != nil { + return nil, err + } + result[eventTypeID] = clock + } + + return result, nil +} + +func (p *Persistence) UpsertAppliedCommunityEvents(communityID types.HexBytes, processedEvents map[string]uint64) error { + tx, err := p.db.BeginTx(context.Background(), &sql.TxOptions{}) + if err != nil { + return err + } + + defer func() { + if err == nil { + err = tx.Commit() + return + } + // don't shadow original error + _ = tx.Rollback() + }() + + for eventTypeID, newClock := range processedEvents { + var currentClock uint64 + err = tx.QueryRow(` + SELECT clock + FROM applied_community_events + WHERE community_id = ? AND event_type_id = ?`, + communityID.String(), eventTypeID).Scan(¤tClock) + + if err != nil && err != sql.ErrNoRows { + return err + } + + if newClock > currentClock { + _, err = tx.Exec(` + INSERT OR REPLACE INTO applied_community_events(community_id, event_type_id, clock) + VALUES (?, ?, ?)`, + communityID.String(), eventTypeID, newClock) + if err != nil { + return err + } + } + } + return err +} diff --git a/protocol/communities/persistence_test.go b/protocol/communities/persistence_test.go index b0de8b0e1..e42f6a21d 100644 --- a/protocol/communities/persistence_test.go +++ b/protocol/communities/persistence_test.go @@ -921,3 +921,26 @@ func (s *PersistenceSuite) TestGetCommunityToValidateByID() { s.Require().NoError(err) s.Require().Len(result, 0) } + +func (s *PersistenceSuite) TestProcessedCommunityEvents() { + community := types.HexBytes{1} + events, err := s.db.GetAppliedCommunityEvents(community) + s.Require().NoError(err) + s.Require().Empty(events) + + err = s.db.UpsertAppliedCommunityEvents(community, map[string]uint64{"a": 1, "b": 10}) + s.Require().NoError(err) + + events, err = s.db.GetAppliedCommunityEvents(community) + s.Require().NoError(err) + s.Require().Len(events, 2) + s.Require().True(reflect.DeepEqual(events, map[string]uint64{"a": 1, "b": 10})) + + err = s.db.UpsertAppliedCommunityEvents(community, map[string]uint64{"a": 2, "b": 8, "c": 1}) + s.Require().NoError(err) + + events, err = s.db.GetAppliedCommunityEvents(community) + s.Require().NoError(err) + s.Require().Len(events, 3) + s.Require().True(reflect.DeepEqual(events, map[string]uint64{"a": 2, "b": 10, "c": 1})) +} diff --git a/protocol/communities_events_eventual_consistency_test.go b/protocol/communities_events_eventual_consistency_test.go index 88243541c..cd2597b0f 100644 --- a/protocol/communities_events_eventual_consistency_test.go +++ b/protocol/communities_events_eventual_consistency_test.go @@ -18,7 +18,7 @@ func TestCommunityEventsEventualConsistencySuite(t *testing.T) { } type CommunityEventsEventualConsistencySuite struct { - AdminCommunityEventsSuite + AdminCommunityEventsSuiteBase messagesOrderController *MessagesOrderController } @@ -52,7 +52,7 @@ func (s *CommunityEventsEventualConsistencySuite) SetupTest() { } func (s *CommunityEventsEventualConsistencySuite) TearDownTest() { - s.AdminCommunityEventsSuite.TearDownTest() + s.AdminCommunityEventsSuiteBase.TearDownTest() s.messagesOrderController.Stop() } @@ -69,11 +69,16 @@ func (s *CommunityEventsEventualConsistencySuite) newMessenger(password string, }) } -// TODO: remove once eventual consistency is implemented -var communityRequestsEventualConsistencyFixed = false +type requestToJoinActionType int -func (s *CommunityEventsEventualConsistencySuite) TestAdminAcceptRejectRequestToJoin() { +const ( + requestToJoinAccept requestToJoinActionType = iota + requestToJoinReject +) + +func (s *CommunityEventsEventualConsistencySuite) testRequestsToJoin(actions []requestToJoinActionType, messagesOrder messagesOrderType) { community := setUpOnRequestCommunityAndRoles(s, protobuf.CommunityMember_ROLE_ADMIN, []*Messenger{}) + s.Require().True(community.IsControlNode()) // set up additional user that will send request to join user := s.newMessenger("", []string{}) @@ -108,17 +113,21 @@ func (s *CommunityEventsEventualConsistencySuite) TestAdminAcceptRejectRequestTo s.Require().NoError(err) s.Require().Len(response.RequestsToJoinCommunity(), 1) - // accept request to join - acceptRequestToJoin := &requests.AcceptRequestToJoinCommunity{ID: sentRequest.ID} - _, err = s.admin.AcceptRequestToJoinCommunity(acceptRequestToJoin) - s.Require().NoError(err) + for _, action := range actions { + switch action { + case requestToJoinAccept: + acceptRequestToJoin := &requests.AcceptRequestToJoinCommunity{ID: sentRequest.ID} + _, err = s.admin.AcceptRequestToJoinCommunity(acceptRequestToJoin) + s.Require().NoError(err) - // then reject request to join - rejectRequestToJoin := &requests.DeclineRequestToJoinCommunity{ID: sentRequest.ID} - _, err = s.admin.DeclineRequestToJoinCommunity(rejectRequestToJoin) - s.Require().NoError(err) + case requestToJoinReject: + rejectRequestToJoin := &requests.DeclineRequestToJoinCommunity{ID: sentRequest.ID} + _, err = s.admin.DeclineRequestToJoinCommunity(rejectRequestToJoin) + s.Require().NoError(err) + } + } - // ensure both messages are pushed to waku + // ensure all messages are pushed to waku /* FIXME: we should do it smarter, as follows: ``` @@ -131,48 +140,48 @@ func (s *CommunityEventsEventualConsistencySuite) TestAdminAcceptRejectRequestTo time.Sleep(1 * time.Second) // ensure events are received in order - s.messagesOrderController.order = messagesOrderAsPosted + s.messagesOrderController.order = messagesOrder - waitForAcceptedRequestToJoin := waitOnCommunitiesEvent(s.owner, func(sub *communities.Subscription) bool { - return len(sub.AcceptedRequestsToJoin) == 1 - }) - - waitOnAdminEventsRejection := waitOnCommunitiesEvent(s.owner, func(s *communities.Subscription) bool { - return s.CommunityEventsMessageInvalidClock != nil - }) - - _, err = s.owner.RetrieveAll() + response, err = s.owner.RetrieveAll() s.Require().NoError(err) - // first owner handles AcceptRequestToJoinCommunity event - err = <-waitForAcceptedRequestToJoin - s.Require().NoError(err) - - // then owner rejects DeclineRequestToJoinCommunity event due to invalid clock - err = <-waitOnAdminEventsRejection - s.Require().NoError(err) - - if communityRequestsEventualConsistencyFixed { - // admin receives rejected DeclineRequestToJoinCommunity event and re-applies it, - // there is no signal whatsoever, we just wait for admin to process all incoming messages - _, _ = WaitOnMessengerResponse(s.admin, func(response *MessengerResponse) bool { + lastAction := actions[len(actions)-1] + responseChecker := func(mr *MessengerResponse) bool { + if len(mr.RequestsToJoinCommunity()) == 0 || len(mr.Communities()) == 0 { return false - }, "") + } + switch lastAction { + case requestToJoinAccept: + return mr.RequestsToJoinCommunity()[0].State == communities.RequestToJoinStateAccepted && + mr.Communities()[0].HasMember(&user.identity.PublicKey) + case requestToJoinReject: + return mr.RequestsToJoinCommunity()[0].State == communities.RequestToJoinStateDeclined && + !mr.Communities()[0].HasMember(&user.identity.PublicKey) + } + return false + } - waitForRejectedRequestToJoin := waitOnCommunitiesEvent(s.owner, func(sub *communities.Subscription) bool { - return len(sub.RejectedRequestsToJoin) == 1 - }) - - _, err = s.owner.RetrieveAll() + switch messagesOrder { + case messagesOrderAsPosted: + _, err = WaitOnSignaledMessengerResponse(s.owner, responseChecker, "lack of eventual consistency") s.Require().NoError(err) - - // owner handles DeclineRequestToJoinCommunity event eventually - err = <-waitForRejectedRequestToJoin - s.Require().NoError(err) - - // user should be removed from community - community, err = s.owner.GetCommunityByID(community.ID()) - s.Require().NoError(err) - s.Require().False(community.HasMember(&user.identity.PublicKey)) + case messagesOrderReversed: + s.Require().True(responseChecker(response)) } } + +func (s *CommunityEventsEventualConsistencySuite) TestAdminAcceptRejectRequestToJoin_InOrder() { + s.testRequestsToJoin([]requestToJoinActionType{requestToJoinAccept, requestToJoinReject}, messagesOrderAsPosted) +} + +func (s *CommunityEventsEventualConsistencySuite) TestAdminAcceptRejectRequestToJoin_OutOfOrder() { + s.testRequestsToJoin([]requestToJoinActionType{requestToJoinAccept, requestToJoinReject}, messagesOrderReversed) +} + +func (s *CommunityEventsEventualConsistencySuite) TestAdminRejectAcceptRequestToJoin_InOrder() { + s.testRequestsToJoin([]requestToJoinActionType{requestToJoinReject, requestToJoinAccept}, messagesOrderAsPosted) +} + +func (s *CommunityEventsEventualConsistencySuite) TestAdminRejectAcceptRequestToJoin_OutOfOrder() { + s.testRequestsToJoin([]requestToJoinActionType{requestToJoinReject, requestToJoinAccept}, messagesOrderReversed) +} diff --git a/protocol/communities_messenger_admin_test.go b/protocol/communities_messenger_admin_test.go index 816984964..055b914a4 100644 --- a/protocol/communities_messenger_admin_test.go +++ b/protocol/communities_messenger_admin_test.go @@ -13,10 +13,8 @@ import ( gethbridge "github.com/status-im/status-go/eth-node/bridge/geth" "github.com/status-im/status-go/eth-node/types" "github.com/status-im/status-go/protocol/common" - "github.com/status-im/status-go/protocol/communities" "github.com/status-im/status-go/protocol/communities/token" "github.com/status-im/status-go/protocol/protobuf" - "github.com/status-im/status-go/protocol/requests" "github.com/status-im/status-go/protocol/tt" "github.com/status-im/status-go/services/wallet/bigint" "github.com/status-im/status-go/waku" @@ -26,7 +24,7 @@ func TestAdminCommunityEventsSuite(t *testing.T) { suite.Run(t, new(AdminCommunityEventsSuite)) } -type AdminCommunityEventsSuite struct { +type AdminCommunityEventsSuiteBase struct { suite.Suite owner *Messenger admin *Messenger @@ -41,27 +39,31 @@ type AdminCommunityEventsSuite struct { additionalEventSenders []*Messenger } -func (s *AdminCommunityEventsSuite) GetControlNode() *Messenger { +type AdminCommunityEventsSuite struct { + AdminCommunityEventsSuiteBase +} + +func (s *AdminCommunityEventsSuiteBase) GetControlNode() *Messenger { return s.owner } -func (s *AdminCommunityEventsSuite) GetEventSender() *Messenger { +func (s *AdminCommunityEventsSuiteBase) GetEventSender() *Messenger { return s.admin } -func (s *AdminCommunityEventsSuite) GetMember() *Messenger { +func (s *AdminCommunityEventsSuiteBase) GetMember() *Messenger { return s.alice } -func (s *AdminCommunityEventsSuite) GetSuite() *suite.Suite { +func (s *AdminCommunityEventsSuiteBase) GetSuite() *suite.Suite { return &s.Suite } -func (s *AdminCommunityEventsSuite) GetCollectiblesServiceMock() *CollectiblesServiceMock { +func (s *AdminCommunityEventsSuiteBase) GetCollectiblesServiceMock() *CollectiblesServiceMock { return s.collectiblesServiceMock } -func (s *AdminCommunityEventsSuite) SetupTest() { +func (s *AdminCommunityEventsSuiteBase) SetupTest() { s.logger = tt.MustCreateTestLogger() s.collectiblesServiceMock = &CollectiblesServiceMock{} @@ -84,7 +86,7 @@ func (s *AdminCommunityEventsSuite) SetupTest() { s.mockedBalances = createMockedWalletBalance(&s.Suite) } -func (s *AdminCommunityEventsSuite) TearDownTest() { +func (s *AdminCommunityEventsSuiteBase) TearDownTest() { TearDownMessenger(&s.Suite, s.owner) TearDownMessenger(&s.Suite, s.admin) TearDownMessenger(&s.Suite, s.alice) @@ -97,7 +99,7 @@ func (s *AdminCommunityEventsSuite) TearDownTest() { _ = s.logger.Sync() } -func (s *AdminCommunityEventsSuite) SetupAdditionalMessengers(messengers []*Messenger) { +func (s *AdminCommunityEventsSuiteBase) SetupAdditionalMessengers(messengers []*Messenger) { for _, m := range messengers { s.additionalEventSenders = append(s.additionalEventSenders, m) _, err := m.Start() @@ -105,7 +107,7 @@ func (s *AdminCommunityEventsSuite) SetupAdditionalMessengers(messengers []*Mess } } -func (s *AdminCommunityEventsSuite) newMessenger(password string, walletAddresses []string) *Messenger { +func (s *AdminCommunityEventsSuiteBase) newMessenger(password string, walletAddresses []string) *Messenger { return newTestCommunitiesMessenger(&s.Suite, s.shh, testCommunitiesMessengerConfig{ testMessengerConfig: testMessengerConfig{ logger: s.logger, @@ -416,65 +418,6 @@ func (s *AdminCommunityEventsSuite) TestReceiveRequestsToJoinWithRevealedAccount testMemberReceiveRequestsToJoinAfterGettingNewRole(s, bob, protobuf.CommunityTokenPermission_BECOME_ADMIN) } -func (s *AdminCommunityEventsSuite) TestAdminDoesNotHaveRejectedEventsLoop() { - community := setUpCommunityAndRoles(s, protobuf.CommunityMember_ROLE_ADMIN) - - // admin modifies community description - adminEditRequest := &requests.EditCommunity{ - CommunityID: community.ID(), - CreateCommunity: requests.CreateCommunity{ - Name: "admin name", - Description: "admin description", - Color: "#FFFFFF", - Membership: protobuf.CommunityPermissions_MANUAL_ACCEPT, - }, - } - _, err := s.admin.EditCommunity(adminEditRequest) - s.Require().NoError(err) - - community, err = s.owner.communitiesManager.GetByID(community.ID()) - s.Require().NoError(err) - - // Update community clock without publishing new CommunityDescription - _, err = community.DeclineRequestToJoin(nil) - s.Require().NoError(err) - - err = s.owner.communitiesManager.SaveCommunity(community) - s.Require().NoError(err) - - waitOnAdminEventsRejection := waitOnCommunitiesEvent(s.owner, func(s *communities.Subscription) bool { - return s.CommunityEventsMessageInvalidClock != nil - }) - - // control node receives admin event and rejects it - _, err = WaitOnMessengerResponse(s.owner, func(response *MessengerResponse) bool { - select { - case err := <-waitOnAdminEventsRejection: - s.Require().NoError(err) - return true - default: - return false - } - }, "") - s.Require().NoError(err) - - community, err = s.owner.communitiesManager.GetByID(community.ID()) - s.Require().NoError(err) - s.Require().NotEqual(adminEditRequest.Description, community.DescriptionText()) - - // admin receives rejected events and re-applies them - // there is no signal whatsoever, we just wait for admin to process all incoming messages - _, _ = WaitOnMessengerResponse(s.admin, func(response *MessengerResponse) bool { - return false - }, "") - - // control node does not receives admin event - _, err = WaitOnMessengerResponse(s.owner, func(response *MessengerResponse) bool { - return len(response.Communities()) > 0 - }, "no communities in response") - s.Require().Error(err) -} - func (s *AdminCommunityEventsSuite) TestAdminAcceptsRequestToJoinAfterMemberLeave() { community := setUpOnRequestCommunityAndRoles(s, protobuf.CommunityMember_ROLE_ADMIN, []*Messenger{}) diff --git a/protocol/messenger_communities.go b/protocol/messenger_communities.go index 34e0e7ce4..699b76f6d 100644 --- a/protocol/messenger_communities.go +++ b/protocol/messenger_communities.go @@ -156,36 +156,6 @@ func (m *Messenger) publishCommunityEvents(community *communities.Community, msg return err } -func (m *Messenger) publishCommunityEventsRejected(community *communities.Community, msg *communities.CommunityEventsMessage) error { - if !community.IsControlNode() { - return communities.ErrNotControlNode - } - m.logger.Debug("publishing community events rejected", zap.Any("event", msg)) - - communityEventsMessage := msg.ToProtobuf() - communityEventsMessageRejected := &protobuf.CommunityEventsMessageRejected{ - Msg: communityEventsMessage, - } - - payload, err := proto.Marshal(communityEventsMessageRejected) - if err != nil { - return err - } - - rawMessage := common.RawMessage{ - Payload: payload, - Sender: community.PrivateKey(), - // we don't want to wrap in an encryption layer message - SkipEncryptionLayer: true, - MessageType: protobuf.ApplicationMetadataMessage_COMMUNITY_EVENTS_MESSAGE_REJECTED, - PubsubTopic: community.PubsubTopic(), // TODO: confirm if it should be sent in community pubsub topic - } - - // TODO: resend in case of failure? - _, err = m.sender.SendPublic(context.Background(), types.EncodeHex(msg.CommunityID), rawMessage) - return err -} - func (m *Messenger) publishCommunityPrivilegedMemberSyncMessage(msg *communities.CommunityPrivilegedMemberSyncMessage) error { m.logger.Debug("publishing privileged user sync message", zap.Any("event", msg)) @@ -409,14 +379,6 @@ func (m *Messenger) handleCommunitiesSubscription(c chan *communities.Subscripti } } - if sub.CommunityEventsMessageInvalidClock != nil { - err := m.publishCommunityEventsRejected(sub.CommunityEventsMessageInvalidClock.Community, - sub.CommunityEventsMessageInvalidClock.CommunityEventsMessage) - if err != nil { - m.logger.Warn("failed to publish community events rejected", zap.Error(err)) - } - } - if sub.AcceptedRequestsToJoin != nil { for _, requestID := range sub.AcceptedRequestsToJoin { accept := &requests.AcceptRequestToJoinCommunity{ diff --git a/protocol/messenger_testing_utils.go b/protocol/messenger_testing_utils.go index ddeed71ca..7c04b86eb 100644 --- a/protocol/messenger_testing_utils.go +++ b/protocol/messenger_testing_utils.go @@ -81,7 +81,7 @@ func WaitOnSignaledMessengerResponse(m *Messenger, condition func(*MessengerResp return nil, errors.New("messengerSignalsHandler already provided/mocked") } - responseChan := make(chan *MessengerResponse, 1) + responseChan := make(chan *MessengerResponse, 64) m.config.messengerSignalsHandler = &MessengerSignalsHandlerMock{ responseChan: responseChan, } @@ -101,10 +101,9 @@ func WaitOnSignaledMessengerResponse(m *Messenger, condition func(*MessengerResp if condition(r) { return r, nil } - return nil, errors.New(errorMessage) case <-timeoutChan: - return nil, errors.New("timed out: " + errorMessage) + return nil, errors.New(errorMessage) default: // No immediate response, rest & loop back to retrieve again time.Sleep(interval) diff --git a/protocol/migrations/migrations.go b/protocol/migrations/migrations.go index 259afd641..116f63090 100644 --- a/protocol/migrations/migrations.go +++ b/protocol/migrations/migrations.go @@ -1,131 +1,132 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// 000001_init.down.db.sql (68B) -// 000001_init.up.db.sql (2.81kB) -// 000002_add_last_ens_clock_value.up.sql (78B) -// 1586358095_add_replace.up.sql (227B) -// 1588665364_add_image_data.up.sql (189B) -// 1589365189_add_pow_target.up.sql (67B) -// 1591277220_add_index_messages.up.sql (243B) -// 1593087212_add_mute_chat_and_raw_message_fields.up.sql (218B) -// 1595862781_add_audio_data.up.sql (250B) +// 000001_init.down.db.sql (65B) +// 000001_init.up.db.sql (2.719kB) +// 000002_add_last_ens_clock_value.up.sql (77B) +// 1586358095_add_replace.up.sql (224B) +// 1588665364_add_image_data.up.sql (186B) +// 1589365189_add_pow_target.up.sql (66B) +// 1591277220_add_index_messages.up.sql (240B) +// 1593087212_add_mute_chat_and_raw_message_fields.up.sql (215B) +// 1595862781_add_audio_data.up.sql (246B) // 1595865249_create_emoji_reactions_table.up.sql (300B) // 1596805115_create_group_chat_invitations_table.up.sql (231B) // 1597322655_add_invitation_admin_chat_field.up.sql (54B) // 1597757544_add_nickname.up.sql (52B) -// 1598955122_add_mentions.up.sql (53B) -// 1599641390_add_emoji_reactions_index.up.sql (127B) -// 1599720851_add_seen_index_remove_long_messages.up.sql (152B) +// 1598955122_add_mentions.up.sql (52B) +// 1599641390_add_emoji_reactions_index.up.sql (126B) +// 1599720851_add_seen_index_remove_long_messages.up.sql (150B) // 1603198582_add_profile_chat_field.up.sql (45B) // 1603816533_add_links.up.sql (48B) // 1603888149_create_chat_identity_last_published_table.up.sql (407B) // 1605075346_add_communities.up.sql (6.971kB) // 1610117927_add_message_cache.up.sql (142B) -// 1610959908_add_dont_wrap_to_raw_messages.up.sql (84B) -// 1610960912_add_send_on_personal_topic.up.sql (83B) -// 1612870480_add_datasync_id.up.sql (112B) -// 1614152139_add_communities_request_to_join.up.sql (855B) -// 1615374373_add_confirmations.up.sql (234B) -// 1617694931_add_notification_center.up.sql (588B) -// 1618923660_create_pin_messages.up.sql (274B) -// 1619094007_add_joined_chat_field.up.sql (104B) -// 1619099821_add_last_synced_field.up.sql (230B) -// 1621933219_add_mentioned.up.sql (71B) -// 1622010048_add_unviewed_mentions_count.up.sql (116B) -// 1622061278_add_message_activity_center_notification_field.up.sql (81B) -// 1622464518_set_synced_to_from.up.sql (106B) -// 1622464519_add_chat_description.up.sql (95B) -// 1622622253_add_pinned_by_to_pin_messages.up.sql (53B) -// 1623938329_add_author_activity_center_notification_field.up.sql (67B) -// 1623938330_add_edit_messages.up.sql (382B) -// 1624978434_add_muted_community.up.sql (83B) -// 1625018910_add_repply_message_activity_center_notification_field.up.sql (87B) -// 1625762506_add_deleted_messages.up.sql (369B) -// 1627388946_add_communities_synced_at.up.sql (88B) -// 1628280060_create-usermessages-index.sql (81B) -// 1632303896_modify_contacts_table.up.sql (1.609kB) -// 1633349838_add_emoji_column_in_chats.up.sql (53B) -// 1634831235_add_highlight_column_in_chats.up.sql (63B) -// 1634896007_add_last_updated_locally_and_removed.up.sql (133B) -// 1635840039_add_clock_read_at_column_in_chats.up.sql (248B) -// 1637852321_add_received_invitation_admin_column_in_chats.up.sql (73B) -// 1645034601_display_name.up.sql (112B) -// 1645034602_add_mutual_contact_request.up.sql (467B) -// 1650373957_add_contact_request_state.up.sql (60B) -// 1656958989_contact_verification.up.sql (644B) -// 1658236268_add_discord_message_authors_table.up.sql (199B) -// 1659619997_add_discord_messages_table.up.sql (384B) -// 1660226788_create_chat_identity_social_links.up.sql (328B) -// 1660226789_add_walletconnectsessions_table.up.sql (222B) -// 1661242854_add_communities_requests_to_leave.up.sql (211B) -// 1662044232_add_chat_image.up.sql (50B) -// 1662106895_add_chat_first_message_timestamp.up.sql (114B) -// 1662723928_add_discord_author_image_fields.up.sql (77B) -// 1664195977_add_deleted_for_mes.up.sql (363B) -// 1664367420_add_discord_attachments_table.up.sql (362B) -// 1665079662_add_spectated_column_in_communities.up.sql (87B) -// 1665479047_add_community_id_in_notifications.up.sql (170B) -// 1665484435_add_encrypted_messages.up.sql (417B) -// 1665560200_add_contact_verification_individual.up.sql (524B) -// 1670921937_add_album_id.up.sql (56B) +// 1610959908_add_dont_wrap_to_raw_messages.up.sql (83B) +// 1610960912_add_send_on_personal_topic.up.sql (82B) +// 1612870480_add_datasync_id.up.sql (111B) +// 1614152139_add_communities_request_to_join.up.sql (831B) +// 1615374373_add_confirmations.up.sql (227B) +// 1617694931_add_notification_center.up.sql (572B) +// 1618923660_create_pin_messages.up.sql (265B) +// 1619094007_add_joined_chat_field.up.sql (101B) +// 1619099821_add_last_synced_field.up.sql (226B) +// 1621933219_add_mentioned.up.sql (70B) +// 1622010048_add_unviewed_mentions_count.up.sql (114B) +// 1622061278_add_message_activity_center_notification_field.up.sql (80B) +// 1622464518_set_synced_to_from.up.sql (105B) +// 1622464519_add_chat_description.up.sql (93B) +// 1622622253_add_pinned_by_to_pin_messages.up.sql (52B) +// 1623938329_add_author_activity_center_notification_field.up.sql (66B) +// 1623938330_add_edit_messages.up.sql (369B) +// 1624978434_add_muted_community.up.sql (82B) +// 1625018910_add_repply_message_activity_center_notification_field.up.sql (86B) +// 1625762506_add_deleted_messages.up.sql (357B) +// 1627388946_add_communities_synced_at.up.sql (87B) +// 1628280060_create-usermessages-index.sql (80B) +// 1632303896_modify_contacts_table.up.sql (1.574kB) +// 1633349838_add_emoji_column_in_chats.up.sql (52B) +// 1634831235_add_highlight_column_in_chats.up.sql (62B) +// 1634896007_add_last_updated_locally_and_removed.up.sql (131B) +// 1635840039_add_clock_read_at_column_in_chats.up.sql (245B) +// 1637852321_add_received_invitation_admin_column_in_chats.up.sql (72B) +// 1645034601_display_name.up.sql (110B) +// 1645034602_add_mutual_contact_request.up.sql (454B) +// 1650373957_add_contact_request_state.up.sql (59B) +// 1656958989_contact_verification.up.sql (624B) +// 1658236268_add_discord_message_authors_table.up.sql (191B) +// 1659619997_add_discord_messages_table.up.sql (371B) +// 1660226788_create_chat_identity_social_links.up.sql (318B) +// 1660226789_add_walletconnectsessions_table.up.sql (215B) +// 1661242854_add_communities_requests_to_leave.up.sql (204B) +// 1662044232_add_chat_image.up.sql (49B) +// 1662106895_add_chat_first_message_timestamp.up.sql (113B) +// 1662723928_add_discord_author_image_fields.up.sql (75B) +// 1664195977_add_deleted_for_mes.up.sql (352B) +// 1664367420_add_discord_attachments_table.up.sql (350B) +// 1665079662_add_spectated_column_in_communities.up.sql (86B) +// 1665479047_add_community_id_in_notifications.up.sql (169B) +// 1665484435_add_encrypted_messages.up.sql (402B) +// 1665560200_add_contact_verification_individual.up.sql (509B) +// 1670921937_add_album_id.up.sql (55B) // 1673373000_add_replied.up.sql (67B) -// 1673428910_add_image_width_height.up.sql (119B) -// 1674210659_add_contact_request_local_clock.up.sql (710B) -// 1675212323_add_deleted_by.up.sql (58B) -// 1675247084_add_activity_center_states.up.sql (141B) -// 1675272329_fix_protocol_migration.up.sql (192B) -// 1676998418_fix_activity_center_migration.up.sql (184B) -// 1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql (389B) -// 1677486338_add_community_tokens_table.up.sql (543B) -// 1678292329_add_collapsed_categories.up.sql (175B) -// 1678800760_add_index_to_raw_messages.up.sql (89B) -// 1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql (173B) -// 1679326850_add_community_token_owners.up.sql (213B) -// 1680011500_add_album_images_count.up.sql (72B) +// 1673428910_add_image_width_height.up.sql (117B) +// 1674210659_add_contact_request_local_clock.up.sql (691B) +// 1675212323_add_deleted_by.up.sql (57B) +// 1675247084_add_activity_center_states.up.sql (136B) +// 1675272329_fix_protocol_migration.up.sql (183B) +// 1676998418_fix_activity_center_migration.up.sql (178B) +// 1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql (381B) +// 1677486338_add_community_tokens_table.up.sql (527B) +// 1678292329_add_collapsed_categories.up.sql (170B) +// 1678800760_add_index_to_raw_messages.up.sql (88B) +// 1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql (168B) +// 1679326850_add_community_token_owners.up.sql (206B) +// 1680011500_add_album_images_count.up.sql (71B) // 1680114896_add_index_on_album_id.up.sql (83B) -// 1681655289_add_mute_till.up.sql (52B) -// 1681934966_add_index_response_to.up.sql (71B) -// 1682528339_add_index_user_messages_unseen.up.sql (107B) -// 1683707289_recreate_deleted_for_mes.up.sql (419B) -// 1683725607_mark_discord_messages_as_seen.up.sql (113B) -// 1684174617_add_url_previews_to_user_messages.up.sql (59B) -// 1684175608_add_token_balances.up.sql (480B) -// 1684979808_sync_activity_center_notifications.up.sql (171B) -// 1685383829_add_communities_mute_till.up.sql (70B) -// 1685964183_add_chainids_to_revealed_addresses.up.sql (90B) -// 1687370421_add_communities_muted_till_new.up.sql (652B) -// 1687416607_add_communities_check_channel_permission_responses_table.up.sql (757B) -// 1687856939_add_community_tokens_decimals.up.sql (66B) -// 1687959987_modify_community_tokens_supply_as_string.up.sql (78B) -// 1689258900_add_airdrop_address_to_revealed_addresses.up.sql (100B) -// 1689266326_create_communities_events_table.up.sql (168B) -// 1689931300_add_community_tokens_deployer_and_priv_level.up.sql (158B) -// 1693311881_add_unfurled_links_to_message_edits.up.sql (65B) -// 1693311981_community_shard.up.sql (158B) -// 1695331492_add_status_link_previews.up.sql (138B) -// 1695918296_add_validated_at.up.sql (388B) -// 1697699419_community_control_node_sync.up.sql (453B) -// 1698137561_add_profile_showcase_tables.up.sql (453B) -// 1698137562_fix_encryption_key_id.up.sql (784B) -// 1698414646_add_padding.up.sql (70B) -// 1698746210_add_signature_to_revealed_addresses.up.sql (88B) -// 1699041816_profile_showcase_contacts.up.sql (2.272kB) -// 1699554099_message_segments.up.sql (440B) -// 1700044186_message_segments_timestamp.up.sql (330B) -// 1700044187_curated_communities.up.sql (135B) -// 1700820989_add_resend_automatically_index.up.sql (78B) -// 1702996953_add_communities_shards_table.up.sql (213B) +// 1681655289_add_mute_till.up.sql (51B) +// 1681934966_add_index_response_to.up.sql (70B) +// 1682528339_add_index_user_messages_unseen.up.sql (104B) +// 1683707289_recreate_deleted_for_mes.up.sql (408B) +// 1683725607_mark_discord_messages_as_seen.up.sql (108B) +// 1684174617_add_url_previews_to_user_messages.up.sql (58B) +// 1684175608_add_token_balances.up.sql (467B) +// 1684979808_sync_activity_center_notifications.up.sql (169B) +// 1685383829_add_communities_mute_till.up.sql (69B) +// 1685964183_add_chainids_to_revealed_addresses.up.sql (88B) +// 1687370421_add_communities_muted_till_new.up.sql (635B) +// 1687416607_add_communities_check_channel_permission_responses_table.up.sql (739B) +// 1687856939_add_community_tokens_decimals.up.sql (65B) +// 1687959987_modify_community_tokens_supply_as_string.up.sql (77B) +// 1689258900_add_airdrop_address_to_revealed_addresses.up.sql (99B) +// 1689266326_create_communities_events_table.up.sql (164B) +// 1689931300_add_community_tokens_deployer_and_priv_level.up.sql (156B) +// 1693311881_add_unfurled_links_to_message_edits.up.sql (64B) +// 1693311981_community_shard.up.sql (156B) +// 1695331492_add_status_link_previews.up.sql (136B) +// 1695918296_add_validated_at.up.sql (377B) +// 1697699419_community_control_node_sync.up.sql (435B) +// 1698137561_add_profile_showcase_tables.up.sql (440B) +// 1698137562_fix_encryption_key_id.up.sql (758B) +// 1698414646_add_padding.up.sql (69B) +// 1698746210_add_signature_to_revealed_addresses.up.sql (87B) +// 1699041816_profile_showcase_contacts.up.sql (2.206kB) +// 1699554099_message_segments.up.sql (426B) +// 1700044186_message_segments_timestamp.up.sql (322B) +// 1700044187_curated_communities.up.sql (131B) +// 1700820989_add_resend_automatically_index.up.sql (77B) +// 1702996953_add_communities_shards_table.up.sql (208B) // 1704489636_add_album_images.up.sql (66B) -// 1704821941_add_joined_at_for_community.up.sql (85B) -// 1704832511_add_last_opened_at_for_communities.up.sql (90B) -// 1704832512_add_peersyncing.up.sql (285B) -// 1706028033_profile_showcase_address_and_community.up.sql (2.479kB) -// 1706520870_add_bridge_messages_table.up.sql (402B) -// 1707749393_add_community_grants.up.sql (152B) -// 1707841194_add_profile_showcase_preferences.up.sql (136B) +// 1704821941_add_joined_at_for_community.up.sql (84B) +// 1704832511_add_last_opened_at_for_communities.up.sql (89B) +// 1704832512_add_peersyncing.up.sql (276B) +// 1706028033_profile_showcase_address_and_community.up.sql (2.42kB) +// 1706520870_add_bridge_messages_table.up.sql (389B) +// 1707749393_add_community_grants.up.sql (147B) +// 1707841194_add_profile_showcase_preferences.up.sql (132B) // 1708062699_activity_data.up.sql (82B) -// README.md (567B) -// doc.go (867B) +// 1708423707_applied_community_events.up.sql (201B) +// README.md (554B) +// doc.go (850B) package migrations @@ -135,7 +136,6 @@ import ( "crypto/sha256" "fmt" "io" - "io/ioutil" "os" "path/filepath" "strings" @@ -145,7 +145,7 @@ import ( func bindataRead(data []byte, name string) ([]byte, error) { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { - return nil, fmt.Errorf("read %q: %v", name, err) + return nil, fmt.Errorf("read %q: %w", name, err) } var buf bytes.Buffer @@ -153,7 +153,7 @@ func bindataRead(data []byte, name string) ([]byte, error) { clErr := gz.Close() if err != nil { - return nil, fmt.Errorf("read %q: %v", name, err) + return nil, fmt.Errorf("read %q: %w", name, err) } if clErr != nil { return nil, err @@ -194,7 +194,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var __000001_initDownDbSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x09\xf2\x0f\x50\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\xb6\xe6\xe5\x42\x12\x2a\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x45\x93\x4a\xce\xcf\x2b\x49\x4c\x06\x6b\x00\x04\x00\x00\xff\xff\x0c\xdb\x79\x40\x44\x00\x00\x00") +var __000001_initDownDbSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x09\xf2\x0f\x50\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\xb6\xe6\x42\x12\x29\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x45\x95\x49\xce\xcf\x2b\x49\x4c\x06\x29\x07\x04\x00\x00\xff\xff\x61\x86\xbd\x5f\x41\x00\x00\x00") func _000001_initDownDbSqlBytes() ([]byte, error) { return bindataRead( @@ -209,12 +209,12 @@ func _000001_initDownDbSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "000001_init.down.db.sql", size: 68, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x7f, 0xdc, 0x1a, 0x50, 0xec, 0x58, 0x84, 0x18, 0x29, 0x36, 0x6d, 0xa0, 0xdb, 0x95, 0xbb, 0xe5, 0x3, 0x35, 0xc2, 0xc6, 0xed, 0xce, 0xfd, 0xf7, 0x4e, 0x3b, 0x96, 0x47, 0xc7, 0x24, 0x11}} + info := bindataFileInfo{name: "000001_init.down.db.sql", size: 65, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xbb, 0x3f, 0x1, 0x75, 0x19, 0x70, 0x86, 0xa7, 0x34, 0x40, 0x17, 0x34, 0x3e, 0x18, 0x51, 0x79, 0xd4, 0x22, 0xad, 0x8f, 0x80, 0xcc, 0xa6, 0xcc, 0x6, 0x2b, 0x62, 0x2, 0x47, 0xba, 0xf9}} return a, nil } -var __000001_initUpDbSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x51\x6f\xe3\x36\x0c\x7e\x2f\xd0\xff\x40\x60\x0f\xed\x01\xe9\x70\x03\x6e\xb7\x01\x7b\x4a\x73\xee\x16\x2c\x4b\x0e\x39\x77\xe8\x3d\x09\x8c\xc4\xc4\x42\x64\xc9\x90\xe8\xe4\x02\xdc\x8f\x1f\xac\xc4\x89\xed\x38\x69\x0f\xeb\x43\x11\x90\x22\x29\x7d\xe4\xf7\xd1\xa3\x79\x32\x4c\x13\x48\x87\x8f\x93\x04\xc6\x4f\x30\x9d\xa5\x90\xbc\x8c\xbf\xa4\x5f\x40\x66\xc8\x01\xee\x6f\x6f\x00\xb4\x82\x7f\x87\xf3\xd1\x5f\xc3\x39\x7c\x9e\x8f\xff\x19\xce\xbf\xc2\xdf\xc9\x57\x98\x4d\x61\x34\x9b\x3e\x4d\xc6\xa3\x14\xe6\xc9\xe7\xc9\x70\x94\x0c\xaa\xe3\x16\x73\x3a\x06\x54\x19\xa7\xcf\x93\x49\xf4\x48\x67\x9c\x3f\x73\xc1\xa7\xe4\x69\xf8\x3c\x49\xe1\xee\x27\xfc\xe5\xf7\xdf\xd4\xaf\x77\xf1\x30\xef\x0a\x82\xf1\x34\x6d\xa7\x40\xc9\x7a\x43\xf0\x38\x9b\x4d\x92\xe1\xf4\x3c\x47\x3a\x7f\xde\xdf\x82\x75\x4e\x81\x31\x2f\xce\x73\x28\x32\xc4\xa4\x04\xb2\x90\xc6\xc9\xb5\xd8\xa0\x29\xdb\xb5\x8e\xf9\xde\xc7\x88\xa2\x5c\x18\x2d\xc5\x9a\x76\xf0\x38\x99\x3d\x46\x5b\x69\x37\x9a\xb6\xa4\x44\x4e\x21\xe0\x8a\x84\x74\xa5\xe5\x6b\x59\x0c\x86\x37\x57\x8c\x67\x0f\x99\x4f\x35\x73\xca\x17\xe4\xc3\x99\x21\xd3\x85\x28\x0b\x85\x4c\x7b\xdf\xed\xcd\xbb\x3f\x6e\x6f\x6e\x6f\x5a\xfd\x95\xce\x32\xca\x46\x53\xd3\xe4\x25\x7d\x53\x47\x51\x29\x4f\x21\xec\x03\x5a\x50\xc6\x5e\x9f\x9b\xc9\x06\xb1\x21\xaf\x97\x9a\xd4\xb1\x57\xf5\x03\x9f\x86\x93\x2f\xc9\xd9\x31\x81\x57\xb1\x43\xa3\xb1\xef\x02\x5a\x91\x65\x2d\x9d\xed\xf1\x15\x99\x63\xd7\x63\x8f\xd8\xee\xe1\x52\xd7\x6a\x86\x5d\x60\xca\x05\xe3\xaa\x81\xb8\xa2\x8d\x96\x24\xb4\x5d\xba\x93\x91\xbd\x5e\x94\x4c\x82\x9d\x60\x34\xeb\x76\xcd\xba\x19\x0f\x0f\x30\xe6\xbb\x00\x3a\x2f\x9c\x67\xb4\x0c\x9c\x61\xf5\x4f\x07\x60\x5c\x18\x82\x0c\x03\x78\xb7\xd5\x0a\x30\xc0\x96\xc0\x93\xd9\x81\xb3\xa0\x39\x46\x6f\x33\xb2\x55\xb4\xa1\xbc\x7a\xb4\x5d\x81\xb6\x4b\x6d\x35\xd3\x43\x90\xde\x19\xf3\x73\xa7\xe3\x6d\x46\x97\x81\x7c\x3d\x52\x87\x21\xf8\x61\x6e\x03\x6c\x33\x1d\x0a\xf2\xa2\xc5\xaf\xe4\xcf\xa4\x43\x75\x80\xe0\x4a\x2f\xfb\x86\xa3\xc2\x30\xb0\xb6\xc8\xda\xd9\x13\x86\x00\x4c\xdf\xb8\x5f\x38\x20\x0e\x2f\x59\x16\xfd\xaa\x00\xf1\x71\x4d\xe1\xa9\x53\x5e\x56\x01\x88\x12\x27\x1a\x00\x74\xdc\xc6\x49\x34\xe2\x95\x43\x99\x56\x74\x65\xc2\x01\x3c\x85\xc2\xd9\x50\xcd\x46\xe7\x6e\xb5\x6e\xd4\x4f\xaa\x6f\x75\x41\x20\x6a\x58\x89\xec\x65\xf9\x6b\x56\x76\x25\xaf\x9c\xb6\x2b\x11\x18\xb9\x0c\x9d\xea\x05\xfa\x40\x4a\x44\xcc\x1b\x3d\xf0\xb8\x15\x05\xee\x8c\x43\xd5\x34\x07\xd6\x72\x4d\x5e\x14\x28\xd7\x8d\xbb\xd6\xe6\x0c\x43\xd6\xc9\x2f\x5d\x9e\xa3\x55\x0d\xe8\x3a\x8e\xfd\x0b\xfb\x7d\xb5\xe0\xf4\x7b\x97\xde\xe5\x17\x5c\xd5\x98\x78\x94\x7c\xc1\xcd\x1e\x6d\xa8\x56\x88\xb3\xd7\xee\x1c\xf4\xca\x22\x97\x9e\x9a\x10\x1c\x9d\x8c\x1c\x3b\xd3\x11\xd9\xf1\xf4\x53\xf2\x02\x5a\x7d\x13\x87\xc9\x9f\x4d\xdb\x94\xbb\xdf\xdb\xab\xa0\xf3\x10\x42\x2f\x33\xb1\xd8\x1d\xe7\x6d\x36\x85\x4e\xf8\x01\xf2\x72\x11\xd8\xdf\xdf\xbd\xff\x9f\x7f\x77\xf0\xfd\x7b\x73\xd6\x06\xf0\xf0\xf1\xc3\x00\x3e\x7e\x78\x57\x39\xb4\x1a\xd4\xf4\x18\xc4\x19\xef\xdd\x28\x6d\x7d\xa9\x46\xa7\x2d\x2f\x3f\x28\x2e\x6f\x20\x5c\x94\xee\x40\x9d\x3d\xbb\x57\x6b\x8a\xfd\xef\xee\xe0\xda\xc7\x57\x58\xea\x29\x06\x63\xc9\x2e\x47\xd6\x12\x8d\xd9\x5d\x39\xde\x4b\x5c\x4f\x52\x17\x9a\x2c\x37\x76\x45\x93\x48\xaf\xc2\x57\x65\x25\xbb\xaa\xa4\xf5\x34\xa5\xa1\x5a\x29\x1b\x34\xba\x5a\x56\x7b\x50\xeb\xea\x1d\x62\x9d\xf3\xad\x0d\xc1\xa5\xd1\x6f\x76\xe6\xf0\x10\xf6\xbb\x13\x90\xd1\xb6\xd4\x3e\xe2\x4e\xf6\x68\x6a\x73\xa4\x53\xab\x71\xe7\x2e\x8c\xc7\x0f\xb4\xce\x37\xd5\x05\x2e\xf5\xa2\xd2\x02\xa5\x22\xca\xeb\xd8\xdd\x37\x7e\x57\xa5\xfe\x0b\x00\x00\xff\xff\x9d\x6a\x92\xed\xfa\x0a\x00\x00") +var __000001_initUpDbSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xd1\x6f\xe2\xb8\x13\x7e\xe7\xaf\x18\xe9\xf7\x40\x2b\xd1\x9f\xf6\xa4\xbd\xbd\x93\xfa\x44\xd9\xf4\x0e\x1d\x07\x2b\x9a\x9e\xba\x4f\xd6\xe0\x0c\xc4\xc2\xb1\x23\x7b\x02\x8b\xb4\x7f\xfc\xc9\x81\x40\x0c\x81\xee\xea\xfa\x50\xb5\x33\xe3\x19\xcf\x37\xf3\x7d\xce\x68\x9e\x0c\xd3\x04\xd2\xe1\xd3\x24\x81\xf1\x33\x4c\x67\x29\x24\x6f\xe3\x97\xf4\x05\x64\x8e\xec\xe1\xae\x07\xa0\x32\xf8\x67\x38\x1f\xfd\x39\x9c\xc3\x97\xf9\xf8\xef\xe1\xfc\x2b\xfc\x95\x7c\x85\xd9\x14\x46\xb3\xe9\xf3\x64\x3c\x4a\x61\x9e\x7c\x99\x0c\x47\xc9\xa0\x07\x60\xb0\xa0\x63\x7c\xc8\x37\x7d\x9d\x4c\x82\x43\x5a\x6d\xdd\x85\x07\x3e\x27\xcf\xc3\xd7\x49\x0a\xfd\xff\xe1\x2f\xbf\xff\x96\xfd\xda\x0f\xb1\xbc\x2b\x09\xc6\xd3\x34\x4a\x80\x92\xd5\x86\xe0\x69\x36\x9b\x24\xc3\xe9\x65\x86\x74\xfe\x5a\xdf\x80\x55\x41\x9e\xb1\x28\x2f\x32\x64\xa4\x89\x29\x13\xc8\x42\x6a\x2b\xd7\x62\x83\xba\x8a\x0b\x1d\xb3\x7d\x08\x07\xca\x6a\xa1\x95\x14\x6b\xda\xc1\xd3\x64\xf6\x14\x4c\x95\xd9\x28\xda\x52\x26\x0a\xf2\x1e\x57\x24\xa4\xad\x0c\xdf\xc8\xa1\xd1\xff\x68\xb9\x3a\xf4\x90\xf7\x58\xb0\xa0\x62\x41\xce\x9f\xff\x9f\xab\x52\x54\x65\x86\x4c\x7b\x57\xef\xfe\xb1\xd7\x8b\xe6\x29\xad\x61\x94\xa7\x21\xa6\xc9\x5b\xfa\x23\x13\xc4\x2c\x73\xe4\xfd\x3e\xbe\x0d\x5f\x3d\xda\x0b\x2b\x19\x2f\x36\xe4\xd4\x52\x51\x76\x1c\x4e\xd3\xd6\xf3\x70\xf2\x92\x9c\x47\x09\xbc\x85\x17\x6a\x85\x1d\xc5\x55\x46\x86\x95\xb4\xe6\xd2\x55\xe6\x96\xed\xa5\xb9\x46\x73\x0f\x51\x76\xa3\x9e\xdf\x79\xa6\x42\x30\xae\x4e\x18\x67\xb4\x51\x92\x84\x32\x4b\x7b\xb4\xb1\x53\x8b\x8a\x49\xb0\x15\x8c\x7a\x1d\xd7\xab\xd1\x7f\x78\x80\x31\xf7\x3d\xa8\xa2\xb4\x8e\xd1\x30\x70\x8e\xe1\x97\xf2\xc0\xb8\xd0\x04\x39\x7a\x70\x76\xab\x32\x40\x0f\x5b\x02\x47\x7a\x07\xd6\x80\xe2\x70\x78\x9b\x93\x09\x87\x35\x15\xa1\x57\xb3\x02\x65\x96\xca\x28\xa6\x07\x2f\x9d\xd5\xfa\xff\xbd\x1b\x84\xad\x3c\xb9\x66\x79\xf6\x33\xff\x59\xea\x02\x6c\x73\xe5\x4b\x72\x22\xa2\x50\xf2\x47\x12\x33\x19\xc0\xdb\xca\xc9\x8e\x5d\x08\xc8\x79\x56\x06\x59\x59\x73\x44\x0e\x80\xe9\x1b\x77\x8a\x02\xd4\x5b\x4a\x86\x45\x27\xe5\xa1\xee\xaa\x2d\x29\x87\x7c\x57\x29\x0e\xb5\x70\x89\x56\xe3\xb1\x57\x5b\x89\x5a\xdc\x8e\xc9\x55\x46\xd7\x37\x19\xc0\x91\x2f\xad\xf1\x61\x15\xe2\x6b\x35\x92\xd0\xf4\x72\xb8\xd0\x15\xee\x1f\xa0\x24\x32\xd7\x35\xad\x55\xd5\x56\xbc\xb2\xca\xac\x84\x67\xe4\xca\xc7\x95\x4b\x74\x9e\x32\x51\xe3\x7c\x82\xdd\xe1\x56\x94\xb8\xd3\x16\xb3\x96\xd5\xb3\x92\x6b\x72\xa2\x44\xb9\x3e\xdd\xb2\xb1\xe6\xe8\xf3\x38\xb7\xb4\x45\x81\x26\x6b\xe1\x15\xdb\xf7\x9d\x75\xba\x1a\x29\xe9\x74\x2e\x9d\x2d\xba\x3d\x61\x27\x1c\x4a\xee\xf6\xb2\x43\xe3\xc3\x63\x60\xcd\x8d\xdb\x7a\xb5\x32\xc8\x95\xa3\x56\xe7\x47\x1f\x23\xd7\xb3\x68\x8b\xe6\x78\xfa\x39\x79\x03\x95\x7d\x13\x87\xed\x9e\x4d\x63\x4e\xdd\xed\xed\xf7\x8f\x1d\x27\x08\x9d\xcc\xc5\x62\x77\xdc\xac\xd9\x14\xce\x4e\xef\x51\xae\x16\x9e\xdd\x5d\xff\xc3\x7f\xfc\xe9\xc3\xf7\xef\xed\xc5\x1a\xc0\xc3\xa7\x8f\x03\xf8\xf4\xf1\x3e\x38\x54\x36\x68\x68\x30\xa8\xb7\xf9\xf2\x71\x88\xb5\x23\x2c\x4a\x24\x1d\x3f\x27\x1c\xef\x93\xaa\xd6\x62\x4f\x67\x0f\x65\x2d\xbf\x54\x0f\xfc\xfc\x0d\x3d\xb8\xf8\x3a\x0f\x1d\xd5\x47\xb1\x62\x5b\x20\x2b\x89\x5a\xef\xae\x47\x77\x51\xd3\x91\x54\xa5\x22\xc3\x27\xe1\x6f\xb3\xe5\x1d\xcc\x42\x46\x32\xab\xa0\x96\xa7\x85\xf4\xe1\x79\xd8\xa0\x56\xe1\xd5\xa9\x91\x6c\x0a\xc7\xec\xb9\xe4\x54\xd4\xf9\xb5\x15\x6f\x0f\x63\xdf\x01\xbb\xdd\x09\xbd\x60\x5a\x2a\x57\x43\x4d\xa6\xb1\xc4\x4c\x88\xeb\xb4\x2e\x7b\x0e\x5d\xf3\x39\x75\xf6\x0d\xd4\xc9\x98\x4e\x2c\x22\x28\x02\x1f\xde\x47\xec\xae\xf5\xf7\xfd\x63\xef\xdf\x00\x00\x00\xff\xff\xd7\x95\x8b\x6b\x9f\x0a\x00\x00") func _000001_initUpDbSqlBytes() ([]byte, error) { return bindataRead( @@ -229,12 +229,12 @@ func _000001_initUpDbSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "000001_init.up.db.sql", size: 2810, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x4d, 0x56, 0x2d, 0x1f, 0xc1, 0xf5, 0xc0, 0x8c, 0x42, 0xc0, 0x45, 0x50, 0xb, 0x59, 0x9f, 0x74, 0xce, 0xa6, 0x41, 0xc0, 0xc1, 0x29, 0xaa, 0xe3, 0xc4, 0x8b, 0x23, 0xa9, 0x9e, 0xd0, 0x5e}} + info := bindataFileInfo{name: "000001_init.up.db.sql", size: 2719, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0xdc, 0xeb, 0xe, 0xc2, 0x4f, 0x75, 0xa, 0xf6, 0x3e, 0xc7, 0xc4, 0x4, 0xe2, 0xe1, 0xa4, 0x73, 0x2f, 0x4a, 0xad, 0x1a, 0x0, 0xc3, 0x93, 0x9d, 0x77, 0x3e, 0x31, 0x91, 0x77, 0x2e, 0xc8}} return a, nil } -var __000002_add_last_ens_clock_valueUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xb1\x0a\xc4\x20\x0c\x06\xe0\xfd\xe0\xde\xe1\x7f\x84\xdb\x6f\x4a\xab\x85\x42\x1a\xa1\xc4\x59\x24\x38\x55\x74\xd0\xf6\xf9\xfb\x11\xab\x3f\xa1\xb4\xb0\x87\xf5\x36\xb3\xcd\x01\x72\x0e\x6b\xe0\x78\x08\x6a\x1e\x33\x95\x36\x92\xd5\x6e\x57\x7a\x72\xbd\x0b\x76\x51\x48\x50\x48\x64\x86\xf3\x1b\x45\x56\xfc\xfe\xdf\xcf\x1b\x00\x00\xff\xff\xe6\xc8\xb2\xfb\x4e\x00\x00\x00") +var __000002_add_last_ens_clock_valueUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x41\x0a\x85\x20\x10\x06\xe0\xfd\x3b\xc5\x7f\x84\xb7\x6f\x35\xa5\x41\x30\x8d\x10\xe3\x5a\x64\x70\x95\xe8\x42\xeb\xfc\x7d\xc4\xea\x2f\x28\xad\xec\x61\xbd\xcd\x6c\x73\x80\x9c\xc3\x16\x38\x9e\x82\x9a\xc7\x4c\xa5\x8d\x64\xb5\xdb\x9d\xde\x5c\x9f\x82\x43\x14\x12\x14\x12\x99\xe1\xfc\x4e\x91\x15\xff\xe5\xf7\x05\x00\x00\xff\xff\xd0\x66\x8a\xf7\x4d\x00\x00\x00") func _000002_add_last_ens_clock_valueUpSqlBytes() ([]byte, error) { return bindataRead( @@ -249,12 +249,12 @@ func _000002_add_last_ens_clock_valueUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "000002_add_last_ens_clock_value.up.sql", size: 78, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x36, 0x24, 0xeb, 0x3b, 0x85, 0x2, 0xd6, 0x11, 0x92, 0x27, 0x31, 0x10, 0x63, 0xec, 0x10, 0xf8, 0x75, 0xa9, 0x26, 0x4c, 0x6d, 0x7c, 0x4d, 0xe0, 0x8d, 0x11, 0x23, 0x8f, 0x2d, 0x4c, 0x91}} + info := bindataFileInfo{name: "000002_add_last_ens_clock_value.up.sql", size: 77, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0x3, 0x8f, 0xd5, 0x85, 0x83, 0x47, 0xbe, 0xf9, 0x82, 0x7e, 0x81, 0xa4, 0xbd, 0xaa, 0xd5, 0x98, 0x18, 0x5, 0x2d, 0x82, 0x42, 0x3b, 0x3, 0x50, 0xc3, 0x1e, 0x84, 0x35, 0xf, 0xb6, 0x2b}} return a, nil } -var __1586358095_add_replaceUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xce\x31\x0a\xc2\x40\x10\x46\xe1\x3e\x90\x3b\xfc\xe4\x04\xf6\xa9\x26\xee\x04\x84\x71\x16\x74\x16\xec\x42\x08\x83\x08\x6b\x94\x6c\x72\x7f\x2b\x2b\x2d\x52\x3f\xf8\x78\x24\xc6\x17\x18\x75\xc2\xd8\x8a\x2f\xc3\xd3\x4b\x19\xef\x5e\x40\x21\xe0\x18\x25\x9d\x15\x8b\xbf\xf3\x38\xf9\xb7\xc1\xf8\x66\xd0\x68\xd0\x24\x82\xc0\x3d\x25\x31\x34\x4d\x5b\x57\xfb\xbc\x35\xa3\x8b\x51\x98\xf4\x97\xe9\x49\xae\xbc\x57\xca\x8f\xd9\x87\xe9\xb5\xcd\x2b\x4e\xfa\xe7\xe9\xd0\xd6\xd5\x27\x00\x00\xff\xff\x96\x52\xde\x7b\xe3\x00\x00\x00") +var __1586358095_add_replaceUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xce\x31\x0a\xc2\x40\x10\x46\xe1\x3e\xa7\xf8\xc9\x09\xec\x53\x4d\xdc\x09\x08\xe3\x2c\xe8\x2c\xd8\x85\x10\x06\x11\xd6\x28\xd9\xe4\xfe\x56\x56\x5a\x6c\xfd\xe0\xe3\x91\x18\x5f\x60\xd4\x0b\x63\x2f\xbe\x8e\x4f\x2f\x65\xba\x7b\x01\x85\x80\x63\x94\x74\x56\xac\xfe\xce\xd3\xec\xdf\x06\xe3\x9b\x41\xa3\x41\x93\x08\x02\x0f\x94\xc4\xd0\xb6\x5d\x53\xc7\x6d\x19\x7d\x8c\xc2\xa4\xbf\xca\x40\x72\xe5\x4a\x28\x3f\x16\x1f\xe7\xd7\xbe\x6c\x38\xe9\x9f\xa3\x43\xd7\x7c\x02\x00\x00\xff\xff\xca\x94\x3f\xe0\xe0\x00\x00\x00") func _1586358095_add_replaceUpSqlBytes() ([]byte, error) { return bindataRead( @@ -269,12 +269,12 @@ func _1586358095_add_replaceUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1586358095_add_replace.up.sql", size: 227, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0x30, 0x70, 0x5e, 0xb6, 0x98, 0x95, 0xce, 0xa9, 0xbe, 0x34, 0xab, 0xf5, 0x39, 0xbb, 0x5a, 0x84, 0x80, 0x73, 0x8a, 0x25, 0x80, 0x6, 0xf, 0x32, 0x3f, 0xd0, 0x8c, 0x90, 0xf6, 0x25, 0xa5}} + info := bindataFileInfo{name: "1586358095_add_replace.up.sql", size: 224, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xb3, 0xa9, 0xc7, 0x7f, 0x9d, 0x8f, 0x43, 0x8c, 0x9e, 0x58, 0x8d, 0x44, 0xbc, 0xfa, 0x6b, 0x5f, 0x3f, 0x5a, 0xbe, 0xe8, 0xb1, 0x16, 0xf, 0x91, 0x2a, 0xa0, 0x71, 0xbb, 0x8d, 0x6b, 0xcb}} return a, nil } -var __1588665364_add_image_dataUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcb\x41\x0a\xc2\x30\x10\x05\xd0\x7d\xa1\x77\xf8\xf4\x0c\xe2\xa6\xab\xc4\x44\x10\xc6\x09\xc8\x04\xdc\x95\x11\x87\x22\x58\x2c\x8e\x2e\x7a\xfb\x9e\x21\x07\x78\x81\x24\xdf\x20\x21\x52\xc6\xdf\xed\x3b\x2d\xe6\xae\xb3\x39\x42\x4a\x38\x15\xaa\x57\xc6\x6b\xd1\xd9\xa6\x55\xb7\xf7\x47\x9f\x88\x54\xe2\xd8\x77\x0d\xf2\xb7\xad\x86\x0b\x4b\x9b\x7a\xa8\xdb\xf1\x00\xc9\x77\x01\x17\x01\x57\x22\xa4\x7c\x0e\x95\x04\xc3\x30\xf6\xdd\x1e\x00\x00\xff\xff\xa3\x93\xdf\x48\xbd\x00\x00\x00") +var __1588665364_add_image_dataUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcb\x41\x0a\xc2\x40\x0c\x05\xd0\x7d\x4f\xf1\xe9\x19\xc4\x4d\x57\x33\x4e\x04\x21\x66\x40\x32\xe0\xae\x44\x0c\x45\xb0\x58\x8c\x2e\x7a\xfb\x9e\xa1\x07\x78\x89\x95\x6e\xd0\x94\x99\xf0\x0f\xff\x8e\xb3\x47\xd8\xe4\x81\x54\x0a\x4e\x95\xdb\x55\xf0\x9a\x6d\xf2\x71\xb1\xf5\xfd\xb1\x27\x32\xd7\x3c\x74\x3b\xe0\x6f\x5d\x1c\x17\xd1\x5d\xe8\x61\xe1\xc7\x03\x94\xee\x0a\xa9\x0a\x69\xcc\x28\x74\x4e\x8d\x15\x7d\x3f\x74\x5b\x00\x00\x00\xff\xff\xf8\x4b\xbd\xbe\xba\x00\x00\x00") func _1588665364_add_image_dataUpSqlBytes() ([]byte, error) { return bindataRead( @@ -289,12 +289,12 @@ func _1588665364_add_image_dataUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1588665364_add_image_data.up.sql", size: 189, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0x14, 0x24, 0xeb, 0x9b, 0x64, 0x93, 0xd3, 0xc9, 0xd1, 0x60, 0x21, 0x7f, 0xb2, 0x5, 0x5b, 0x87, 0x62, 0x2e, 0x72, 0x7f, 0xa4, 0x78, 0xf, 0xbe, 0xf4, 0x53, 0xfa, 0x9d, 0x52, 0x8e, 0xa7}} + info := bindataFileInfo{name: "1588665364_add_image_data.up.sql", size: 186, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0xc6, 0x35, 0xb4, 0x4c, 0x39, 0x96, 0x29, 0x30, 0xda, 0xf4, 0x8f, 0xcb, 0xf1, 0x9f, 0x84, 0xdc, 0x88, 0xd4, 0xd5, 0xbc, 0xb6, 0x5b, 0x46, 0x78, 0x67, 0x76, 0x1a, 0x5, 0x36, 0xdc, 0xe5}} return a, nil } -var __1589365189_add_pow_targetUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xc8\x2f\x8f\x2f\x49\x2c\x4a\x4f\x2d\x51\x08\x72\x75\xf4\x51\x48\x49\x4d\x4b\x2c\xcd\x29\x51\x30\xd0\x33\x30\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\xb6\x6d\xb5\x72\x43\x00\x00\x00") +var __1589365189_add_pow_targetUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xc8\x2f\x8f\x2f\x49\x2c\x4a\x4f\x2d\x51\x08\x72\x75\xf4\x51\x48\x49\x4d\x4b\x2c\xcd\x29\x51\x30\xd0\x33\x30\xb2\xe6\x02\x04\x00\x00\xff\xff\x49\xd6\x04\x23\x42\x00\x00\x00") func _1589365189_add_pow_targetUpSqlBytes() ([]byte, error) { return bindataRead( @@ -309,12 +309,12 @@ func _1589365189_add_pow_targetUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1589365189_add_pow_target.up.sql", size: 67, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x6, 0xa1, 0x1f, 0xe1, 0x30, 0x51, 0x79, 0x5, 0x6b, 0x71, 0x4d, 0x41, 0x7a, 0xbe, 0xbe, 0xd4, 0x8f, 0xab, 0xd3, 0x5d, 0xfe, 0xc6, 0xf1, 0xd1, 0x92, 0x63, 0x4c, 0xfb, 0x1f, 0x4e, 0x78}} + info := bindataFileInfo{name: "1589365189_add_pow_target.up.sql", size: 66, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x3a, 0xe2, 0x2e, 0x7d, 0xaf, 0xbb, 0xcc, 0x21, 0xa1, 0x7a, 0x41, 0x9a, 0xd0, 0xbb, 0xa9, 0xc8, 0x35, 0xf9, 0x32, 0x34, 0x46, 0x44, 0x9a, 0x86, 0x40, 0x7c, 0xb9, 0x23, 0xc7, 0x3, 0x3f}} return a, nil } -var __1591277220_add_index_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xca\xb1\xaa\x83\x30\x14\x87\xf1\x5d\xf0\x1d\xfe\x9b\x0a\x5e\xb8\x83\xb8\x38\x89\x66\xe8\xa2\x45\x3b\x74\x3b\xc4\x18\xaa\x34\x6d\x20\x27\x29\x2d\xf8\xf0\xa5\x43\x87\x42\xb7\x7e\xeb\xf7\x6b\x87\x7e\x8f\x5d\xd7\x8a\x23\xd6\xf9\x4e\xac\xa5\x53\x0b\x4d\x0f\x52\x8b\xf4\xb4\xce\x55\x1c\xc5\x51\x33\x88\xfa\x20\xbe\x32\x63\x95\x34\x6f\x4c\x6c\x9d\x27\x7b\x25\x15\x1c\x5b\x87\xbe\x43\x60\xed\xe8\xa2\x99\xe5\x49\x33\xd2\x0f\x8e\x7a\x6c\x72\x70\x98\xd8\xbb\x34\xf9\xff\xb1\x04\xdb\x06\x65\xac\x3a\xd3\x4d\x9a\xa0\x73\xfc\x95\x45\x8e\xb2\xc8\x5e\x63\x9d\xd1\x8a\xb1\xc9\xaa\x38\x7a\x06\x00\x00\xff\xff\x83\x45\xc7\x0d\xf3\x00\x00\x00") +var __1591277220_add_index_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xca\xb1\xaa\x83\x30\x14\x87\xf1\xdd\xa7\xf8\x6f\x2a\x78\xe1\x0e\xe2\xe2\x24\x9a\xa1\x8b\x16\xed\xd0\xed\x10\x63\xa8\xd2\xb4\x81\x73\x4c\x69\xc1\x87\x2f\x1d\x3a\x14\xba\xf5\x5b\xbf\x5f\xd3\x77\x7b\xec\xda\x46\x1d\xb1\x4c\x77\x12\xab\xd9\xcc\x34\x3e\xc8\xcc\x7a\xa5\x65\x2a\xa3\xa8\xee\x55\x75\x50\x5f\x91\xf3\x46\xbb\x37\x25\xf1\xbc\x92\xbf\x92\x09\x2c\x9e\xd1\xb5\x08\x62\x99\x2e\x56\x44\x9f\xac\x20\xf9\xe0\xa8\x86\x3a\x83\x84\x51\x56\x4e\xe2\xff\x1f\x8b\xb1\x6d\x30\xce\x9b\x33\xdd\xb4\x0b\x36\xc3\x5f\x91\x67\x28\xf2\xf4\x35\x96\x09\x8d\x1a\xea\xb4\x8c\x9e\x01\x00\x00\xff\xff\xdb\x1d\x3d\x0b\xf0\x00\x00\x00") func _1591277220_add_index_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -329,12 +329,12 @@ func _1591277220_add_index_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1591277220_add_index_messages.up.sql", size: 243, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0xf3, 0xbf, 0x26, 0x3e, 0xcb, 0x3b, 0xe2, 0x3e, 0xb7, 0x6c, 0xd7, 0xdf, 0x27, 0x42, 0xde, 0x3c, 0x99, 0x9a, 0x30, 0x90, 0xf3, 0xc6, 0x79, 0x73, 0xd, 0x82, 0x83, 0xf4, 0xe4, 0xc0, 0x3}} + info := bindataFileInfo{name: "1591277220_add_index_messages.up.sql", size: 240, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xfe, 0xbe, 0xd5, 0xb8, 0x8f, 0xdd, 0xef, 0xbb, 0xa8, 0xad, 0x7f, 0xed, 0x5b, 0x5b, 0x2f, 0xe6, 0x82, 0x27, 0x78, 0x1f, 0xb9, 0x57, 0xdc, 0x8, 0xc2, 0xb2, 0xa9, 0x9a, 0x4, 0xe1, 0x7a}} return a, nil } -var __1593087212_add_mute_chat_and_raw_message_fieldsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xcc\x31\x0e\xc2\x30\x0c\x00\xc0\x1d\x89\x3f\xf8\x1f\x4c\x2e\x71\x27\xd3\x48\x90\xce\x51\x94\x1a\x1a\xa1\xa6\x51\x9d\x08\xf1\x7b\x56\x58\x58\xfa\x80\x3b\x64\x47\x57\x70\xd8\x31\x41\x9c\x43\x55\x40\x63\xe0\x6c\x79\xbc\x0c\xb0\xb4\x2a\x13\x74\xd6\x32\xe1\x00\x86\x7a\x1c\xd9\x41\x8f\x7c\xa3\xd3\xf1\xf0\x4d\xb7\xf0\xf2\x8b\xa8\x86\x87\xfc\x0c\xfa\x4c\xc5\x4b\x8e\xdb\xbb\xd4\xb4\xe6\x7d\x97\xe4\xc9\x97\xa6\xb3\xcf\x6b\x4d\xf7\x14\xc3\xdf\xf2\x13\x00\x00\xff\xff\x00\x93\x0b\x62\xda\x00\x00\x00") +var __1593087212_add_mute_chat_and_raw_message_fieldsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xcc\x31\x0e\xc2\x30\x0c\x00\xc0\x9d\x57\xf8\x1f\x4c\x2e\x71\x27\xd3\x48\x90\xce\x51\x94\x1a\x1a\xa1\xa6\x51\xed\x0a\xf1\x7b\x56\x58\x58\x78\xc0\x1d\x72\xa0\x0b\x04\xec\x98\x20\xcf\xc9\x14\xd0\x39\x38\x79\x1e\xcf\x03\x2c\xbb\xc9\x04\x9d\xf7\x4c\x38\x80\xa3\x1e\x47\x0e\xd0\x23\x5f\xe9\x78\xf8\x94\x5b\x7a\xc6\x45\x54\xd3\x5d\xbe\x02\x7d\x94\x16\xa5\xe6\xed\xd5\xac\xac\xf5\xaf\x4a\xea\x14\xdb\xae\x73\xac\xab\x95\x5b\xc9\xe9\xd7\xf8\x0e\x00\x00\xff\xff\xd9\x47\x38\x58\xd7\x00\x00\x00") func _1593087212_add_mute_chat_and_raw_message_fieldsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -349,12 +349,12 @@ func _1593087212_add_mute_chat_and_raw_message_fieldsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1593087212_add_mute_chat_and_raw_message_fields.up.sql", size: 218, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0xde, 0xe9, 0x69, 0xd0, 0x6, 0xc2, 0x35, 0xb6, 0x1f, 0xdd, 0x79, 0x9c, 0xea, 0x13, 0xa5, 0x1f, 0x50, 0x5e, 0xbe, 0x68, 0x48, 0xab, 0x34, 0x94, 0x3d, 0x21, 0x16, 0x6e, 0xe, 0x5, 0x27}} + info := bindataFileInfo{name: "1593087212_add_mute_chat_and_raw_message_fields.up.sql", size: 215, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x99, 0x61, 0xd1, 0xaa, 0xb4, 0xbf, 0xaf, 0xd7, 0x20, 0x17, 0x40, 0xf9, 0x2, 0xfb, 0xcc, 0x40, 0x2a, 0xd, 0x86, 0x36, 0x30, 0x88, 0x89, 0x25, 0x80, 0x42, 0xb0, 0x5b, 0xe9, 0x73, 0x78}} return a, nil } -var __1595862781_add_audio_dataUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcb\x41\xaa\x83\x30\x10\x06\xe0\xbd\xe0\x1d\x7e\x3c\xc3\xe3\x6d\x5c\xc5\x9a\x42\x61\x9a\x40\x99\x40\x77\x61\x4a\x42\x11\x6a\x23\x8e\x59\x78\xfb\x9e\x21\x07\xf8\x0c\xb1\x7d\x80\xcd\x44\x16\x55\xf3\x1e\xd7\xac\x2a\xef\xac\x30\xf3\x8c\x8b\xa7\x70\x77\x90\x9a\x96\x12\x37\x39\x3f\x45\x12\x26\xf2\xd3\xd8\x77\x0d\xf2\x38\xb7\x8c\x9b\xe3\x36\x95\xea\x2e\xc7\x52\xbe\x71\xd5\x76\xfc\x12\xcd\xff\x7f\x60\xfb\x64\x38\xcf\x70\x81\x08\xb3\xbd\x9a\x40\x8c\x61\x18\xfb\xee\x17\x00\x00\xff\xff\x3c\xd5\xbc\xb1\xfa\x00\x00\x00") +var __1595862781_add_audio_dataUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcb\x41\xaa\xc3\x20\x10\x06\xe0\x7d\x4e\xf1\x93\x33\x3c\xde\x26\x2b\x53\x2d\x14\xa6\x0a\x65\x84\xee\x64\x8a\x52\x02\x4d\x0d\x99\xb8\xc8\xed\x7b\x06\x0f\xf0\x19\x62\xf7\x00\x9b\x99\x1c\x9a\x96\x3d\xad\x45\x55\xde\x45\x61\xac\xc5\x25\x50\xbc\x7b\x48\xcb\x4b\x4d\x9b\x9c\x9f\x2a\x19\x33\x85\x79\x1a\x3a\xe0\x71\x6e\x05\x37\xcf\x5d\x28\xb7\x5d\x8e\xa5\x7e\xd3\xaa\xdd\xf6\x25\x5a\xfe\xff\xc0\xee\xc9\xf0\x81\xe1\x23\x11\xac\xbb\x9a\x48\x8c\x71\x9c\x86\x5f\x00\x00\x00\xff\xff\xeb\x6f\xa0\x62\xf6\x00\x00\x00") func _1595862781_add_audio_dataUpSqlBytes() ([]byte, error) { return bindataRead( @@ -369,8 +369,8 @@ func _1595862781_add_audio_dataUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1595862781_add_audio_data.up.sql", size: 250, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x44, 0x95, 0xb1, 0xf1, 0xff, 0xaa, 0x17, 0xd3, 0x1c, 0x28, 0xba, 0xf2, 0x63, 0x24, 0x49, 0x23, 0xb6, 0x76, 0x84, 0x4f, 0xbf, 0x75, 0x66, 0xb3, 0xd4, 0x93, 0x73, 0x6a, 0xee, 0x23, 0xc5}} + info := bindataFileInfo{name: "1595862781_add_audio_data.up.sql", size: 246, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0xd2, 0xee, 0x55, 0xfb, 0x36, 0xa4, 0x92, 0x66, 0xe, 0x81, 0x62, 0x1e, 0x7a, 0x69, 0xa, 0xd5, 0x4b, 0xa5, 0x6a, 0x8d, 0x1d, 0xce, 0xf3, 0x3e, 0xc0, 0x5f, 0x9c, 0x66, 0x1b, 0xb4, 0xed}} return a, nil } @@ -389,7 +389,7 @@ func _1595865249_create_emoji_reactions_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1595865249_create_emoji_reactions_table.up.sql", size: 300, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1595865249_create_emoji_reactions_table.up.sql", size: 300, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xc5, 0x43, 0x5c, 0x3d, 0x53, 0x43, 0x2c, 0x1a, 0xa5, 0xb6, 0xbf, 0x7, 0x4, 0x5a, 0x3e, 0x40, 0x8b, 0xa4, 0x57, 0x12, 0x58, 0xbc, 0x42, 0xe2, 0xc3, 0xde, 0x76, 0x98, 0x80, 0xe2, 0xbe}} return a, nil } @@ -409,7 +409,7 @@ func _1596805115_create_group_chat_invitations_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1596805115_create_group_chat_invitations_table.up.sql", size: 231, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1596805115_create_group_chat_invitations_table.up.sql", size: 231, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0xb1, 0x14, 0x6d, 0x54, 0x28, 0x67, 0xc3, 0x23, 0x6a, 0xfc, 0x80, 0xdf, 0x9e, 0x4c, 0x35, 0x36, 0xf, 0xf8, 0xf3, 0x5f, 0xae, 0xad, 0xb, 0xc1, 0x51, 0x8e, 0x17, 0x7, 0xe5, 0x7f, 0x91}} return a, nil } @@ -429,7 +429,7 @@ func _1597322655_add_invitation_admin_chat_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1597322655_add_invitation_admin_chat_field.up.sql", size: 54, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1597322655_add_invitation_admin_chat_field.up.sql", size: 54, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x7a, 0xa0, 0xf2, 0xdb, 0x13, 0x91, 0x91, 0xa8, 0x34, 0x1a, 0xa1, 0x49, 0x68, 0xd5, 0xae, 0x2c, 0xd8, 0xd5, 0xea, 0x8f, 0x8c, 0xc7, 0x2, 0x4e, 0x58, 0x2c, 0x3a, 0x14, 0xd4, 0x4f, 0x2c}} return a, nil } @@ -449,12 +449,12 @@ func _1597757544_add_nicknameUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1597757544_add_nickname.up.sql", size: 52, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1597757544_add_nickname.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa2, 0x64, 0x50, 0xc5, 0x4, 0xb9, 0x8b, 0xd1, 0x18, 0x9b, 0xc3, 0x91, 0x36, 0x2a, 0x1f, 0xc3, 0x6c, 0x2d, 0x92, 0xf8, 0x5e, 0xff, 0xb1, 0x59, 0x61, 0x2, 0x1c, 0xe1, 0x85, 0x90, 0xa4}} return a, nil } -var __1598955122_add_mentionsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\x4d\xcd\x2b\xc9\xcc\xcf\x2b\x56\x70\xf2\xf1\x77\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\x02\xcf\x66\x06\x35\x00\x00\x00") +var __1598955122_add_mentionsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\x4d\xcd\x2b\xc9\xcc\xcf\x2b\x56\x70\xf2\xf1\x77\xb2\xe6\x02\x04\x00\x00\xff\xff\xca\xf8\x74\x41\x34\x00\x00\x00") func _1598955122_add_mentionsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -469,12 +469,12 @@ func _1598955122_add_mentionsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1598955122_add_mentions.up.sql", size: 53, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x77, 0x2, 0x14, 0xc9, 0x45, 0x11, 0x94, 0x15, 0xd6, 0x2, 0x87, 0x57, 0x6f, 0x11, 0x8f, 0xa8, 0x0, 0x6d, 0xd6, 0xcf, 0xc9, 0xf6, 0x6a, 0x6e, 0x77, 0xd1, 0xdd, 0xb6, 0xcd, 0x5c, 0x90}} + info := bindataFileInfo{name: "1598955122_add_mentions.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x22, 0x17, 0x92, 0xd2, 0x11, 0x4e, 0x7, 0x93, 0x9a, 0x55, 0xfd, 0xb, 0x97, 0xc4, 0x63, 0x6a, 0x81, 0x97, 0xcd, 0xb2, 0xf8, 0x4b, 0x5f, 0x3c, 0xfa, 0x3a, 0x38, 0x53, 0x10, 0xed, 0x9d}} return a, nil } -var __1599641390_add_emoji_reactions_indexUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x48\xcd\xcd\xcf\xca\x8c\x2f\x4a\x4d\x4c\x2e\xc9\xcc\xcf\x2b\x8e\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x8d\xcf\x4c\x89\xcf\xc9\x4f\x4e\xcc\x89\x4f\xce\x48\x2c\x01\xf1\x8a\x52\x4b\x8a\x12\x93\x4b\x52\x53\xe2\x33\x53\x2a\x14\xf2\xf3\xd0\x75\x6a\x20\x74\xea\x28\xa0\x68\xd5\x51\x80\xeb\xd5\xb4\xe6\xe5\x02\x04\x00\x00\xff\xff\xd8\x66\xe3\xa2\x7f\x00\x00\x00") +var __1599641390_add_emoji_reactions_indexUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x48\xcd\xcd\xcf\xca\x8c\x2f\x4a\x4d\x4c\x2e\xc9\xcc\xcf\x2b\x8e\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x8d\xcf\x4c\x89\xcf\xc9\x4f\x4e\xcc\x89\x4f\xce\x48\x2c\x01\xf1\x8a\x52\x4b\x8a\x12\x93\x4b\x52\x53\xe2\x33\x53\x2a\x14\xf2\xf3\xd0\x75\x6a\x20\x74\xea\x28\xa0\x68\xd5\x51\x80\xeb\xd5\xb4\xe6\x02\x04\x00\x00\xff\xff\xac\x4f\x19\x15\x7e\x00\x00\x00") func _1599641390_add_emoji_reactions_indexUpSqlBytes() ([]byte, error) { return bindataRead( @@ -489,12 +489,12 @@ func _1599641390_add_emoji_reactions_indexUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1599641390_add_emoji_reactions_index.up.sql", size: 127, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0x24, 0xce, 0xaf, 0x35, 0x81, 0xfc, 0x72, 0x70, 0xb9, 0x2, 0x23, 0x38, 0x4e, 0xab, 0x1d, 0xad, 0x1a, 0x9, 0x79, 0x3e, 0x8a, 0x6d, 0xe1, 0xc8, 0x5e, 0x5f, 0x9e, 0x65, 0x5a, 0x23, 0xdc}} + info := bindataFileInfo{name: "1599641390_add_emoji_reactions_index.up.sql", size: 126, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0xd8, 0xdc, 0xa7, 0xb, 0x92, 0x7a, 0x61, 0x37, 0x24, 0x1c, 0x77, 0x5e, 0xe, 0x7e, 0xfc, 0x9f, 0x98, 0x7b, 0x65, 0xe7, 0xf9, 0x71, 0x57, 0x89, 0x2d, 0x90, 0x1b, 0xf6, 0x5e, 0x37, 0xe8}} return a, nil } -var __1599720851_add_seen_index_remove_long_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x41\x0b\x82\x30\x18\x87\xf1\xbb\xe0\x77\xf8\x1f\x15\x3a\x14\x44\x10\x52\x10\xf9\x46\x5e\x66\xb8\x45\xde\xc6\x70\x2f\x6e\xb0\x0c\xda\x02\x3f\x7e\xd4\xcd\xfb\xef\x79\xce\x1d\x9d\x14\xa1\x11\x35\xf5\x68\x2e\x10\xad\x02\xf5\x8d\x54\x12\x91\x79\xd2\xe1\x35\x98\xa0\x07\x67\x92\xf6\x56\x7b\x3b\xa3\x15\xf8\x44\x7e\xeb\x27\xc7\x68\x46\x8e\xc5\x82\xac\xfe\x59\x59\xe5\xd9\xfd\x56\xff\xce\x0b\x0b\x49\x0a\xce\x5b\xc6\x01\x1b\x3c\xae\xd4\x11\x02\x4f\x63\x72\x45\xe2\x39\x95\x38\x62\xbb\xde\xef\xaa\x3c\xfb\x06\x00\x00\xff\xff\x30\x02\xb6\x5c\x98\x00\x00\x00") +var __1599720851_add_seen_index_remove_long_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\xb1\x0a\xc2\x30\x14\x46\xe1\xbd\x4f\xf1\x8f\x2d\x38\x28\x88\x20\x45\x41\xec\x15\xb3\xa4\xd2\x44\xec\x16\x42\x73\x69\x02\xb1\x82\x89\xd0\xc7\x17\xdd\xba\x7f\xe7\x9c\x3b\x3a\x69\x82\x90\x0d\xf5\x10\x17\xc8\x56\x83\x7a\xa1\xb4\x42\x62\x9e\x4c\x7c\x0d\x36\x9a\xc1\xdb\x6c\x82\x33\xc1\xcd\x68\x25\x3e\x89\xdf\xe6\xc9\x29\xd9\x91\x53\xb9\x20\xab\x7f\x56\xd5\xc5\xfd\xd6\xfc\xc6\x0b\x0a\x45\x1a\x3e\x38\xc6\x01\x1b\x3c\xae\xd4\x11\x22\x4f\x63\xf6\x65\xe6\x39\x57\x38\x62\xbb\xde\xef\xea\xe2\x1b\x00\x00\xff\xff\x44\x35\x03\x9f\x96\x00\x00\x00") func _1599720851_add_seen_index_remove_long_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -509,8 +509,8 @@ func _1599720851_add_seen_index_remove_long_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1599720851_add_seen_index_remove_long_messages.up.sql", size: 152, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x5f, 0x67, 0x70, 0x15, 0xa4, 0xc8, 0x9a, 0x5a, 0x88, 0xcf, 0x26, 0xa2, 0xea, 0x28, 0x72, 0xf3, 0xed, 0x87, 0x92, 0x4a, 0xb5, 0x26, 0x2e, 0xd4, 0x3, 0x3, 0x6e, 0xfd, 0x1e, 0x2c, 0xb7}} + info := bindataFileInfo{name: "1599720851_add_seen_index_remove_long_messages.up.sql", size: 150, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0x1c, 0xc4, 0x78, 0x91, 0xc7, 0xeb, 0xfe, 0xc8, 0xa0, 0xd8, 0x13, 0x27, 0x97, 0xc8, 0x96, 0x56, 0x97, 0x33, 0x2c, 0x1e, 0x16, 0x8a, 0xd3, 0x49, 0x99, 0x3, 0xe9, 0xbb, 0xc4, 0x5, 0x3c}} return a, nil } @@ -529,7 +529,7 @@ func _1603198582_add_profile_chat_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1603198582_add_profile_chat_field.up.sql", size: 45, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1603198582_add_profile_chat_field.up.sql", size: 45, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0xca, 0xe, 0x46, 0xa0, 0x9, 0x9d, 0x47, 0x57, 0xe9, 0xfb, 0x17, 0xeb, 0x9c, 0xf6, 0xb8, 0x1d, 0xe9, 0xd, 0x0, 0xd5, 0xe5, 0xd8, 0x9e, 0x60, 0xa, 0xbf, 0x32, 0x2c, 0x52, 0x7f, 0x6a}} return a, nil } @@ -549,7 +549,7 @@ func _1603816533_add_linksUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1603816533_add_links.up.sql", size: 48, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1603816533_add_links.up.sql", size: 48, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x24, 0xd6, 0x1d, 0xa, 0x83, 0x1e, 0x4d, 0xf, 0xae, 0x4d, 0x8c, 0x51, 0x32, 0xa8, 0x37, 0xb0, 0x14, 0xfb, 0x32, 0x34, 0xc8, 0xc, 0x4e, 0x5b, 0xc5, 0x15, 0x65, 0x73, 0x0, 0x0, 0x1d}} return a, nil } @@ -569,7 +569,7 @@ func _1603888149_create_chat_identity_last_published_tableUpSql() (*asset, error return nil, err } - info := bindataFileInfo{name: "1603888149_create_chat_identity_last_published_table.up.sql", size: 407, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1603888149_create_chat_identity_last_published_table.up.sql", size: 407, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0x9, 0xf, 0xfb, 0xdb, 0x3c, 0x86, 0x70, 0x82, 0xda, 0x10, 0x25, 0xe2, 0x4e, 0x40, 0x45, 0xab, 0x8b, 0x1c, 0x91, 0x7c, 0xf1, 0x70, 0x2e, 0x81, 0xf3, 0x71, 0x45, 0xda, 0xe2, 0xa4, 0x57}} return a, nil } @@ -589,7 +589,7 @@ func _1605075346_add_communitiesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1605075346_add_communities.up.sql", size: 6971, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1605075346_add_communities.up.sql", size: 6971, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x64, 0xea, 0xb4, 0xae, 0x9e, 0xdb, 0x9, 0x58, 0xb6, 0x5c, 0x7a, 0x50, 0xc5, 0xfe, 0x93, 0x5d, 0x36, 0x85, 0x5d, 0x6a, 0xba, 0xc9, 0x7e, 0x84, 0xd7, 0xbf, 0x2a, 0x53, 0xf3, 0x97, 0xf1}} return a, nil } @@ -609,12 +609,12 @@ func _1610117927_add_message_cacheUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1610117927_add_message_cache.up.sql", size: 142, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} + info := bindataFileInfo{name: "1610117927_add_message_cache.up.sql", size: 142, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0xf1, 0xf0, 0x82, 0x79, 0x28, 0x19, 0xc2, 0x39, 0x6a, 0xa5, 0x96, 0x59, 0x23, 0xa0, 0xed, 0x60, 0x58, 0x86, 0x9, 0xb9, 0xad, 0xfb, 0xa, 0xe3, 0x47, 0x6e, 0xa1, 0x18, 0xe8, 0x39, 0x2c}} return a, nil } -var __1610959908_add_dont_wrap_to_raw_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xce\xce\x2c\x88\x4f\x2f\xca\x2f\x2d\x80\x49\xc7\x97\x17\x25\x16\x28\x38\xf9\xfb\xfb\xb8\x3a\xfa\x29\xb8\xb8\xba\x39\x86\xfa\x84\x28\xb8\x39\xfa\x04\xbb\x5a\xf3\x72\x01\x02\x00\x00\xff\xff\xcc\x3f\x1d\x52\x54\x00\x00\x00") +var __1610959908_add_dont_wrap_to_raw_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xce\xce\x2c\x88\x4f\x2f\xca\x2f\x2d\x80\x49\xc7\x97\x17\x25\x16\x28\x38\xf9\xfb\xfb\xb8\x3a\xfa\x29\xb8\xb8\xba\x39\x86\xfa\x84\x28\xb8\x39\xfa\x04\xbb\x5a\x73\x01\x02\x00\x00\xff\xff\x3c\x1f\xd3\xe4\x53\x00\x00\x00") func _1610959908_add_dont_wrap_to_raw_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -629,12 +629,12 @@ func _1610959908_add_dont_wrap_to_raw_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1610959908_add_dont_wrap_to_raw_messages.up.sql", size: 84, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x77, 0xd6, 0x84, 0x88, 0x14, 0xa8, 0xe8, 0x8, 0xb0, 0x4a, 0xf3, 0xd7, 0x87, 0x41, 0x63, 0x1e, 0x14, 0x81, 0xc6, 0x97, 0xa2, 0xff, 0x40, 0x96, 0xfb, 0x53, 0x30, 0x62, 0x9f, 0xa6, 0xb8}} + info := bindataFileInfo{name: "1610959908_add_dont_wrap_to_raw_messages.up.sql", size: 83, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2, 0x9a, 0xca, 0xd4, 0x38, 0x44, 0x30, 0x2b, 0xa8, 0x27, 0x32, 0x63, 0x53, 0x22, 0x60, 0x59, 0x84, 0x23, 0x96, 0x77, 0xf0, 0x56, 0xd7, 0x94, 0xe0, 0x95, 0x28, 0x6, 0x1d, 0x4e, 0xb1}} return a, nil } -var __1610960912_add_send_on_personal_topicUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xc1\x0a\x02\x20\x0c\x06\xe0\x7b\xd0\x3b\xfc\xef\xd1\x69\xe6\x3c\x2d\x85\xd2\xf3\x90\x1a\x11\x94\x8a\x0b\x7a\xfd\x3e\x92\xca\x57\x54\x0a\xc2\xd8\xfd\xa7\x1f\x73\xef\x4f\x73\x50\x8c\x38\x17\x69\x97\x0c\xb7\xf1\xd0\x39\x74\xd9\xf6\x39\xfa\x5b\xbf\x73\xbd\xee\x08\xa5\x08\x53\x46\xe4\x44\x4d\x2a\x12\xc9\x8d\x4f\xc7\xc3\x3f\x00\x00\xff\xff\x32\x2d\x6e\x67\x53\x00\x00\x00") +var __1610960912_add_send_on_personal_topicUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xc1\x0a\x82\x21\x0c\x07\xf0\x7b\x4f\xf1\x7f\x8f\x4e\x33\xe7\x69\x29\x94\x9e\x87\xd4\x88\xa0\x54\x5c\xd0\xeb\x7f\x3f\x92\xca\x37\x54\x0a\xc2\xd8\xfd\xaf\x5f\x73\xef\x2f\x73\x50\x8c\xb8\x14\x69\xd7\x0c\xb7\xf1\xd4\x39\x74\xd9\xf6\x39\xfa\x47\x7f\x73\xbd\x1f\x08\xa5\x08\x53\x46\xe4\x44\x4d\x2a\x12\xc9\x9d\xcf\xa7\x23\x00\x00\xff\xff\x14\x1b\x69\x22\x52\x00\x00\x00") func _1610960912_add_send_on_personal_topicUpSqlBytes() ([]byte, error) { return bindataRead( @@ -649,12 +649,12 @@ func _1610960912_add_send_on_personal_topicUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1610960912_add_send_on_personal_topic.up.sql", size: 83, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x9b, 0x17, 0x16, 0x8d, 0x9c, 0x54, 0xdd, 0x82, 0x1c, 0xc7, 0x4d, 0xba, 0xa4, 0x31, 0x48, 0x99, 0xd9, 0x7f, 0xb8, 0xaa, 0x64, 0x35, 0xca, 0x6, 0x4c, 0xc5, 0xdd, 0xf8, 0xde, 0xfc, 0x5e}} + info := bindataFileInfo{name: "1610960912_add_send_on_personal_topic.up.sql", size: 82, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xac, 0x2f, 0xc4, 0xd, 0xa7, 0x1b, 0x37, 0x30, 0xc2, 0x68, 0xee, 0xde, 0x54, 0x5e, 0xbf, 0x3f, 0xa0, 0xd6, 0xc6, 0x9f, 0xd4, 0x34, 0x12, 0x76, 0x1e, 0x66, 0x4a, 0xfc, 0xf, 0xee, 0xc9}} return a, nil } -var __1612870480_add_datasync_idUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x2c\x49\x2c\xae\xcc\x4b\x8e\xcf\x4c\x51\x70\xf2\xf1\x77\xb2\xe6\xe5\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\xc8\x4c\xa9\x88\x4f\x49\x2c\x81\x29\xf1\xf7\x43\x31\x49\x03\x49\xbb\xa6\x35\x20\x00\x00\xff\xff\x59\xa2\x1e\x80\x70\x00\x00\x00") +var __1612870480_add_datasync_idUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x2c\x49\x2c\xae\xcc\x4b\x8e\xcf\x4c\x51\x70\xf2\xf1\x77\xb2\xe6\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\xc8\x4c\xa9\x88\x4f\x49\x2c\x81\xa9\xf0\xf7\x43\x31\x48\x03\x49\xb7\xa6\x35\x20\x00\x00\xff\xff\x27\x9d\xbe\x49\x6f\x00\x00\x00") func _1612870480_add_datasync_idUpSqlBytes() ([]byte, error) { return bindataRead( @@ -669,12 +669,12 @@ func _1612870480_add_datasync_idUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1612870480_add_datasync_id.up.sql", size: 112, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xac, 0x96, 0xe6, 0x5, 0xe1, 0x27, 0xdc, 0x8f, 0xd3, 0xf8, 0x29, 0xcb, 0xa2, 0xac, 0xc9, 0x91, 0xf1, 0xd8, 0x2, 0x74, 0x0, 0x9, 0x2b, 0x17, 0xf2, 0x1e, 0x69, 0x3e, 0xa2, 0xe9, 0x16}} + info := bindataFileInfo{name: "1612870480_add_datasync_id.up.sql", size: 111, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0x9a, 0xbc, 0xfa, 0xaa, 0x8c, 0x9c, 0x37, 0x67, 0x15, 0x9c, 0x7e, 0x78, 0x75, 0x66, 0x82, 0x18, 0x72, 0x10, 0xbc, 0xd4, 0xab, 0x44, 0xfe, 0x57, 0x85, 0x6d, 0x19, 0xf5, 0x96, 0x8a, 0xbe}} return a, nil } -var __1614152139_add_communities_request_to_joinUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\x6f\xf2\x30\x10\x86\xf7\x48\xf9\x0f\x27\x26\x90\x32\x7c\x3b\x93\x93\xef\x22\xa2\x9a\x18\x19\xd3\x8a\xc9\x4a\x1d\x57\x75\x81\xb8\x8d\x4d\x55\xfe\x7d\x95\xa4\x05\x02\x28\x54\x99\x72\xf7\xdc\xab\xbb\xc7\x09\x47\x22\x10\x04\x89\x29\x82\xb2\xbb\xdd\xbe\x32\xde\x68\x27\x6b\xfd\xb1\xd7\xce\x3b\xe9\xad\x7c\xb3\xa6\x02\x18\x87\x01\x80\x29\x21\xa6\x2c\x86\x9c\x09\xc8\x57\x94\x46\x4d\xf1\x7d\xff\xbc\x35\x4a\x6e\xf4\x01\x1e\x09\x4f\x66\x84\xf7\xfb\x6a\x6b\xd5\x06\xb2\x5c\xf4\xcb\xba\x72\xb2\x2a\x76\xfa\x6a\x08\xfe\x63\x4a\x56\x54\xc0\x68\xd4\xcd\xbf\x16\x5e\x9a\xf2\x3e\xf7\xb3\xff\x41\xde\x5c\xd3\xf9\xc2\xeb\xde\x1a\xc7\x80\x7f\x2d\xb0\xe0\xd9\x9c\xf0\x35\x3c\xe0\x1a\xc6\xa6\x9c\x00\xcb\x21\x61\x79\x4a\xb3\x44\x00\xc7\x05\x25\x09\x86\xc1\x64\x1a\x06\xcd\xd7\x53\xd7\xdc\xf2\xa9\x6b\xf3\x62\x54\xe1\x8d\xad\x64\xad\x95\xad\x4b\xd7\x59\xbb\x27\xe8\xa6\x85\xb6\xd3\x65\xea\x12\x62\xc6\x28\x92\xfc\x7a\xf5\x94\xd0\x25\xf6\x58\x59\xf8\xa1\x2b\xaf\x5f\xe3\x02\xb8\xb8\xc3\xd7\x46\xbb\x21\xbe\xd2\x5f\xbe\xe5\x0e\x7f\x96\x7b\x12\x32\x28\x39\xcb\x97\xc8\x45\x93\xca\x06\x0c\x9f\xc2\xa2\xd6\x64\x74\x34\x11\x9d\x3b\x89\xba\xcb\x27\xb0\x44\x8a\x89\x00\x53\xfe\xe2\xa7\xe8\x66\xe4\xfc\xaf\x1d\xbb\x28\x40\xca\xd9\x1c\x94\xad\x7c\xa1\xbc\x83\xa7\x19\x72\xec\x31\xd3\x30\xf8\x0e\x00\x00\xff\xff\xcd\x3a\x8f\x4e\x57\x03\x00\x00") +var __1614152139_add_communities_request_to_joinUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x6f\xe2\x30\x14\x84\xef\xf9\x15\x4f\x9c\x40\xca\x61\xef\x9c\x9c\xec\x8b\x88\xd6\xd8\xc8\x98\xad\x38\x59\xa9\xe3\xaa\x2e\x60\xb7\xb1\xa9\xca\xbf\xaf\x12\x5a\x20\x40\xa1\x47\xfb\xcd\x8c\x66\xbe\x5c\x20\x91\x08\x92\x64\x14\x41\xfb\xcd\x66\xeb\x6c\xb4\x26\xa8\xc6\xbc\x6d\x4d\x88\x41\x45\xaf\x5e\xbc\x75\x00\xc3\x04\xc0\xd6\x90\x51\x9e\x01\xe3\x12\xd8\x82\xd2\x34\x01\x78\xdd\x3e\xae\xad\x56\x2b\xb3\x83\xff\x44\xe4\x13\x22\x7a\x67\xbd\xf6\x7a\x05\x25\x93\xbd\x5f\xe3\x82\x72\xd5\xc6\x5c\x58\xe0\x2f\x16\x64\x41\x25\x0c\x06\x9d\xfb\xb9\x8a\xca\xd6\x77\x65\x5f\xcd\x77\xea\x5a\xc3\x10\xab\x68\x7a\x15\x0e\xf6\x3f\xed\x7d\x26\xca\x29\x11\x4b\xf8\x87\x4b\x18\xda\x7a\x04\x9c\x41\xce\x59\x41\xcb\x5c\x82\xc0\x19\x25\x39\x26\xa3\x71\x92\x24\x3d\x5c\xed\x86\x77\xd3\xd8\x27\xab\xab\x68\xbd\x53\x8d\xd1\xbe\xa9\x43\x47\xea\x0e\x95\xab\xdb\xdb\xc3\x3e\xd0\xd4\x90\x71\x4e\x91\xb0\xcb\xca\x05\xa1\x73\x3c\x95\xaa\x2a\xde\x18\x77\xc9\xbf\x7f\x3f\x5b\x10\x1b\x6b\xc2\x0d\xb9\x33\x1f\xb1\x93\xed\x7e\x0b\xf4\x48\xe2\x67\xb0\x25\x9b\xa3\x90\x6d\x22\xbf\x81\xf5\x98\x94\x76\x00\xd3\x03\x82\xf4\x14\x46\xba\xdf\x3c\x82\x39\x52\xcc\x25\xd8\xfa\x5b\x7e\x8c\x6e\x2d\xa7\xaf\xce\x76\xf6\x01\x85\xe0\x53\xd0\xde\xc5\x4a\xc7\x00\x0f\x13\x14\xd8\xd3\x8c\x93\xcf\x00\x00\x00\xff\xff\xbf\xa2\xec\x31\x3f\x03\x00\x00") func _1614152139_add_communities_request_to_joinUpSqlBytes() ([]byte, error) { return bindataRead( @@ -689,12 +689,12 @@ func _1614152139_add_communities_request_to_joinUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1614152139_add_communities_request_to_join.up.sql", size: 855, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x78, 0xdf, 0xad, 0x3e, 0x70, 0x60, 0xe9, 0xe6, 0xa4, 0x1e, 0x7a, 0xd3, 0xd5, 0x49, 0x43, 0x81, 0x4a, 0x9b, 0xd, 0x2d, 0x8e, 0xd2, 0x2f, 0x4, 0xc2, 0xc3, 0xf8, 0x2a, 0x4a, 0x94, 0x60}} + info := bindataFileInfo{name: "1614152139_add_communities_request_to_join.up.sql", size: 831, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x3, 0x26, 0xf9, 0x29, 0x50, 0x4f, 0xcd, 0x46, 0xe5, 0xb1, 0x6b, 0xb9, 0x2, 0x40, 0xb1, 0xdf, 0x4a, 0x4c, 0x7a, 0xda, 0x3, 0x35, 0xcd, 0x2d, 0xcc, 0x80, 0x7d, 0x57, 0x5f, 0x3, 0x5c}} return a, nil } -var __1615374373_add_confirmationsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xbd\xaa\x83\x30\x18\xc6\xf1\x5d\xf0\x1e\x9e\x51\xc1\xe1\xec\x67\x8a\x69\x04\x69\x9a\x48\x88\x83\x53\x48\x35\x2d\xa1\x55\x8b\xb1\x14\xef\xbe\xb4\xf4\x6b\x70\xfe\xbd\xef\xf3\xa7\x8a\x11\xcd\xa0\x49\xce\x19\x26\x7b\x33\xbd\x0b\xc1\x1e\x9d\x69\xc7\xe1\xe0\xa7\xde\xce\x7e\x1c\x02\x92\x38\x02\x3a\x3b\xdb\xb0\x0c\xad\xf1\x1d\x72\x2e\x73\x08\xa9\x21\x6a\xce\xb3\x87\xbe\x1f\x57\xf1\x72\xdd\x9f\x7d\x6b\x4e\x6e\x59\xc1\x57\xca\x75\xc6\xce\x28\x85\xfe\x28\x36\xac\x20\x35\xd7\xf8\x7b\xde\x55\xaa\xdc\x11\xd5\x60\xcb\x1a\x24\xdf\x5c\xf6\xb3\x9e\x42\x0a\x50\x29\x0a\x5e\x52\x0d\xc5\x2a\x4e\x28\x8b\xa3\xf4\x3f\x8e\xee\x01\x00\x00\xff\xff\x42\x27\x5a\xd3\xea\x00\x00\x00") +var __1615374373_add_confirmationsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x4f\x0b\x82\x30\x18\xc7\xf1\xfb\x5e\xc5\xef\xa8\xe0\xa1\x7b\xa7\xb9\x26\x48\x6b\x93\x31\x0f\x9e\xc6\xd2\x15\xa3\xd4\x70\x46\xf8\xee\x23\xe8\x1f\xd4\xf9\xf3\x3c\xbf\x2f\xd3\x9c\x1a\x0e\x43\x73\xc1\x31\xb9\x9b\xed\x7d\x8c\xee\xe8\x6d\x3b\x0e\x87\x30\xf5\x6e\x0e\xe3\x10\x91\x10\xa0\x73\xb3\x8b\xcb\xd0\xda\xd0\x21\x17\x2a\x87\x54\x06\xb2\x16\x22\x23\xc0\xeb\xed\x9f\x5d\xae\xfb\x73\x68\xed\xc9\x2f\xbf\xf6\xcc\xf8\xce\xba\x19\xa5\x34\x6f\xc4\x86\x17\xb4\x16\x06\xab\xc7\x59\xa5\xcb\x1d\xd5\x0d\xb6\xbc\x41\xf2\x69\x65\x5f\xdb\x29\x94\x04\x53\xb2\x10\x25\x33\xd0\xbc\x12\x94\x71\x92\xae\xc9\x3d\x00\x00\xff\xff\x2a\xf5\xf5\x4b\xe3\x00\x00\x00") func _1615374373_add_confirmationsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -709,12 +709,12 @@ func _1615374373_add_confirmationsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1615374373_add_confirmations.up.sql", size: 234, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xe4, 0xc8, 0xd3, 0x4c, 0x33, 0xc2, 0xd5, 0xaf, 0xb4, 0xdd, 0xa6, 0x4f, 0xd7, 0xd, 0x49, 0x10, 0x29, 0x41, 0x9f, 0x3d, 0xba, 0xb6, 0x76, 0x30, 0x78, 0x36, 0x82, 0xee, 0xcd, 0xa3, 0x87}} + info := bindataFileInfo{name: "1615374373_add_confirmations.up.sql", size: 227, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xa6, 0x65, 0xc5, 0x1d, 0xb2, 0x77, 0x36, 0xe3, 0x79, 0xda, 0xe8, 0x7a, 0xa4, 0xdf, 0x45, 0xae, 0xd8, 0xb4, 0xba, 0x90, 0xfd, 0x74, 0x71, 0x14, 0x75, 0x73, 0x72, 0xb9, 0x9e, 0x1, 0x81}} return a, nil } -var __1617694931_add_notification_centerUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x6b\xc2\x30\x18\x86\xef\x85\xfe\x87\xf7\xa8\xe0\x65\x67\xd9\x21\x36\x11\xcb\x62\x22\x31\x9d\xf3\x54\x42\x1a\x59\x60\xad\xc5\x84\x81\xff\x7e\xb4\x62\x2b\x74\xcc\x5d\x93\xe7\xfb\xde\xf7\x7b\x08\xd7\x4c\x41\x93\x15\x67\xb0\x9f\x26\x06\x10\x4a\x91\x49\x5e\x6c\x05\x8c\xb5\xae\x8d\xae\xc2\x4a\x4a\xce\x88\x00\x65\x6b\x52\x70\x8d\x93\xf9\x0a\x6e\x99\x26\xc5\x8e\x12\x7d\x1f\xdc\x33\x3d\x4e\xbc\xe2\x65\x99\x26\x69\x92\x29\xd6\x11\xb7\x00\x63\xa3\xff\xf6\xf1\x5a\x5a\xd7\x44\x77\x29\x9b\x73\xf4\x27\x6f\x4d\xf4\xe7\x26\x60\x96\x26\x80\xaf\xf0\x4e\x54\xb6\x21\x0a\x42\x6a\x88\x82\x73\xec\x54\xbe\x25\xea\x88\x37\x76\x5c\x74\x4c\xf4\xb5\x0b\xd1\xd4\x2d\x72\xa1\x07\xac\xff\x7a\xdc\x58\xc6\x6b\xeb\xa6\x48\x57\xb6\x1c\x63\xfa\xb7\x8b\x33\xe3\x91\x43\xee\xfd\xda\x35\xe1\x7b\xd6\x73\x95\x0f\xb5\x0f\xc1\xfd\x0b\x9e\xd8\xfb\x9d\x4d\x93\x39\x0e\xb9\xde\xc8\x42\x43\xc9\x43\x4e\x1f\xbd\xe5\x82\xb2\x8f\x89\xb7\xca\xdf\x5a\x94\x43\x84\x14\x7f\xcb\x9d\x0d\xcd\x17\x43\xaf\xf9\xf3\xa0\xde\xcb\xd3\xdd\x1d\xd5\x2d\xfb\x09\x00\x00\xff\xff\x6e\x45\x94\x58\x4c\x02\x00\x00") +var __1617694931_add_notification_centerUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x6b\x02\x31\x14\x84\xef\xf9\x15\x73\x54\xf0\xd2\xb3\xf4\x10\x37\x11\x97\xc6\x44\x62\xb6\xd6\xd3\x12\xb2\x91\x06\xba\xeb\x62\x42\xc1\x7f\x5f\x52\x71\xb7\xb0\xa5\xf6\xfa\xde\xf7\x66\xe6\x0d\x15\x86\x6b\x18\xba\x12\x1c\xee\xdd\xa6\x08\xca\x18\x0a\x25\xaa\xad\x84\x75\xce\xf7\xc9\x37\x58\x29\x25\x38\x95\x60\x7c\x4d\x2b\x61\x70\xb2\x1f\xd1\x2f\x49\xb5\x63\xd4\xdc\xef\xf6\xdc\x8c\x07\xcf\x78\x5a\x12\x52\x68\x9e\xf7\x37\x75\xeb\x52\xf8\x0c\xe9\x5a\x3b\xdf\x25\x7f\xa9\xbb\x73\x0a\xa7\xe0\x6c\x0a\xe7\x2e\x62\x46\x80\xd0\xe0\x95\xea\x62\x43\x35\xa4\x32\x90\x95\x10\xd8\xe9\x72\x4b\xf5\x11\x2f\xfc\xb8\x20\x40\x0a\xad\x8f\xc9\xb6\x3d\x4a\x69\x06\x2a\x6f\x7e\xca\xd5\xe9\xda\xfb\x09\x91\x63\xd6\xa3\x47\x1e\x5d\xbc\x1d\x9f\x1b\x3c\xef\x5f\xae\xa9\xd8\xf3\x8c\x35\x21\xb6\x21\x46\xff\x1f\x76\xd2\xd9\xef\x28\x99\xe3\x50\x9a\x8d\xaa\x0c\xb4\x3a\x94\x6c\x6c\xab\x94\x8c\xbf\x4d\xda\x6a\xc2\x2d\x41\x3d\xe8\x2b\xf9\x77\xa5\xb3\x21\xf5\x62\x08\x35\x7f\x64\xf3\x5d\xc8\x43\xe5\x4c\xcd\x97\xe4\x2b\x00\x00\xff\xff\x42\x2c\xa0\x0a\x3c\x02\x00\x00") func _1617694931_add_notification_centerUpSqlBytes() ([]byte, error) { return bindataRead( @@ -729,12 +729,12 @@ func _1617694931_add_notification_centerUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1617694931_add_notification_center.up.sql", size: 588, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x28, 0x25, 0xb5, 0xd8, 0x52, 0x1d, 0xfd, 0x92, 0x18, 0xbb, 0xf6, 0xc1, 0xd2, 0x38, 0xc0, 0x98, 0x1f, 0x7f, 0xde, 0x1e, 0x6b, 0x51, 0xbb, 0xc2, 0x3b, 0x1c, 0xfe, 0xac, 0x37, 0xea, 0xb0}} + info := bindataFileInfo{name: "1617694931_add_notification_center.up.sql", size: 572, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x45, 0xc6, 0xc9, 0x73, 0xbb, 0x1f, 0xda, 0xa3, 0x4d, 0x19, 0x98, 0x85, 0x2d, 0xca, 0xda, 0xcc, 0x3b, 0x32, 0xff, 0xc7, 0x7b, 0xe3, 0x9f, 0x9b, 0x2a, 0x93, 0xf5, 0xdf, 0x65, 0x38, 0x91}} return a, nil } -var __1618923660_create_pin_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcd\x41\xaa\xc2\x30\x10\xc6\xf1\x7d\xa1\x77\x98\xe5\x7b\xe0\x0d\x5c\xa5\x65\xd4\x60\x4c\x25\x8d\x62\x57\x21\xa4\xc1\x06\xd3\x36\x98\xaa\xd7\x97\x8a\x88\x15\x74\xfd\xff\x7d\x33\xb9\x40\x22\x11\x24\xc9\x18\x02\x5d\x00\x2f\x24\xe0\x81\x96\xb2\x84\xe0\x3a\xd5\xda\x18\xf5\xd1\x46\xf8\x4b\x13\x00\x57\xc3\x9e\x88\x7c\x45\x04\x6c\x05\xdd\x10\x51\xc1\x1a\xab\xc7\x86\xef\x18\x9b\x8d\xe6\xb9\x50\x6f\x76\xd2\x6f\x8d\x8b\xc1\x9e\xd5\xe0\x5a\x1b\x07\xdd\x06\xa0\x5c\xe2\x12\x3f\x98\x69\xf4\xf0\xf5\x86\xef\x8d\xf6\xea\x27\x31\xbe\x37\x27\x75\xd5\xfe\x62\xc7\x07\xd3\x18\x5c\xd7\xd9\x1a\xb2\xa2\x60\x48\xf8\xab\xa5\xc9\xff\x3c\x4d\xee\x01\x00\x00\xff\xff\xcd\x7d\xb6\xdb\x12\x01\x00\x00") +var __1618923660_create_pin_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\x41\x0b\xc2\x20\x18\xc6\xf1\xbb\x9f\xe2\x3d\x16\xf4\x0d\x3a\xb9\xf1\x56\x92\xb9\x70\x16\xed\x24\xe2\xa4\x49\x6e\x93\x5c\xf5\xf5\xa3\x88\xd8\x0e\x75\xfe\xff\x9e\x27\x97\x48\x15\x82\xa2\x19\x47\x60\x2b\x10\x85\x02\x3c\xb1\x52\x95\x10\x7d\xa7\x5b\x97\x92\x39\xbb\x04\x33\x02\xe0\x6b\x38\x52\x99\x6f\xa8\x84\xbd\x64\x3b\x2a\x2b\xd8\x62\xf5\x9e\x88\x03\xe7\x0b\x02\xf0\xf1\x7a\x44\xc7\xf9\xd1\xf8\x14\xdd\x55\x0f\xbe\x75\x69\x30\x6d\x04\x26\x14\xae\x71\xaa\x6c\x63\x86\x5f\x0f\xa1\xb7\x26\xe8\x7f\xc2\x86\xde\x5e\xf4\xdd\x84\x9b\x7b\xbd\x4f\x5a\xf4\x5d\xe7\x6a\xc8\x8a\x82\x23\x15\xdf\x44\xe6\x4b\xf2\x0c\x00\x00\xff\xff\x44\xad\x25\xa3\x09\x01\x00\x00") func _1618923660_create_pin_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -749,12 +749,12 @@ func _1618923660_create_pin_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1618923660_create_pin_messages.up.sql", size: 274, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe, 0xc4, 0x2b, 0x1b, 0x25, 0x5f, 0x3f, 0xb2, 0x9f, 0x48, 0x93, 0x2c, 0xb4, 0xde, 0xfe, 0x8f, 0xe2, 0x11, 0xb2, 0x70, 0x72, 0xbc, 0xf5, 0xb5, 0x3, 0x86, 0x5, 0xb3, 0x42, 0xa1, 0x9d, 0x82}} + info := bindataFileInfo{name: "1618923660_create_pin_messages.up.sql", size: 265, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x44, 0x3a, 0xbe, 0x30, 0xd2, 0x7e, 0xc0, 0xe2, 0x8e, 0x65, 0x53, 0x54, 0xbb, 0x7a, 0x1c, 0xb3, 0x5d, 0xd2, 0xa6, 0xa9, 0x28, 0xb7, 0xa4, 0x5f, 0x8b, 0x9, 0x5f, 0x17, 0xc1, 0x85, 0x21}} return a, nil } -var __1619094007_add_joined_chat_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xca\xcf\xcc\x4b\x4d\x51\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\xe5\x0a\x0d\x70\x71\x0c\x81\x29\x0f\x76\x0d\x81\xa9\xb3\x55\x30\x50\x08\xf7\x70\x0d\x72\x45\x08\xf8\x85\xfa\xf8\x58\xf3\x72\xf1\x72\x01\x02\x00\x00\xff\xff\x2c\x4e\x05\x3e\x68\x00\x00\x00") +var __1619094007_add_joined_chat_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xca\xcf\xcc\x4b\x4d\x51\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\x0a\x0d\x70\x71\x0c\x81\xa9\x0e\x76\x0d\x81\x29\xb3\x55\x30\x50\x08\xf7\x70\x0d\x72\x45\x08\xf8\x85\xfa\xf8\x58\x73\x71\x01\x02\x00\x00\xff\xff\xa1\x89\x52\x8b\x65\x00\x00\x00") func _1619094007_add_joined_chat_fieldUpSqlBytes() ([]byte, error) { return bindataRead( @@ -769,12 +769,12 @@ func _1619094007_add_joined_chat_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1619094007_add_joined_chat_field.up.sql", size: 104, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0xf8, 0xfd, 0xe7, 0x1b, 0x7c, 0x83, 0x80, 0xe4, 0x6c, 0xb9, 0xa3, 0xca, 0x0, 0x72, 0x5, 0xb6, 0x40, 0xa7, 0x10, 0xf0, 0xca, 0x4d, 0x57, 0x99, 0xac, 0x54, 0xd5, 0xcc, 0x2, 0x7c, 0xd4}} + info := bindataFileInfo{name: "1619094007_add_joined_chat_field.up.sql", size: 101, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x30, 0x81, 0x3a, 0x2f, 0x9f, 0xb3, 0x0, 0x55, 0x8e, 0x1d, 0xa8, 0xb0, 0x68, 0xf0, 0x40, 0x1a, 0x6c, 0xaa, 0xfc, 0x33, 0xd1, 0xd1, 0x55, 0x3f, 0xf2, 0xbd, 0x54, 0xa1, 0x2b, 0x40, 0x95}} return a, nil } -var __1619099821_add_last_synced_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xae\xcc\x4b\x4e\x4d\x89\x2f\xc9\x57\xf0\xf4\x0b\x71\x75\x77\x0d\x52\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\xe5\x22\x46\x6b\x5a\x51\x7e\x2e\x41\xcd\xa5\xc5\xa9\x45\xf1\xb9\xa9\xc5\xc5\x89\xe9\xa9\x28\x86\xa4\x27\x16\xa0\x98\x40\x8a\x3e\x84\xa3\xad\x79\xb9\x00\x01\x00\x00\xff\xff\x86\xed\x41\x2c\xe6\x00\x00\x00") +var __1619099821_add_last_synced_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xae\xcc\x4b\x4e\x4d\x89\x2f\xc9\x57\xf0\xf4\x0b\x71\x75\x77\x0d\x52\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\x22\x46\x67\x5a\x51\x7e\x2e\x21\xbd\xa5\xc5\xa9\x45\xf1\xb9\xa9\xc5\xc5\x89\xe9\xa9\x28\x66\xa4\x27\x16\xa0\x18\x40\x82\x36\x84\x8b\xad\xb9\x00\x01\x00\x00\xff\xff\x9d\x7c\x6a\xe7\xe2\x00\x00\x00") func _1619099821_add_last_synced_fieldUpSqlBytes() ([]byte, error) { return bindataRead( @@ -789,12 +789,12 @@ func _1619099821_add_last_synced_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1619099821_add_last_synced_field.up.sql", size: 230, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x39, 0xba, 0x9b, 0xd8, 0xcb, 0xaa, 0xf4, 0xce, 0x6a, 0xf8, 0x6b, 0xff, 0x66, 0x5d, 0x94, 0x81, 0xca, 0xb3, 0x52, 0x6f, 0xa6, 0xd3, 0xf9, 0xd5, 0x56, 0xb9, 0x2a, 0xa5, 0x82, 0x7c, 0xe6, 0x43}} + info := bindataFileInfo{name: "1619099821_add_last_synced_field.up.sql", size: 226, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0x52, 0x22, 0xe, 0x2f, 0xd7, 0x93, 0x5f, 0x42, 0xc2, 0x93, 0x4, 0x35, 0x6f, 0xc9, 0x19, 0xed, 0x6b, 0x52, 0x6f, 0xae, 0x99, 0xe2, 0x68, 0x3d, 0x4f, 0x40, 0xe, 0xe1, 0xa, 0x47, 0x21}} return a, nil } -var __1621933219_add_mentionedUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\x4d\xcd\x2b\xc9\xcc\xcf\x4b\x4d\x51\x70\xf2\xf7\xf7\x71\x75\xf4\x53\x70\x71\x75\x73\x0c\xf5\x09\x51\x70\x73\xf4\x09\x76\xb5\xe6\xe5\x02\x04\x00\x00\xff\xff\x40\x99\x5b\xc4\x47\x00\x00\x00") +var __1621933219_add_mentionedUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x31\x0a\x80\x30\x0c\x05\xd0\xdd\x53\xfc\x7b\x38\xa5\x36\x9d\x62\x0b\x9a\xce\x22\x18\xc4\xa1\x15\x8c\xde\xdf\x47\xa2\xbc\x40\x29\x08\xe3\x73\x7b\xb6\x66\xee\xfb\x69\x0e\x8a\x11\x53\x91\x3a\x67\x34\xeb\xef\x75\x77\x3b\x10\x4a\x11\xa6\x8c\xc8\x89\xaa\x28\x12\xc9\xca\xe3\xf0\x07\x00\x00\xff\xff\x76\x1d\xdd\xab\x46\x00\x00\x00") func _1621933219_add_mentionedUpSqlBytes() ([]byte, error) { return bindataRead( @@ -809,12 +809,12 @@ func _1621933219_add_mentionedUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1621933219_add_mentioned.up.sql", size: 71, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x18, 0xc6, 0x2d, 0x18, 0x1a, 0x74, 0x24, 0x12, 0x4a, 0xe, 0xc8, 0xb9, 0xf2, 0xab, 0xe6, 0xbd, 0x7b, 0x3e, 0x47, 0x82, 0x88, 0x7e, 0x7f, 0xae, 0x9b, 0x30, 0x7a, 0x1e, 0xdf, 0x94, 0x5}} + info := bindataFileInfo{name: "1621933219_add_mentioned.up.sql", size: 70, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x76, 0x8a, 0xc9, 0x7, 0x8f, 0xa5, 0xcb, 0x12, 0x21, 0x4e, 0xfe, 0x96, 0x77, 0xcf, 0x7f, 0x76, 0x75, 0x36, 0x2c, 0xf8, 0x1d, 0x13, 0xcb, 0xcd, 0x6e, 0x70, 0xbf, 0xf5, 0x93, 0x67, 0xd1}} return a, nil } -var __1622010048_add_unviewed_mentions_countUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x2b\xcb\x4c\x2d\x4f\x4d\x89\xcf\x4d\xcd\x2b\xc9\xcc\xcf\x2b\x8e\x4f\xce\x2f\xcd\x2b\x51\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\xe5\x0a\x0d\x70\x71\x0c\x81\xe9\x0f\x76\x0d\xc1\xa9\xd1\x16\xac\x1c\x10\x00\x00\xff\xff\x70\x96\xba\xb7\x74\x00\x00\x00") +var __1622010048_add_unviewed_mentions_countUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x2b\xcb\x4c\x2d\x4f\x4d\x89\xcf\x4d\xcd\x2b\xc9\xcc\xcf\x2b\x8e\x4f\xce\x2f\xcd\x2b\x51\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\x0a\x0d\x70\x71\x0c\x81\x69\x0f\x76\x0d\xc1\xa9\xcf\x16\xa4\x1a\x10\x00\x00\xff\xff\x0f\xdf\x43\x35\x72\x00\x00\x00") func _1622010048_add_unviewed_mentions_countUpSqlBytes() ([]byte, error) { return bindataRead( @@ -829,12 +829,12 @@ func _1622010048_add_unviewed_mentions_countUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622010048_add_unviewed_mentions_count.up.sql", size: 116, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xae, 0x1b, 0x5b, 0x5c, 0x31, 0xb7, 0x45, 0x2e, 0xbf, 0xb3, 0x97, 0xcd, 0x2f, 0x79, 0xcc, 0xe1, 0x2b, 0xfb, 0x92, 0xc, 0x80, 0xce, 0xa3, 0x8c, 0x38, 0xb2, 0xa4, 0x7a, 0xbd, 0xc1, 0x1b}} + info := bindataFileInfo{name: "1622010048_add_unviewed_mentions_count.up.sql", size: 114, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x16, 0x85, 0xa6, 0x5b, 0xe1, 0x66, 0xb9, 0x84, 0xbe, 0x7f, 0xa, 0x77, 0x23, 0xb9, 0xef, 0x8e, 0x2, 0x8, 0xfc, 0x61, 0xb2, 0x43, 0xa9, 0x63, 0xae, 0xb4, 0xdf, 0x30, 0xb1, 0x61, 0x4b}} return a, nil } -var __1622061278_add_message_activity_center_notification_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xb1\x0a\xc3\x20\x10\x06\xe0\xbd\xd0\x77\xf8\xdf\xa3\xd3\x59\xed\x74\x55\x28\x3a\x8b\xc8\x35\xdc\x10\x85\x78\x04\xf2\xf6\xf9\x88\x73\xf8\x21\x93\xe3\x80\xd6\x4d\x4f\xb5\xab\x76\x19\x26\x47\x1d\xd3\xf4\xaf\xbd\x99\xce\xb1\x40\xde\xe3\x9d\xb8\x7c\x23\x76\x59\xab\x6d\x02\xc7\xc9\xc1\x87\x0f\x15\xce\x88\x85\xf9\xf5\x7c\xdc\x01\x00\x00\xff\xff\x2d\x1f\x66\x45\x51\x00\x00\x00") +var __1622061278_add_message_activity_center_notification_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xb1\x0a\xc3\x20\x10\x06\xe0\xbd\x4f\xf1\xbf\x47\xa7\xb3\xda\xe9\xaa\x50\x74\x16\x91\x4b\xb8\x21\x0a\xf1\x08\xe4\xed\xf3\x11\xe7\xf0\x47\x26\xc7\x01\xad\x9b\x5e\x6a\x77\xed\x32\x4c\xce\x3a\xa6\xe9\xa6\xbd\x99\xce\xb1\x40\xde\xe3\x93\xb8\xfc\x22\x0e\x59\xab\xed\x02\xc7\xc9\xc1\x87\x2f\x15\xce\x88\x85\xf9\xfd\x7a\x02\x00\x00\xff\xff\xa2\xbd\x4d\x28\x50\x00\x00\x00") func _1622061278_add_message_activity_center_notification_fieldUpSqlBytes() ([]byte, error) { return bindataRead( @@ -849,12 +849,12 @@ func _1622061278_add_message_activity_center_notification_fieldUpSql() (*asset, return nil, err } - info := bindataFileInfo{name: "1622061278_add_message_activity_center_notification_field.up.sql", size: 81, mode: os.FileMode(0666), modTime: time.Unix(1707239387, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0x31, 0xb4, 0xef, 0xdd, 0xfa, 0xed, 0x8, 0x5f, 0x10, 0x22, 0xed, 0xb1, 0x5d, 0xee, 0x66, 0x95, 0xa0, 0x91, 0xe2, 0xeb, 0x67, 0xa2, 0xae, 0xc6, 0x53, 0x28, 0xc4, 0x9d, 0xe4, 0xe9, 0x69}} + info := bindataFileInfo{name: "1622061278_add_message_activity_center_notification_field.up.sql", size: 80, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0xc, 0xa6, 0x1f, 0xa5, 0xc6, 0x7c, 0x6f, 0xab, 0x2c, 0x2d, 0xb5, 0xa4, 0xdd, 0xc1, 0xd6, 0x44, 0x83, 0xf9, 0xb1, 0xa5, 0xce, 0x34, 0x3d, 0x2, 0xa9, 0x35, 0xcf, 0xc6, 0xb2, 0x43, 0x37}} return a, nil } -var __1622464518_set_synced_to_fromUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x0d\x70\x71\x0c\x71\x55\x48\xce\x48\x2c\x29\x56\x08\x76\x0d\x51\x28\xae\xcc\x4b\x4e\x4d\x89\x2f\xc9\x57\xb0\x55\x28\x2e\x29\x4a\x2b\xc9\xcc\x4d\xd5\x50\x57\x2d\x56\xd7\x51\x50\xcf\xcb\x2f\x57\xd7\x54\xd0\x55\xb0\x30\x33\x31\x30\xd0\x81\x29\x4d\x2b\xca\xcf\x25\xa4\xd8\x9a\x97\x0b\x10\x00\x00\xff\xff\xd1\x81\x9d\x66\x6a\x00\x00\x00") +var __1622464518_set_synced_to_fromUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x0d\x70\x71\x0c\x71\x55\x48\xce\x48\x2c\x29\x56\x08\x76\x0d\x51\x28\xae\xcc\x4b\x4e\x4d\x89\x2f\xc9\x57\xb0\x55\x28\x2e\x29\x4a\x2b\xc9\xcc\x4d\xd5\x50\x57\x2d\x56\xd7\x51\x50\xcf\xcb\x2f\x57\xd7\x54\xd0\x55\xb0\x30\x33\x31\x30\xd0\x81\x29\x4d\x2b\xca\xcf\x25\xa4\xd8\x9a\x0b\x10\x00\x00\xff\xff\x55\xfe\xb4\x0a\x69\x00\x00\x00") func _1622464518_set_synced_to_fromUpSqlBytes() ([]byte, error) { return bindataRead( @@ -869,12 +869,12 @@ func _1622464518_set_synced_to_fromUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622464518_set_synced_to_from.up.sql", size: 106, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x9f, 0x8a, 0xee, 0x40, 0xe7, 0x53, 0x9b, 0xc5, 0x2f, 0x74, 0x0, 0x8, 0x12, 0x56, 0x16, 0x74, 0xfb, 0x5a, 0x17, 0x1b, 0xd5, 0x4d, 0x71, 0x22, 0x53, 0xdb, 0x4b, 0x19, 0x8b, 0x89, 0x48}} + info := bindataFileInfo{name: "1622464518_set_synced_to_from.up.sql", size: 105, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x3e, 0x2b, 0xa, 0x1e, 0xc7, 0x6d, 0x6f, 0xd1, 0x1d, 0xe8, 0x4b, 0xdd, 0x92, 0x76, 0xea, 0xf2, 0x3e, 0x15, 0x85, 0xc4, 0xc3, 0x31, 0xf1, 0xc0, 0xa2, 0xd7, 0x47, 0xde, 0x4e, 0xfd, 0xc6}} return a, nil } -var __1622464519_add_chat_descriptionUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x2d\x4e\x2e\xca\x2c\x28\xc9\xcc\xcf\x53\x08\x71\x8d\x08\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\xe5\x0a\x0d\x70\x71\x0c\x81\xe9\x0a\x76\x0d\x41\x51\x6e\x0b\x51\x03\x08\x00\x00\xff\xff\x56\xd2\x29\x0d\x5f\x00\x00\x00") +var __1622464519_add_chat_descriptionUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x2d\x4e\x2e\xca\x2c\x28\xc9\xcc\xcf\x53\x08\x71\x8d\x08\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\x0a\x0d\x70\x71\x0c\x81\x69\x0a\x76\x0d\x41\x51\x6d\x0b\x56\x02\x08\x00\x00\xff\xff\x12\x5c\x00\x32\x5d\x00\x00\x00") func _1622464519_add_chat_descriptionUpSqlBytes() ([]byte, error) { return bindataRead( @@ -889,12 +889,12 @@ func _1622464519_add_chat_descriptionUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622464519_add_chat_description.up.sql", size: 95, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xb5, 0x3, 0x1, 0xa9, 0x2b, 0xb5, 0x80, 0x64, 0x77, 0x92, 0x56, 0x6b, 0x68, 0xcd, 0xe5, 0x7e, 0xe7, 0xbf, 0x6, 0x3c, 0x6a, 0xbc, 0x6d, 0x81, 0xf1, 0x14, 0x2d, 0x8e, 0x2a, 0x9a, 0xbd}} + info := bindataFileInfo{name: "1622464519_add_chat_description.up.sql", size: 93, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x2e, 0x89, 0x31, 0xec, 0xef, 0xeb, 0x43, 0xf5, 0x96, 0x6d, 0xce, 0x91, 0x8a, 0x37, 0x2a, 0x11, 0x7a, 0x3f, 0xd9, 0x10, 0xbb, 0xa1, 0xbc, 0x7, 0xe0, 0x3b, 0xa5, 0xf4, 0xa6, 0xf4, 0xa1}} return a, nil } -var __1622622253_add_pinned_by_to_pin_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\xc8\xcc\x8b\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x03\x89\xe7\xa5\xa6\xc4\x27\x55\x2a\x84\xb8\x46\x84\x58\xf3\x72\x01\x02\x00\x00\xff\xff\x22\xb7\x4c\x72\x35\x00\x00\x00") +var __1622622253_add_pinned_by_to_pin_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\xc8\xcc\x8b\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x03\x89\xe7\xa5\xa6\xc4\x27\x55\x2a\x84\xb8\x46\x84\x58\x73\x01\x02\x00\x00\xff\xff\x49\x42\xde\xda\x34\x00\x00\x00") func _1622622253_add_pinned_by_to_pin_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -909,12 +909,12 @@ func _1622622253_add_pinned_by_to_pin_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622622253_add_pinned_by_to_pin_messages.up.sql", size: 53, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x79, 0xeb, 0xe0, 0x45, 0x61, 0xea, 0x1b, 0x67, 0x14, 0x52, 0xe4, 0x9d, 0xe5, 0xb4, 0x52, 0xfd, 0x7e, 0xa2, 0x2c, 0xfa, 0x3, 0xcb, 0xce, 0x77, 0xa6, 0xc3, 0x6b, 0x74, 0x28, 0x71, 0x25}} + info := bindataFileInfo{name: "1622622253_add_pinned_by_to_pin_messages.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0x94, 0xa3, 0x45, 0x91, 0x1e, 0x66, 0xd1, 0x96, 0x5a, 0xaf, 0xfa, 0x29, 0x39, 0xa8, 0x3a, 0x97, 0x4c, 0x65, 0x6, 0x96, 0x90, 0x4c, 0xfe, 0xce, 0x7d, 0x5d, 0xd4, 0xb3, 0x8, 0x6d, 0x5f}} return a, nil } -var __1623938329_add_author_activity_center_notification_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\x4c\x2e\xc9\x2c\xcb\x2c\xa9\x8c\x4f\x4e\xcd\x2b\x49\x2d\x8a\xcf\xcb\x2f\xc9\x4c\xcb\x4c\x4e\x2c\xc9\xcc\xcf\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x2c\x2d\xc9\xc8\x2f\x52\x08\x71\x8d\x08\xb1\xe6\xe5\x02\x04\x00\x00\xff\xff\x57\xf2\x80\xe1\x43\x00\x00\x00") +var __1623938329_add_author_activity_center_notification_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\x4c\x2e\xc9\x2c\xcb\x2c\xa9\x8c\x4f\x4e\xcd\x2b\x49\x2d\x8a\xcf\xcb\x2f\xc9\x4c\xcb\x4c\x4e\x2c\xc9\xcc\xcf\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x2c\x2d\xc9\xc8\x2f\x52\x08\x71\x8d\x08\xb1\xe6\x02\x04\x00\x00\xff\xff\xc4\xaa\x64\x1f\x42\x00\x00\x00") func _1623938329_add_author_activity_center_notification_fieldUpSqlBytes() ([]byte, error) { return bindataRead( @@ -929,12 +929,12 @@ func _1623938329_add_author_activity_center_notification_fieldUpSql() (*asset, e return nil, err } - info := bindataFileInfo{name: "1623938329_add_author_activity_center_notification_field.up.sql", size: 67, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x51, 0x58, 0xca, 0xb3, 0xb4, 0xf7, 0x1, 0x40, 0xf3, 0xb0, 0x7d, 0xef, 0xad, 0x5e, 0x4b, 0x2a, 0x8a, 0x4d, 0xe0, 0x97, 0xe1, 0xed, 0xc4, 0xe0, 0x81, 0x9d, 0x76, 0x6e, 0x3, 0x74, 0x61}} + info := bindataFileInfo{name: "1623938329_add_author_activity_center_notification_field.up.sql", size: 66, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0xe6, 0xa7, 0xd5, 0x26, 0xff, 0xab, 0x92, 0x88, 0xf0, 0xd3, 0x34, 0xd9, 0x2f, 0xe7, 0x18, 0x1a, 0x40, 0xf9, 0xbe, 0x8e, 0xfc, 0xd0, 0x4f, 0x1f, 0x4a, 0xb9, 0x83, 0x3f, 0xa9, 0xde, 0xb}} return a, nil } -var __1623938330_add_edit_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x8a\x83\x30\x10\x86\xef\x81\xbc\xc3\x1c\x15\x7c\x83\x3d\x65\x75\xd8\x95\x8d\x71\x09\xb1\xd4\x53\x10\x33\xb4\xd2\x16\xc1\x44\xe8\xe3\x17\x8b\xc5\x52\xe2\xf9\x9b\xff\x9f\xef\x17\xd2\xa0\x06\x23\xbe\x25\xc2\xec\x69\xb2\x37\xf2\xbe\x3b\x91\x07\x51\x14\x90\xd7\xb2\xa9\x14\x90\x1b\x02\x39\xdb\x05\x28\x95\xc1\x1f\xd4\x5f\x9c\x71\x96\x6b\x14\x06\x63\x59\xbb\x04\x3c\x24\x9c\x01\xf4\xd7\xb1\xbf\xbc\x72\xa0\x6a\x03\xaa\x91\x32\x7b\xa2\x73\x17\xec\xe0\xe0\x20\x74\xfe\x2b\x3e\xe0\xda\xb5\xcb\xfd\x38\x4f\x3d\xc5\x59\xa0\x7b\x88\x93\xbd\xb6\x7f\x5d\x56\x42\xb7\xf0\x87\x6d\x32\xb8\x94\xb3\xf4\x7d\x62\xa9\x0a\x3c\xc6\x26\xda\xcd\xd2\xae\x42\xb5\x8a\x1d\x26\xdb\x61\xb6\xaa\x2f\x1f\x1e\x01\x00\x00\xff\xff\x1a\x1b\x32\x4b\x7e\x01\x00\x00") +var __1623938330_add_edit_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x8a\x83\x30\x14\x45\xf7\xf9\x8a\xb7\x54\xf0\x0f\x5c\xbd\xd1\xc7\x8c\x4c\x8c\x25\xc4\x52\x57\x41\xcc\xa3\x95\xb6\x08\x26\x42\x3f\xbf\x08\x16\x29\xc4\xf5\xb9\xf7\x72\x2e\x4a\x43\x1a\x0c\xfe\x48\x82\xc5\xf3\x6c\x9f\xec\x7d\x7f\x65\x0f\x58\x96\x50\x34\xb2\xad\x15\xb0\x1b\x03\x3b\xdb\x07\xa8\x94\xa1\x5f\xd2\xb9\x10\x85\x26\x34\x14\x6b\xda\x35\xee\x21\x11\x00\xc3\x63\x1a\xee\x9f\x12\xa8\xc6\x80\x6a\xa5\xcc\x56\x72\xeb\x83\x1d\x1d\x9c\x51\x17\x7f\xf8\xcd\xb6\xa1\x23\xec\xa7\x65\x1e\x38\x8a\x02\xbf\x42\x14\x1c\x4c\x9d\x74\x55\xa3\xee\xe0\x9f\xba\x64\x74\xa9\x48\xf7\x63\x95\x2a\xe9\x12\x3b\x66\x77\x3d\xbb\xa9\x34\x2a\x16\x4c\xf6\x60\xb6\x49\xa7\xb9\x78\x07\x00\x00\xff\xff\x6a\x1b\xa7\x21\x71\x01\x00\x00") func _1623938330_add_edit_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -949,12 +949,12 @@ func _1623938330_add_edit_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1623938330_add_edit_messages.up.sql", size: 382, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x37, 0xc1, 0x7c, 0x4e, 0xd4, 0xee, 0xab, 0xf0, 0x20, 0x1c, 0xd7, 0x92, 0x9b, 0xb5, 0x4e, 0x7e, 0x61, 0xe7, 0x32, 0xe3, 0x4a, 0x66, 0x30, 0x49, 0x88, 0x81, 0x53, 0x83, 0xd8, 0xae, 0xf6}} + info := bindataFileInfo{name: "1623938330_add_edit_messages.up.sql", size: 369, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0xd2, 0xce, 0xe, 0x5c, 0x19, 0xbe, 0x5e, 0x29, 0xbe, 0x9b, 0x31, 0x53, 0x76, 0xb2, 0xc8, 0x56, 0xf0, 0x82, 0xfe, 0x7d, 0x6c, 0xe8, 0x5c, 0xe9, 0x7a, 0x5d, 0x5, 0xc4, 0x92, 0x38, 0xe3}} return a, nil } -var __1624978434_add_muted_communityUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\xe4\x96\x96\xa4\xa6\x28\x38\xf9\xfb\xfb\x28\xf8\xf9\x87\x28\xf8\x85\xfa\xf8\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\xb8\x39\xfa\x04\xbb\x5a\xf3\x72\x01\x02\x00\x00\xff\xff\x0e\x02\xc7\xae\x53\x00\x00\x00") +var __1624978434_add_muted_communityUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xc6\x21\x1a\x84\x20\x10\x05\xe0\xbe\xa7\x78\xf7\xd8\x34\x2c\x43\x7a\xcb\x7c\x9f\x0e\xd9\xa0\x04\x02\x1a\x84\xfb\x5b\x6d\xbf\xd0\x75\x81\x4b\xa0\x62\xbf\x7a\x9f\x67\x1b\xad\xde\xdb\xcb\x90\x18\xf1\x33\x96\x7f\x46\x9f\xa3\x1e\x08\x66\x44\x36\x47\x2e\x24\xa2\x26\x29\x74\x24\xe1\xaa\xdf\xcf\x13\x00\x00\xff\xff\x67\xa1\x66\x87\x52\x00\x00\x00") func _1624978434_add_muted_communityUpSqlBytes() ([]byte, error) { return bindataRead( @@ -969,12 +969,12 @@ func _1624978434_add_muted_communityUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1624978434_add_muted_community.up.sql", size: 83, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x91, 0x6c, 0x8b, 0xbc, 0xc5, 0xd6, 0x50, 0xf4, 0xab, 0x5d, 0xde, 0x33, 0xe, 0xe1, 0xe6, 0x9, 0x1a, 0x12, 0xc1, 0x63, 0xa7, 0x8b, 0xa4, 0x64, 0x12, 0xc3, 0x3c, 0x2f, 0xde, 0xb4, 0xb}} + info := bindataFileInfo{name: "1624978434_add_muted_community.up.sql", size: 82, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xdc, 0x6e, 0x6f, 0x97, 0xc7, 0x3d, 0x50, 0xab, 0x80, 0x87, 0x44, 0x43, 0x38, 0xe6, 0xc5, 0xc1, 0x91, 0x26, 0xf, 0x16, 0xe, 0xd9, 0x32, 0x37, 0x25, 0x96, 0x25, 0x6, 0xc8, 0xb5, 0x4a}} return a, nil } -var __1625018910_add_repply_message_activity_center_notification_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x41\x0a\x42\x21\x10\x06\xe0\x7d\xd0\x1d\xfe\x7b\xb4\x1a\xd3\x56\xd3\x13\x42\xd7\x22\x32\xc5\x40\x69\xe8\x10\x78\xfb\x3e\xe2\x14\x1e\x48\xe4\x38\xa0\x36\xd3\x9f\xda\x2e\x4d\xba\xc9\x2c\x7d\x98\x3e\xb5\x55\xd3\xd1\x17\xc8\x7b\x5c\x23\xe7\xfb\x81\x29\xdf\xf7\x2e\x1f\x59\xab\xbe\x04\x8e\xa3\x83\x0f\x37\xca\x9c\x70\x64\xe6\xcb\xf9\xf4\x0f\x00\x00\xff\xff\x98\xe2\xcf\x2a\x57\x00\x00\x00") +var __1625018910_add_repply_message_activity_center_notification_fieldUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x41\x0a\x42\x21\x10\x06\xe0\x7d\xa7\xf8\xef\xd1\x6a\x4c\x5b\x4d\x4f\x08\x5d\x8b\xc8\x14\x03\xa5\xa1\x43\xe0\xed\xdf\x47\x9c\xc2\x13\x89\x1c\x07\xd4\x66\xfa\x57\xdb\xa5\x49\x37\x99\xa5\x0f\xd3\x97\xb6\x6a\x3a\xfa\x02\x79\x8f\x5b\xe4\xfc\x38\x30\xe5\xf7\xd9\xe5\x2b\x6b\xd5\xb7\xc0\x71\x74\xf0\xe1\x4e\x99\x13\x8e\xcc\x7c\xbd\x9c\x01\x00\x00\xff\xff\x74\xe9\xc7\x31\x56\x00\x00\x00") func _1625018910_add_repply_message_activity_center_notification_fieldUpSqlBytes() ([]byte, error) { return bindataRead( @@ -989,12 +989,12 @@ func _1625018910_add_repply_message_activity_center_notification_fieldUpSql() (* return nil, err } - info := bindataFileInfo{name: "1625018910_add_repply_message_activity_center_notification_field.up.sql", size: 87, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xa1, 0x56, 0x79, 0x2d, 0x49, 0xbd, 0x27, 0xd, 0x23, 0xe0, 0x1, 0xa1, 0x68, 0xc4, 0x48, 0x4e, 0x3e, 0x82, 0xb8, 0x79, 0xf2, 0x63, 0x2d, 0xef, 0xe6, 0x3d, 0xa, 0x5a, 0x50, 0xff, 0x5a}} + info := bindataFileInfo{name: "1625018910_add_repply_message_activity_center_notification_field.up.sql", size: 86, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x52, 0x12, 0x40, 0xd8, 0x6f, 0x71, 0x97, 0x46, 0x39, 0xaa, 0x74, 0x41, 0xcd, 0x45, 0x4c, 0xe8, 0xd9, 0xe2, 0x56, 0x8e, 0x78, 0x18, 0x62, 0xf6, 0xa8, 0x36, 0xe9, 0x9a, 0x1f, 0xc, 0xb1}} return a, nil } -var __1625762506_add_deleted_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xdf\x4a\xc3\x30\x14\xc6\xef\x0b\x79\x87\xef\xb2\x83\xbd\x81\x57\x67\xcd\x99\x16\xcf\x12\x89\xa9\xb8\xab\x30\x9a\x83\x16\x27\x83\xa5\x7b\x7f\x51\x0b\x1b\xa3\xbd\xfe\x7d\x7f\x49\x22\x07\x44\xda\x08\xe3\x52\xf4\x9c\xbe\xb5\x94\xc3\x87\x16\x90\xb5\x68\xbc\x74\x3b\x87\xac\x47\x1d\x35\x63\xe3\xbd\xc0\xf2\x96\x3a\x89\xd8\x92\xbc\xf2\x83\xa9\x4c\xd5\x04\xa6\xc8\x73\x21\xe9\xdf\x59\x50\x9b\x0a\xe8\x8f\xa7\xfe\x0b\xad\x8b\xfc\xc8\x01\xce\x47\xb8\x4e\x64\xfd\x87\x3e\x0f\x63\x1a\x32\xde\x28\x34\x4f\x74\x07\xa7\xb4\x45\x5e\x4e\x97\x73\xaf\xf3\x6c\xc9\xf3\x12\xda\x1d\x85\x3d\x9e\x79\x5f\x0f\x79\x65\xaa\xd5\xed\x95\xd6\x59\x7e\x9f\xbf\x92\xae\x6b\xd2\x54\xec\xdd\x9d\x54\xf3\x30\x96\xfa\x2a\x5c\x4f\x13\x7f\x3b\x7e\x02\x00\x00\xff\xff\xc3\x8c\x85\x04\x71\x01\x00\x00") +var __1625762506_add_deleted_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xdf\x4a\xc3\x30\x14\xc6\xef\xf3\x14\xdf\x65\x0b\x7b\x83\x5d\x9d\x35\x67\x5a\x3c\x4b\x24\xa6\xe2\xae\xc2\x68\x0e\x5a\x9c\x0c\x96\xf6\xfd\x45\x2c\x14\xa5\xbd\xfe\x7d\x7f\x49\x22\x07\x44\x3a\x08\x63\x2a\x7a\x4f\x5f\x5a\xca\xe5\x5d\x0b\xc8\x5a\x34\x5e\xba\x93\x43\xd6\xab\x8e\x9a\x71\xf0\x5e\x60\xf9\x48\x9d\x44\x1c\x49\x5e\x78\x6f\x4c\x13\x98\x22\xaf\x45\xa4\x5f\x5f\x41\x65\x80\xfe\x7a\xeb\x3f\xd1\xba\xc8\x0f\x1c\xe0\x7c\x84\xeb\x44\x76\x3f\xe4\xe3\x32\xa6\x21\xe3\x95\x42\xf3\x48\x7f\xd9\x1c\xb5\x85\xcb\x6d\xba\xf7\xba\x8a\x36\x1c\xcf\xa1\x3d\x51\x38\xe3\x89\xcf\xd5\x90\x6b\x53\x2f\x0f\x5a\x67\xf9\x6d\xfd\x41\x5a\x76\xa4\xb9\xd3\xbb\x7f\x52\xcd\xc3\x58\xaa\x45\xb8\x9b\xd7\xd5\x7b\xf3\x1d\x00\x00\xff\xff\xe9\x4c\x40\xd6\x65\x01\x00\x00") func _1625762506_add_deleted_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1009,12 +1009,12 @@ func _1625762506_add_deleted_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1625762506_add_deleted_messages.up.sql", size: 369, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x41, 0xc4, 0x1a, 0x75, 0xad, 0x28, 0xfc, 0xe8, 0x33, 0x25, 0x3c, 0x1e, 0x93, 0xd6, 0x98, 0xc1, 0x13, 0xd5, 0x9d, 0xb0, 0xa6, 0x9f, 0x59, 0xa, 0xaa, 0x5f, 0x4c, 0xcc, 0x39, 0x4d, 0x74}} + info := bindataFileInfo{name: "1625762506_add_deleted_messages.up.sql", size: 357, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x61, 0x42, 0xb6, 0x8c, 0x7f, 0x2d, 0xec, 0xa9, 0x6d, 0x3d, 0x0, 0xa3, 0x32, 0xd8, 0x4a, 0x38, 0x5c, 0x97, 0xfc, 0x68, 0xde, 0xa9, 0xb7, 0xd8, 0xde, 0xb, 0x29, 0x93, 0xdc, 0x81, 0xf8}} return a, nil } -var __1627388946_add_communities_synced_atUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\x14\x57\xe6\x25\xa7\xa6\xc4\x27\x96\x28\x84\x78\xfa\xba\x06\x87\x38\xfa\x06\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x28\xf8\xf9\x87\x28\xf8\x85\xfa\xf8\x58\xf3\x72\x01\x02\x00\x00\xff\xff\x17\x16\xdc\x87\x58\x00\x00\x00") +var __1627388946_add_communities_synced_atUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\x14\x57\xe6\x25\xa7\xa6\xc4\x27\x96\x28\x84\x78\xfa\xba\x06\x87\x38\xfa\x06\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x28\xf8\xf9\x87\x28\xf8\x85\xfa\xf8\x58\x73\x01\x02\x00\x00\xff\xff\x1e\x20\xbb\x45\x57\x00\x00\x00") func _1627388946_add_communities_synced_atUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1029,12 +1029,12 @@ func _1627388946_add_communities_synced_atUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1627388946_add_communities_synced_at.up.sql", size: 88, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xb5, 0x96, 0xd7, 0xcf, 0x13, 0x26, 0x8c, 0x9e, 0xdf, 0xa3, 0x15, 0xa9, 0xf6, 0xfd, 0x10, 0xe3, 0x26, 0x56, 0xe8, 0x3a, 0x57, 0x14, 0x63, 0x7, 0x42, 0xeb, 0xd2, 0x94, 0x90, 0x11, 0xd6}} + info := bindataFileInfo{name: "1627388946_add_communities_synced_at.up.sql", size: 87, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xbd, 0x9b, 0x6a, 0xc9, 0x1a, 0x7a, 0x34, 0xcf, 0x5f, 0x80, 0x9e, 0x8c, 0x1c, 0xc0, 0xec, 0x4e, 0x78, 0xb0, 0x2d, 0x15, 0x77, 0x38, 0x4a, 0x6a, 0x5, 0x84, 0xf5, 0x8d, 0x8b, 0xbe, 0x9}} return a, nil } -var __1628280060_createUsermessagesIndexSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x2f\x4a\x4d\x4c\x81\xf3\x14\xfc\xfd\x50\xa5\x35\x72\xf2\x93\x13\x73\xe2\x93\x33\x12\x4b\xe2\x33\x53\x74\x14\x8a\x53\x53\xf3\x34\xad\x79\xb9\x00\x01\x00\x00\xff\xff\xb7\xa3\x83\x8b\x51\x00\x00\x00") +var __1628280060_createUsermessagesIndexSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x2f\x4a\x4d\x4c\x81\xf3\x14\xfc\xfd\x50\xa5\x35\x72\xf2\x93\x13\x73\xe2\x93\x33\x12\x4b\xe2\x33\x53\x74\x14\x8a\x53\x53\xf3\x34\xad\xb9\x00\x01\x00\x00\xff\xff\xd5\xb8\x15\xac\x50\x00\x00\x00") func _1628280060_createUsermessagesIndexSqlBytes() ([]byte, error) { return bindataRead( @@ -1049,12 +1049,12 @@ func _1628280060_createUsermessagesIndexSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1628280060_create-usermessages-index.sql", size: 81, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xb6, 0x86, 0x45, 0x40, 0x3, 0xba, 0x4b, 0x5, 0xcf, 0xe0, 0x8b, 0xcb, 0xc3, 0xe6, 0x61, 0x7f, 0x69, 0xf5, 0xd9, 0x27, 0x19, 0x15, 0x5b, 0xa2, 0xe0, 0x9e, 0x76, 0xe8, 0xb9, 0x40, 0x46}} + info := bindataFileInfo{name: "1628280060_create-usermessages-index.sql", size: 80, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x6f, 0x70, 0x47, 0x40, 0xab, 0xa8, 0x60, 0xe0, 0xf9, 0x8, 0x7e, 0x19, 0x9d, 0xba, 0x33, 0x16, 0xfc, 0x3c, 0xdc, 0xa8, 0xa6, 0x53, 0x61, 0x39, 0x82, 0x91, 0xcf, 0x69, 0xd8, 0xf2, 0xcf}} return a, nil } -var __1632303896_modify_contacts_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x51\x6f\xa2\x4e\x14\xc5\xdf\x49\xf8\x0e\x37\x4d\x9a\xd6\xa6\x69\x63\xab\xf3\x7f\x30\x3e\x50\x19\xf3\x37\x4b\xa1\x01\xcc\xf6\x6d\x32\x0e\xe3\x3a\x11\x19\xe3\x0c\xec\xfa\xed\x37\x20\x20\xd8\xb2\x65\xd7\x37\xef\xdc\xdf\xe1\xdc\x93\x3b\x63\x39\x21\xf6\x21\xb4\x5e\x1c\x0c\x4c\x26\x9a\x32\xad\xc0\xb2\x6d\x98\x79\xce\xf2\xd5\x05\x1a\x45\x3c\x82\x17\xcf\x73\xb0\xe5\x82\x8d\xe7\xd6\xd2\x09\x61\x6e\x39\x01\x9e\x98\xc6\x57\xf4\x86\x2a\x52\x28\x90\x54\xfd\xb3\xc8\x2a\x96\x6c\xfb\x07\x13\xa6\x31\xf3\xb1\x15\x62\x58\xb8\x36\x7e\x07\xbd\xdb\x93\x5a\xc6\x73\x6b\xc9\xdb\x0d\xff\x75\xab\x8e\x4a\xf3\x1d\xd1\xf4\x87\x1a\x0c\x0a\x76\xf9\x66\xe7\x6c\x4d\x04\x38\x2c\x87\x9e\xc2\x10\xbe\xff\x8f\x7d\x0c\x97\x24\x38\x8b\x6f\x18\x6e\xae\xd1\x10\x8d\xd0\x08\x8d\xd1\xe8\xfa\x66\xf2\xb9\x54\x2b\x81\xaf\x15\xff\x7b\x42\x63\xf4\x8c\xc6\x9d\x7a\x55\x18\x3d\xcc\x3d\x21\x86\xd6\xe8\x19\xad\x6a\x83\xad\x9c\x2a\xd9\x93\x3d\x90\xc9\x39\xa9\xa2\x32\xe8\x04\x5a\x33\x35\xb9\xe6\x41\x37\x5e\x8d\xd0\x24\xcb\x5a\x37\x14\x4b\x46\x63\x92\x08\xb6\x4d\xe8\x8e\xb7\xd8\xf6\xd1\x07\x89\xe6\x3e\x90\x88\xc7\x5c\xf3\xd6\x5a\x14\x86\xef\xab\x60\xef\xe1\xa3\x9c\x69\xd8\xd8\xc1\x21\x86\xb9\xef\xbd\xd6\xa0\x69\x9c\xf2\x77\xbd\xb0\x0c\x0c\x2c\xd7\x2e\xfe\x56\xd3\xd4\x85\x56\x30\x45\xf5\xc2\x35\x4c\xa7\x70\x75\x05\x9e\x7f\xf1\x79\x58\x04\xe0\x2e\x1d\x67\x60\x1a\x50\xfc\x4a\x45\xc0\xef\x8b\x20\x0c\xe0\x36\xc0\x0e\x9e\x85\x30\x2c\xbd\x6d\xa8\x26\x22\xe2\x89\x16\xfa\x78\xbe\x05\xa2\x5c\x15\x91\xef\x8d\x78\x28\xeb\x44\x44\x3d\x65\x79\xa2\x48\xc6\x0f\x62\x2d\x18\xd5\x42\x26\xe4\xc0\x99\x3c\x44\x0a\x32\x68\x2a\x67\x0f\xfb\x74\x15\x0b\x46\xb6\xfc\x78\xca\xed\xf1\xce\x34\x7e\xca\x34\x8e\x60\xc5\x81\x49\x19\x83\x96\x70\xe0\x3b\x99\x71\xd0\x1b\xae\xf2\x62\x9c\xee\x12\x95\x37\x7f\xfa\x0e\xd8\xbe\xf7\x56\x3d\x04\x79\x20\x5d\xef\x45\xb3\xef\x6c\x97\x47\x7f\xdb\x4f\xa8\xee\x83\x44\x3c\x13\x8c\x13\x91\xac\x65\x9f\xf6\xc6\xfd\xec\xd3\xae\x0f\x62\x95\x6a\x4e\xb4\x24\x9a\xc6\xdb\x3e\x48\x4c\x95\x26\xf9\x20\x2c\xdf\x3d\x92\xd1\x38\xed\x95\xd5\x7e\x23\x75\x3e\xc2\xdd\x63\xb1\xe7\xf9\x49\xe7\xb5\x99\x74\x36\x4c\x4c\xe3\x77\x00\x00\x00\xff\xff\x14\xa3\xac\xe1\x49\x06\x00\x00") +var __1632303896_modify_contacts_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x6e\xa3\x30\x10\xbd\xfb\x2b\x46\x95\xaa\x26\x55\xd5\x2a\x6d\xe2\x3d\xa0\x1c\x68\x70\xb4\xd1\x52\xa8\x80\x68\x7b\xb3\x1c\xe3\x6c\xac\x10\x1c\xc5\x86\xdd\xfc\xfd\x0a\x0a\x09\x64\x8b\xca\x96\x1b\x6f\xe6\x3d\xde\x3c\xcd\x60\xbb\x11\x09\x20\xb2\x9f\x5d\x02\x5c\xa5\x86\x71\xa3\xc1\x76\x1c\x98\xf9\xee\xf2\xc5\x03\x16\xc7\x22\x86\x67\xdf\x77\x89\xed\x81\x43\xe6\xf6\xd2\x8d\x60\x6e\xbb\x21\xb1\xd0\x67\xe4\x0d\xd3\xb4\x14\xa0\x99\xfe\xaa\xc6\x2a\x51\x7c\xdb\x6d\x01\xcd\x02\x62\x47\x04\x16\x9e\x43\xde\xc0\xec\xf6\xf4\x24\xe2\x7b\x27\xc1\xc1\x46\xfc\x19\xe8\xa3\x36\x62\x47\x0d\xfb\xa5\x87\x43\x0b\xa1\xe5\xab\x53\x30\x4f\xfd\x21\x89\xaa\x71\xa7\x30\x82\x9f\xdf\x49\x40\xe0\x92\x07\xee\xe2\x07\x81\x9b\x6b\x3c\xc2\x63\x3c\xc6\x13\x3c\xbe\xbe\xb1\x3e\x54\x6a\xcd\xfe\xb9\xe0\xb7\x47\x3c\xc1\x4f\x78\xd2\x25\x57\xc7\xd0\xc3\xda\x23\xe6\x78\x8d\x9f\xf0\xaa\xb6\xd7\x8a\xa8\x56\x7d\x37\x07\x2a\x3d\x87\x54\x22\xc3\xae\xfe\xd6\x40\x4d\x5a\xb3\xd0\xc9\xae\xfd\x37\x89\x15\xd6\xc9\x49\x14\x67\x09\x4d\x25\xdf\xa6\x6c\x27\x5a\xd4\x76\xe9\x52\xa1\xb9\x06\x34\x16\x89\x30\xa2\xb5\x0d\xa5\xdb\xbb\x3a\xd3\x3b\xf8\x47\x0d\x39\xc4\x25\x11\x81\x79\xe0\xbf\x9c\x68\xe8\x3d\x77\xcf\x8f\xaa\xa4\xc0\xf6\x9c\xf2\xb5\x1e\xe4\x04\xb4\x22\x29\xd1\x0b\xc7\x30\x9d\xc2\xd5\x15\xf8\xc1\xc5\xb7\x61\x11\x82\xb7\x74\xdd\x21\x82\xf2\xa9\x04\x81\xbc\x2d\xc2\x28\x84\x41\x48\x5c\x32\x8b\x60\x54\x39\xdb\x30\x43\x65\x2c\x52\x23\xcd\xf1\xbc\xf8\xb2\xda\x10\x59\xac\x8b\xbc\xaf\x70\x2a\xe3\x7e\xaa\x22\xd5\x34\x17\x07\xb9\x96\x9c\x19\xa9\x52\x7a\x10\x5c\x1d\x62\x0d\x39\x34\x85\xf3\xfb\x7d\xb6\x4a\x24\xa7\x5b\x71\x2c\x22\x7b\xb8\x45\xbf\x55\x96\xc4\xb0\x12\xc0\x95\x4a\xc0\x28\x38\x88\x9d\xca\x05\x98\x8d\xd0\x05\x98\x64\xbb\x54\xa3\x8f\x4f\xde\x09\xfc\xd7\xfa\xe6\x8b\x24\x3a\xfe\x0c\xcd\xb6\xb3\x51\x11\xff\x67\x3b\x65\xa6\x07\x23\x16\xb9\xe4\x82\xca\x74\xad\x7a\x74\x37\x8e\xb1\x47\xb7\x39\xc8\x55\x66\x04\x35\x8a\x1a\x96\x6c\x7b\x30\x12\xa6\x0d\x2d\x86\xe0\xc5\xba\xd1\x9c\x25\x59\x9f\x94\xf6\x1b\x65\x94\x85\x6e\x1f\x10\x2a\xe1\xce\x13\xb1\xba\xea\x16\xfa\x1b\x00\x00\xff\xff\xc7\x82\x3b\x63\x26\x06\x00\x00") func _1632303896_modify_contacts_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1069,12 +1069,12 @@ func _1632303896_modify_contacts_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1632303896_modify_contacts_table.up.sql", size: 1609, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0x22, 0x98, 0xc7, 0x26, 0x66, 0x48, 0x72, 0x7f, 0x1d, 0x2a, 0xc7, 0x51, 0x21, 0xdf, 0x72, 0xa2, 0x9a, 0xd1, 0xb3, 0x1a, 0x99, 0xbc, 0xa8, 0xe, 0xf1, 0x93, 0xdf, 0xa1, 0xae, 0x28, 0xb2}} + info := bindataFileInfo{name: "1632303896_modify_contacts_table.up.sql", size: 1574, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x1e, 0x6c, 0x3c, 0xd, 0xd7, 0x7d, 0xbb, 0x19, 0xbc, 0xe4, 0x7, 0xfd, 0xf8, 0x66, 0x6d, 0x78, 0xf6, 0x4, 0xe6, 0x51, 0xe4, 0xe6, 0xdc, 0xe, 0x5a, 0x2e, 0xac, 0xe6, 0xe7, 0x24, 0x69}} return a, nil } -var __1633349838_add_emoji_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcd\xcd\xcf\xca\x54\x08\x71\x8d\x08\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\x25\x92\x66\x8d\x35\x00\x00\x00") +var __1633349838_add_emoji_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcd\xcd\xcf\xca\x54\x08\x71\x8d\x08\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\x02\x04\x00\x00\xff\xff\x90\x35\x91\xff\x34\x00\x00\x00") func _1633349838_add_emoji_column_in_chatsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1089,12 +1089,12 @@ func _1633349838_add_emoji_column_in_chatsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1633349838_add_emoji_column_in_chats.up.sql", size: 53, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xdd, 0xe2, 0x86, 0x15, 0xd0, 0xb6, 0xe3, 0x9c, 0x90, 0x9c, 0xa8, 0x44, 0x80, 0xea, 0x33, 0x6a, 0x5c, 0x5a, 0x2a, 0x9a, 0x9b, 0xc7, 0x1d, 0x36, 0x27, 0x52, 0x8e, 0xc1, 0x3f, 0xd5, 0xc9}} + info := bindataFileInfo{name: "1633349838_add_emoji_column_in_chats.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x33, 0xcb, 0x3b, 0xa9, 0x99, 0x77, 0x6a, 0xea, 0xc4, 0x39, 0xd7, 0xa1, 0x49, 0xa7, 0xdf, 0xff, 0x72, 0xda, 0x34, 0x21, 0x67, 0x66, 0xca, 0x65, 0x46, 0x1, 0xa6, 0x4e, 0xf9, 0x38, 0x86}} return a, nil } -var __1634831235_add_highlight_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xc8\x4c\xcf\xc8\xc9\x4c\xcf\x28\x51\x70\xf2\xf7\xf7\x71\x75\xf4\x53\x70\x71\x75\x73\x0c\xf5\x09\x51\x70\x73\xf4\x09\x76\xb5\xe6\xe5\x02\x04\x00\x00\xff\xff\xe6\x90\x2f\x06\x3f\x00\x00\x00") +var __1634831235_add_highlight_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xc8\x4c\xcf\xc8\xc9\x4c\xcf\x28\x51\x70\xf2\xf7\xf7\x71\x75\xf4\x53\x70\x71\x75\x73\x0c\xf5\x09\x51\x70\x73\xf4\x09\x76\xb5\xe6\x02\x04\x00\x00\xff\xff\xca\x1c\x2b\x08\x3e\x00\x00\x00") func _1634831235_add_highlight_column_in_chatsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1109,12 +1109,12 @@ func _1634831235_add_highlight_column_in_chatsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1634831235_add_highlight_column_in_chats.up.sql", size: 63, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x2b, 0x75, 0xc5, 0x28, 0xe7, 0x4e, 0x77, 0x81, 0x26, 0xd3, 0x52, 0x8a, 0x82, 0xf5, 0x68, 0xaa, 0x6, 0xd4, 0x3f, 0x11, 0x63, 0xaa, 0x32, 0x2b, 0x14, 0x43, 0x90, 0xe4, 0x56, 0xe9, 0x6c}} + info := bindataFileInfo{name: "1634831235_add_highlight_column_in_chats.up.sql", size: 62, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x63, 0x5c, 0x73, 0x19, 0x83, 0xbd, 0x35, 0x80, 0x9f, 0x66, 0xec, 0x4c, 0xbc, 0x9d, 0x2d, 0x52, 0x91, 0x6d, 0xb3, 0x2b, 0x87, 0xde, 0x24, 0x46, 0x5c, 0xd, 0xfd, 0x78, 0xf5, 0xe3, 0xe9}} return a, nil } -var __1634896007_add_last_updated_locally_and_removedUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x4a\xcd\xcd\x2f\x4b\x4d\x51\x70\xf2\xf7\xf7\x71\x75\xf4\x53\x70\x71\x75\x73\x0c\xf5\x09\x51\x70\x73\xf4\x09\x76\xb5\xe6\xe5\x22\xa4\x3f\x27\xb1\xb8\x24\xbe\xb4\x20\x25\xb1\x24\x35\x25\x3e\x27\x3f\x39\x31\x27\xa7\x52\xc1\xd3\x2f\x04\x6e\x90\x81\x35\x2f\x17\x20\x00\x00\xff\xff\x0b\x80\xdb\x8f\x85\x00\x00\x00") +var __1634896007_add_last_updated_locally_and_removedUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x4a\xcd\xcd\x2f\x4b\x4d\x51\x70\xf2\xf7\xf7\x71\x75\xf4\x53\x70\x71\x75\x73\x0c\xf5\x09\x51\x70\x73\xf4\x09\x76\xb5\xe6\x22\xa4\x3d\x27\xb1\xb8\x24\xbe\xb4\x20\x25\xb1\x24\x35\x25\x3e\x27\x3f\x39\x31\x27\xa7\x52\xc1\xd3\x2f\x04\x6e\x8e\x81\x35\x17\x20\x00\x00\xff\xff\xab\xe8\x7d\xf0\x83\x00\x00\x00") func _1634896007_add_last_updated_locally_and_removedUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1129,12 +1129,12 @@ func _1634896007_add_last_updated_locally_and_removedUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1634896007_add_last_updated_locally_and_removed.up.sql", size: 133, mode: os.FileMode(0666), modTime: time.Unix(1702977675, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xf0, 0x3a, 0x5d, 0xc7, 0xb1, 0xed, 0xe2, 0xff, 0xbf, 0x7c, 0xa, 0x68, 0x6e, 0x72, 0x19, 0x93, 0x15, 0x21, 0xf7, 0x65, 0x3a, 0x3, 0x32, 0xa7, 0xc9, 0x6f, 0x46, 0x28, 0x71, 0xce, 0x82}} + info := bindataFileInfo{name: "1634896007_add_last_updated_locally_and_removed.up.sql", size: 131, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xa8, 0x34, 0xe2, 0xc0, 0x62, 0xc8, 0xd6, 0x5a, 0x87, 0xe3, 0x70, 0xe1, 0xc4, 0x16, 0x9c, 0x60, 0x2e, 0x98, 0xf0, 0x91, 0x84, 0xbe, 0xe0, 0xdf, 0x3e, 0x4d, 0x24, 0xc4, 0x6c, 0x40, 0x17}} return a, nil } -var __1635840039_add_clock_read_at_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x0a\x82\x30\x18\x00\xe0\xbb\xe0\x3b\xfc\xc7\x02\x0f\xdd\xa5\xc3\x72\x0b\x84\x35\xc3\x26\x74\xfb\x19\xdb\x4f\x49\x53\xc1\x69\xf4\xf8\xb1\x20\xb1\x4b\x0f\xf0\x7d\x4c\x6a\x51\x83\x66\x07\x29\xc0\xde\xcd\x14\x80\x71\x0e\x45\x25\x9b\x93\x82\x91\x8c\xc3\x8e\x42\x30\x37\x0a\x68\x26\xb4\x7e\xb0\x0f\x7c\x1a\x3f\x13\x94\x4a\x03\x17\x47\xd6\x48\x0d\xbb\x3c\x4d\x9a\x33\x67\xfa\x9b\x5c\x84\xfe\xaf\xf7\x1f\x53\xd4\x22\x9a\x52\x71\x71\x05\x3f\x58\xe3\x31\x7a\x6c\x1d\x06\xa2\x1e\x3b\xea\xa7\x76\xe8\xc9\xad\x2d\xb6\xee\x05\x95\x82\x39\xd0\xb8\xfc\x9b\x1f\x9d\x41\xe4\x19\x2c\x3e\x83\x55\xb0\xcd\xd3\xe4\x1d\x00\x00\xff\xff\xd7\x85\x34\xd3\xf8\x00\x00\x00") +var __1635840039_add_clock_read_at_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x6a\x83\x30\x18\x07\xf0\xbb\x4f\xf1\x3f\x6e\xe0\x61\x77\xd9\x21\x33\x19\x08\x59\x1c\x2e\xc2\x6e\x1f\x21\xf9\x68\xa5\x51\xc1\x68\xe9\xe3\x97\x1c\x2a\xf6\xd2\x07\xf8\xfd\x84\xb6\xaa\x83\x15\x5f\x5a\xc1\x9f\xdd\x9a\x20\xa4\x44\xdd\xea\xfe\xc7\x60\x61\x17\x68\xe4\x94\xdc\x89\x13\xb9\x95\x7c\x9c\xfd\x85\xae\x2e\x6e\x8c\xc6\x58\x48\xf5\x2d\x7a\x6d\xf1\x51\x15\xfd\xaf\x14\xf6\x71\xfc\x29\xfb\x1a\x7f\x66\x52\x77\x2a\x93\xc6\x48\xf5\x8f\x38\x7b\x17\x29\x73\x1a\x02\x25\xe6\x89\x46\x9e\xd6\x61\x9e\x38\x1c\x29\x0d\xe1\x86\xd6\x60\x4b\xbc\xec\xfd\xdb\x93\x2e\x91\x79\x89\xdd\x97\x38\x04\xef\x55\x71\x0f\x00\x00\xff\xff\xab\x82\x7c\xe1\xf5\x00\x00\x00") func _1635840039_add_clock_read_at_column_in_chatsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1149,12 +1149,12 @@ func _1635840039_add_clock_read_at_column_in_chatsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1635840039_add_clock_read_at_column_in_chats.up.sql", size: 248, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xdb, 0x40, 0x91, 0x7d, 0x11, 0xfc, 0xd1, 0x79, 0x21, 0xa0, 0x4d, 0x77, 0x4e, 0xa, 0xfb, 0x84, 0x1c, 0xf7, 0x14, 0xf, 0x3c, 0xcb, 0x6d, 0x73, 0xfd, 0xb5, 0x74, 0xbc, 0xcd, 0xd6, 0xf2}} + info := bindataFileInfo{name: "1635840039_add_clock_read_at_column_in_chats.up.sql", size: 245, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0xba, 0x3f, 0xba, 0x1a, 0x71, 0xa8, 0x9, 0x19, 0xbe, 0x1e, 0x38, 0x50, 0x30, 0x3a, 0x52, 0x15, 0x29, 0xee, 0x49, 0x19, 0x6f, 0x53, 0xc2, 0xc6, 0x6c, 0xd9, 0x80, 0x7e, 0xb9, 0x58, 0x7a}} return a, nil } -var __1637852321_add_received_invitation_admin_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x4a\x4d\x4e\xcd\x2c\x4b\x4d\x89\xcf\xcc\x2b\xcb\x2c\x49\x2c\xc9\xcc\xcf\x8b\x4f\x4c\xc9\xcd\xcc\x53\x08\x71\x8d\x08\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\x70\xb2\x99\x33\x49\x00\x00\x00") +var __1637852321_add_received_invitation_admin_column_in_chatsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x4a\x4d\x4e\xcd\x2c\x4b\x4d\x89\xcf\xcc\x2b\xcb\x2c\x49\x2c\xc9\xcc\xcf\x8b\x4f\x4c\xc9\xcd\xcc\x53\x08\x71\x8d\x08\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\x02\x04\x00\x00\xff\xff\xe2\x70\xa1\x0b\x48\x00\x00\x00") func _1637852321_add_received_invitation_admin_column_in_chatsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1169,12 +1169,12 @@ func _1637852321_add_received_invitation_admin_column_in_chatsUpSql() (*asset, e return nil, err } - info := bindataFileInfo{name: "1637852321_add_received_invitation_admin_column_in_chats.up.sql", size: 73, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x8, 0x20, 0x73, 0xdb, 0x80, 0x88, 0x12, 0xa1, 0x2a, 0x6d, 0x35, 0xf1, 0xed, 0xb, 0xdb, 0xe8, 0xb5, 0x74, 0x14, 0xcc, 0xb, 0xfc, 0x39, 0x11, 0x88, 0x1, 0xf7, 0x67, 0x8d, 0xa5, 0x6e}} + info := bindataFileInfo{name: "1637852321_add_received_invitation_admin_column_in_chats.up.sql", size: 72, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0x8b, 0x92, 0x56, 0x83, 0x70, 0x7f, 0x6, 0xb2, 0xd, 0x1c, 0x2f, 0xcc, 0x93, 0xc3, 0x85, 0x8c, 0xc2, 0x38, 0x94, 0x7e, 0x88, 0x3f, 0x39, 0x34, 0xf8, 0x90, 0xcf, 0x83, 0x68, 0x3d, 0xe5}} return a, nil } -var __1645034601_display_nameUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xc9\x2c\x2e\xc8\x49\xac\x8c\xcf\x4b\xcc\x4d\x55\x08\x71\x8d\x08\x51\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\xe5\x0a\x0d\x70\x71\x0c\x41\x32\x22\xd8\x35\x04\x55\xaf\x2d\x44\x1d\x20\x00\x00\xff\xff\xbe\x7e\x0b\x52\x70\x00\x00\x00") +var __1645034601_display_nameUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xc9\x2c\x2e\xc8\x49\xac\x8c\xcf\x4b\xcc\x4d\x55\x08\x71\x8d\x08\x51\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\x0a\x0d\x70\x71\x0c\x41\x32\x21\xd8\x35\x04\x55\xab\x2d\x58\x19\x20\x00\x00\xff\xff\xb1\x9a\x55\xd1\x6e\x00\x00\x00") func _1645034601_display_nameUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1189,12 +1189,12 @@ func _1645034601_display_nameUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1645034601_display_name.up.sql", size: 112, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x6a, 0x1c, 0x63, 0x8c, 0x9a, 0x96, 0x64, 0x81, 0xea, 0x60, 0xc, 0xa1, 0x85, 0xf9, 0x6f, 0xf6, 0xb4, 0x60, 0x1c, 0x51, 0xc3, 0x90, 0x9e, 0x5c, 0xc9, 0xed, 0x4d, 0x1a, 0x75, 0x90, 0x51}} + info := bindataFileInfo{name: "1645034601_display_name.up.sql", size: 110, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0xfc, 0xda, 0x70, 0x53, 0x19, 0x90, 0x20, 0x4, 0x1c, 0x99, 0x42, 0x53, 0x1a, 0xd6, 0xb8, 0xbb, 0x8a, 0xe8, 0xbe, 0xcc, 0xb7, 0xc, 0x7f, 0x73, 0x50, 0x18, 0xf1, 0x8b, 0x18, 0x54, 0x64}} return a, nil } -var __1645034602_add_mutual_contact_requestUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6a\xc3\x30\x0c\x86\xef\x06\xbf\x83\x8e\x29\xf4\x0d\x7a\x72\x12\xc3\xc2\x5c\x67\x18\x77\xac\xa7\x60\x32\x11\x4c\x97\x74\x8b\x94\xc3\xde\x7e\x18\x92\x51\x8f\x75\xec\xac\xff\xfb\xf4\x5b\xae\x9c\x56\x5e\x83\x57\xa5\xd1\xd0\x5f\x27\x0e\x3d\x77\x33\x7e\x2c\x48\x4c\x50\x48\x01\x40\x71\x98\xe2\x34\x74\x17\xfc\x84\x67\xe5\xaa\x07\xe5\xc0\xb6\x1e\xec\xc9\x98\x7d\x0a\x6c\xd8\xdd\x40\x32\x04\x5e\x66\x84\xd2\xb4\x65\x3e\xe3\x38\x22\x71\x18\xdf\xa1\xb1\x3e\x1f\x3d\xb9\xe6\xa8\xdc\x19\x1e\xf5\x19\x8a\x9b\x16\xfb\xdb\x8d\x3b\x29\x76\x07\x29\xa4\x50\xc6\x6b\x97\x3f\x84\x40\xd5\x35\x54\xad\x39\x1d\xed\x37\x33\x22\x51\x18\xb0\x8b\xaf\x5b\xd9\xc3\xff\xe1\xf5\x32\x5d\xff\x76\xed\x2f\xa9\xf1\x0f\x76\x21\x9c\xb7\x0d\x7f\x0a\x88\x03\xe3\x2a\x90\x62\xfd\x85\xc6\xd6\xfa\xe5\x4e\xb4\xb5\xb9\xbc\xf8\x35\x96\x4e\xf1\x15\x00\x00\xff\xff\x6d\x61\xc9\x11\xd3\x01\x00\x00") +var __1645034602_add_mutual_contact_requestUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x3d\xda\x90\x3f\xf0\x49\xb6\x05\x35\x55\xa4\x22\x94\xd2\x9c\x84\x50\x17\x23\x52\x3b\xad\x77\x7d\xe8\xdf\x97\xd0\x24\x44\xd0\x94\x9c\x67\xde\xec\xec\x74\x4e\x49\xaf\xc0\xcb\x56\x2b\x48\xc7\x99\x63\xe2\xb0\xe0\xd7\x8a\xc4\x04\x95\x00\xa0\x3c\xce\x79\x1e\xc3\x01\xbf\xe1\x55\xba\xee\x49\x3a\x30\xd6\x83\xd9\x69\xbd\x11\x70\x85\xee\xe9\x27\x3e\xf2\xba\x20\xb4\xda\xb6\x85\xc4\x79\x42\xe2\x38\x7d\xc2\x60\x7c\xa1\xbc\xb8\x61\x2b\xdd\x1e\x9e\xd5\x1e\xaa\x9b\x06\x9b\xdb\x73\xb5\xa8\x1b\x21\xa4\xf6\xca\x95\x0f\x10\xc8\xbe\x87\xce\xea\xdd\xd6\x5c\x81\x09\x89\xe2\x88\x21\xbf\x5f\x6a\x36\x0f\xb3\xe7\x41\x42\xfa\x38\xa6\xc3\xa9\x6c\x89\xae\x84\xcb\x25\xff\x5f\x9e\x38\x32\xfe\xf2\xe2\xbc\xfc\x60\x7a\xf5\x76\xc7\x68\x4d\x19\x5d\xfd\x69\xab\x1b\xf1\x13\x00\x00\xff\xff\xdb\x9e\x87\x1a\xc6\x01\x00\x00") func _1645034602_add_mutual_contact_requestUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1209,12 +1209,12 @@ func _1645034602_add_mutual_contact_requestUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1645034602_add_mutual_contact_request.up.sql", size: 467, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x75, 0x2, 0x8b, 0x9b, 0x52, 0x96, 0x22, 0x5f, 0x54, 0xb5, 0x5c, 0xf0, 0xe4, 0xba, 0xfb, 0x7c, 0xe1, 0xb2, 0xc9, 0xff, 0xc2, 0x6a, 0xd3, 0xfe, 0xa5, 0x14, 0x29, 0x5e, 0xff, 0xb1, 0xd0}} + info := bindataFileInfo{name: "1645034602_add_mutual_contact_request.up.sql", size: 454, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xe0, 0x5d, 0x68, 0xb8, 0x50, 0xa4, 0xbb, 0x3e, 0x4f, 0x2, 0x87, 0xad, 0x87, 0x6e, 0x38, 0xdf, 0xc8, 0x4c, 0xe2, 0x5f, 0xd1, 0x6, 0xdc, 0xe7, 0xbd, 0x4a, 0x9c, 0xf3, 0x91, 0xa1, 0x51}} return a, nil } -var __1650373957_add_contact_request_stateUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x83\x89\xc5\x17\xa5\x16\x96\xa6\x16\x97\xc4\x17\x97\x24\x96\xa4\x2a\x78\xfa\x85\x58\xf3\x72\x01\x02\x00\x00\xff\xff\x65\xa7\x53\x74\x3c\x00\x00\x00") +var __1650373957_add_contact_request_stateUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x83\x89\xc5\x17\xa5\x16\x96\xa6\x16\x97\xc4\x17\x97\x24\x96\xa4\x2a\x78\xfa\x85\x58\x73\x01\x02\x00\x00\xff\xff\x0c\x1a\x7b\x73\x3b\x00\x00\x00") func _1650373957_add_contact_request_stateUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1229,12 +1229,12 @@ func _1650373957_add_contact_request_stateUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1650373957_add_contact_request_state.up.sql", size: 60, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x78, 0xcf, 0x38, 0xa6, 0x8, 0x93, 0xd1, 0x5a, 0x2, 0x35, 0xdf, 0x34, 0xce, 0x36, 0xc0, 0xac, 0xdd, 0x8d, 0x3e, 0x9b, 0x40, 0x11, 0xe6, 0x88, 0x57, 0xd7, 0x78, 0xac, 0x78, 0x8b, 0x6f}} + info := bindataFileInfo{name: "1650373957_add_contact_request_state.up.sql", size: 59, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xc1, 0x3f, 0x29, 0xe, 0x19, 0x86, 0x1a, 0x4c, 0x6c, 0x2a, 0x90, 0x9d, 0xdf, 0xb1, 0xb, 0x72, 0x25, 0xcd, 0x6c, 0x5f, 0xd, 0x51, 0x9e, 0x85, 0xc0, 0x9, 0xb7, 0xbc, 0x87, 0x23, 0xec}} return a, nil } -var __1656958989_contact_verificationUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6e\xe2\x30\x18\x84\xef\x91\xf2\x0e\x73\x04\x89\x03\xf7\x68\x0f\xde\xc4\x68\xad\x35\x0e\x75\x7e\x0b\x38\xa1\x28\x98\x36\x12\x4d\x20\x76\xfa\xfc\x95\x03\x14\x5a\x41\xb9\x26\x33\xe3\xef\xd3\xcf\x24\x71\x0d\x62\x7f\x25\x47\xd5\x36\xbe\xac\xbc\x03\xcb\x32\xa4\xb9\x34\x73\x85\x0f\xdb\xd5\xbb\xba\x2a\x7d\xdd\x36\x1b\xe7\x4b\xdf\x3b\x08\x45\xc8\xf8\x8c\x19\x49\x98\x26\x71\x14\x47\x66\x91\x31\xba\x19\x28\x38\xdd\x6d\xfe\xc1\x34\x01\x42\x23\xd5\x3c\x34\x4e\x0f\x8b\x19\x54\x4e\xe0\x2b\x51\x50\x01\xdf\xf5\xce\xdb\xed\xa6\x77\xb6\x73\x18\xc5\x11\x50\x6f\x41\x7c\x45\x58\x68\x31\x67\x7a\x8d\xff\x7c\x8d\x5c\x21\xcd\xd5\x4c\x8a\x94\xa0\xf9\x42\xb2\x94\x4f\x42\x76\xa8\xdf\xa2\x86\x69\x65\xa4\xbc\x32\x0f\xb9\xfe\xb0\x2d\xc3\x33\xa5\x7f\x90\x8a\xa3\x31\x96\x82\xfe\xe5\x86\xa0\xf3\xa5\xc8\x92\x27\xe0\xdf\x8c\x3b\x7b\xec\xad\xf3\x67\x81\x5d\xd7\xbe\x0f\x42\x83\xc7\x89\xb3\xfd\xf1\xa1\x7a\x2b\xf7\x7b\xdb\xbc\xda\x93\xeb\x05\x68\xf8\x77\x5e\xfb\x0d\xf7\x9c\x73\x87\xb6\x71\xf6\xba\xda\xd9\xc3\xbe\x7e\xda\x7b\x74\xe6\x07\xf1\x34\x57\x05\x69\x16\x12\xc1\x2c\xa8\x34\xf5\xb1\xb7\x30\x4a\xbc\x18\x8e\xd1\x97\xef\xe4\xe2\x39\xbe\x77\xb0\x38\x1a\x27\x71\xf4\x19\x00\x00\xff\xff\x23\x0c\xd1\x5f\x84\x02\x00\x00") +var __1656958989_contact_verificationUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6e\xea\x30\x10\x45\xf7\xfe\x8a\xbb\x04\x89\x05\xfb\xe8\x2d\xfc\x12\xa3\x5a\x35\x0e\x75\xc6\x02\x56\x28\x0a\xa6\x8d\x44\x13\x88\x9d\x7e\x7f\x65\x52\x28\x48\x40\x97\x96\xef\x9d\x39\x47\xc3\x15\x09\x03\xe2\xff\x95\x40\xd5\x36\xa1\xac\x82\x07\xcf\x32\xa4\xb9\xb2\x73\x8d\x2f\xd7\xd5\xbb\xba\x2a\x43\xdd\x36\x1b\x1f\xca\xd0\x7b\x48\x4d\xc8\xc4\x8c\x5b\x45\x98\x26\x8c\xd9\x45\xc6\xe9\xaa\x5e\x08\xba\xdb\xfb\x87\x69\x02\x30\x96\x1a\x11\xf3\xc3\x52\x39\x83\xce\x09\x62\x25\x0b\x2a\x10\xba\xde\x07\xb7\xdd\xf4\xde\x75\x1e\x23\x06\xd4\x5b\x90\x58\x11\x16\x46\xce\xb9\x59\xe3\x55\xac\x91\x6b\xa4\xb9\x9e\x29\x99\x12\x8c\x58\x28\x9e\x8a\x09\xc3\x50\xbe\x86\x8c\x83\xb5\x55\xea\x97\x36\xc6\xfa\xc3\xb6\x8c\x3b\xca\xf0\x20\xc4\xc6\x58\x4a\x7a\xc9\x2d\xc1\xe4\x4b\x99\x25\x4f\x91\x6f\x4c\x3b\x77\xec\x9d\x0f\x03\xfa\xae\x6b\x3f\x4f\x26\x27\x83\x13\x61\x7b\xfb\xae\x3e\xca\xfd\xde\x35\xef\x6e\x70\x3c\xa3\xc4\xaf\x9f\x49\xcf\x38\x87\x98\x3f\xb4\x8d\x77\x97\x91\x9d\x3b\xec\xeb\xbf\x5a\x8f\xae\x7a\x3f\x9d\xe6\xba\x20\xc3\x63\x20\x2a\x45\x89\xa6\x3e\xf6\x0e\x56\xcb\x37\x2b\x30\xba\x88\x4e\xce\x86\xe3\x7b\x37\x62\xe3\x84\x7d\x07\x00\x00\xff\xff\x72\xf9\xde\x4a\x70\x02\x00\x00") func _1656958989_contact_verificationUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1249,12 +1249,12 @@ func _1656958989_contact_verificationUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1656958989_contact_verification.up.sql", size: 644, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xf, 0x22, 0x46, 0x8d, 0xae, 0x84, 0x24, 0x15, 0xd6, 0xf6, 0x7f, 0xc3, 0xf0, 0x86, 0xbc, 0xb6, 0xba, 0x21, 0x2a, 0x40, 0x27, 0x77, 0x87, 0x51, 0x1d, 0x33, 0x17, 0xcb, 0x77, 0x62, 0x42}} + info := bindataFileInfo{name: "1656958989_contact_verification.up.sql", size: 624, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x3f, 0x28, 0x38, 0x33, 0xdb, 0xe9, 0x4d, 0xc0, 0x54, 0x8c, 0x2a, 0x73, 0xc4, 0xdd, 0x5c, 0xc5, 0x1a, 0x93, 0x4b, 0x6, 0x13, 0xbe, 0x42, 0xd2, 0x7f, 0xd4, 0xc, 0xc5, 0x4e, 0x6d, 0xce}} return a, nil } -var __1658236268_add_discord_message_authors_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8c\xc1\x0a\x82\x40\x14\x45\xf7\x03\xf3\x0f\x77\x59\xd0\x1f\xb4\xb2\x9a\x68\xc8\x34\xc6\x27\xea\x4a\x1e\x2a\x35\x94\x0a\x33\xda\xf7\x87\x13\x04\x41\xdb\x73\xcf\xb9\x7b\xa3\x22\x52\xa0\x68\x17\x2b\xe8\x23\x92\x94\xa0\x4a\x9d\x51\x86\xd6\xfa\x66\x74\x6d\xdd\x77\xde\xf3\xad\xab\x79\x9e\xee\xa3\xf3\x58\x49\x01\xd8\x16\xa4\x4a\xc2\xd5\xe8\x4b\x64\x2a\x9c\x55\x15\xda\x24\x8f\xe3\xcd\x22\x0c\xdc\x77\x1f\xe5\x07\x2f\xa7\xce\xf6\x76\xe0\x69\x74\x7f\xf6\xc1\x36\x8f\x6f\x1a\x08\xbf\x78\x62\x57\xcf\xee\x19\x98\x14\x6b\x14\x9a\x4e\x69\x4e\x30\x69\xa1\x0f\x5b\x29\xa4\x78\x07\x00\x00\xff\xff\xbf\x91\xb5\x54\xc7\x00\x00\x00") +var __1658236268_add_discord_message_authors_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xc1\x0a\x82\x40\x10\xc6\xf1\xfb\x3e\xc5\x77\x2c\xe8\x0d\x3a\x59\x6d\xb4\x64\x1a\xeb\x88\x7a\x92\x41\xa5\x96\x52\x61\x76\xed\xf9\x43\x83\x08\xba\xfe\x66\xfe\xdf\xde\xea\x88\x34\x28\xda\xc5\x1a\xe6\x88\x24\x25\xe8\xd2\x64\x94\xa1\x75\xbe\x19\xa5\xad\xfb\xce\x7b\xbe\x75\x35\x4f\xe1\x3e\x8a\xc7\x4a\x01\xae\x05\xe9\x92\x70\xb5\xe6\x12\xd9\x0a\x67\x5d\x2d\x69\x92\xc7\xf1\x46\x01\x03\xf7\xdd\xe7\xe3\x57\xe7\x45\x71\xbd\x1b\x38\x8c\xf2\x7f\x1e\x5c\xf3\xf8\x86\x33\xf0\x8b\x03\x4b\x3d\xc9\x73\x21\xb5\x46\x61\xe8\x94\xe6\x04\x9b\x16\xe6\xb0\x55\xea\x1d\x00\x00\xff\xff\x8d\xc7\xa3\xca\xbf\x00\x00\x00") func _1658236268_add_discord_message_authors_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1269,12 +1269,12 @@ func _1658236268_add_discord_message_authors_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1658236268_add_discord_message_authors_table.up.sql", size: 199, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x61, 0xd0, 0xe5, 0xa6, 0x82, 0x4b, 0xf1, 0x90, 0x2b, 0x2a, 0xc9, 0x0, 0x19, 0x6c, 0x12, 0x2e, 0xed, 0x69, 0xe5, 0xf4, 0xe3, 0x20, 0x90, 0x24, 0xaa, 0x40, 0x46, 0xa, 0x68, 0x6d, 0x95}} + info := bindataFileInfo{name: "1658236268_add_discord_message_authors_table.up.sql", size: 191, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xb7, 0xdb, 0x79, 0x1, 0x15, 0xe7, 0x76, 0x5d, 0x22, 0x54, 0x82, 0x9a, 0xbe, 0x24, 0xc1, 0x82, 0xcf, 0x67, 0x91, 0x53, 0xcc, 0xac, 0x74, 0x18, 0x61, 0x69, 0x68, 0x19, 0xca, 0x2b, 0xa8}} return a, nil } -var __1659619997_add_discord_messages_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcf\x41\x6a\xc3\x30\x10\x05\xd0\xbd\x40\x77\x18\xb2\x6a\xa1\x37\xc8\x4a\xb5\x15\x22\xaa\xd8\x45\x19\x37\xc9\xca\x18\x6b\x9a\x08\x62\x39\x48\xf2\xa2\xb7\x2f\x36\x75\xa1\x82\x6e\xf5\xe6\xff\x8f\x84\x46\x69\x00\xc5\xab\x96\x30\x45\x0a\xed\x40\x31\x76\x57\x8a\x20\xca\x12\x8a\x5a\x37\x87\x0a\xac\x8b\xfd\x18\xec\x6a\xad\xb3\x80\xf2\x8c\x50\xca\x9d\x68\x34\xc2\x66\xb3\xe5\x8c\xb3\xc2\x48\x81\xf2\xa7\x4c\xed\xa0\xaa\x11\xe4\x59\x1d\xf1\x98\x37\x44\x78\xe2\x0c\x60\xed\x79\x37\xea\x20\xcc\x05\xde\xe4\x65\x09\x55\x8d\xd6\x2f\xf3\x41\x37\xa5\xdb\x18\x7e\xf7\xfe\x58\xfa\x7a\x10\x7c\x08\x53\xec\x85\xc9\xc4\x0d\x14\x53\x37\x3c\x40\x55\x79\x68\xa5\x96\xac\x4b\x64\xe7\x8b\x05\xfa\xd1\x27\xf2\x69\xd9\x59\x1e\x02\x7d\x52\x20\xdf\x53\xfe\xeb\x4c\xfb\x5b\xe7\x3d\xdd\xff\xd1\xeb\xe4\xee\x76\x35\xce\x9e\xe1\xa4\x70\x5f\x37\x08\xa6\x3e\xa9\x72\xcb\xd9\x77\x00\x00\x00\xff\xff\xff\x7b\x58\x30\x80\x01\x00\x00") +var __1659619997_add_discord_messages_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x41\x6b\xc2\x30\x1c\x05\xf0\x7b\x3e\xc5\xc3\xd3\x06\xfb\x06\x9e\xb2\x36\x62\x58\x6c\x47\xfc\x77\xea\xa9\x94\xe6\x3f\x2d\xd8\x54\x92\xf4\xb0\x6f\x3f\x2a\xeb\x50\xf1\x98\xfc\xf2\xde\x23\xd2\x90\xb2\x20\xf9\x6e\x14\xc6\xc8\xa1\xee\x39\xc6\xe6\xc8\x11\x32\xcf\x91\x95\xa6\xda\x14\x70\x5d\x6c\x87\xe0\x66\xab\x3b\x07\x52\x7b\x42\xae\x56\xb2\x32\x84\xc5\x62\x29\x44\x66\x95\x24\xf5\x57\xa5\x57\x28\x4a\x82\xda\xeb\x2d\x6d\x1f\xf3\x11\x2f\x02\x98\x4b\x3e\xad\xde\x48\x7b\xc0\x87\x3a\x5c\x33\x45\x65\xcc\x9b\x00\x9a\x31\x9d\x86\xf0\xbf\x75\x4b\xe9\xe7\xc2\xf8\x92\x36\x5b\x4b\x7b\x0f\x5d\xcf\x31\x35\xfd\x05\xba\xa0\xe7\x52\xb3\xeb\x12\xbb\xe9\xc1\x74\xdf\x0e\x3e\xb1\x4f\xd7\x8d\xe9\x1c\xf8\x9b\x03\xfb\x96\x1f\x3f\x7b\x8f\xed\xa9\xf1\x9e\xcf\xcf\xf1\x38\x76\x67\x37\x93\x78\xc5\x4e\xd3\xba\xac\x08\xb6\xdc\xe9\x7c\x29\x7e\x03\x00\x00\xff\xff\x0b\x32\xec\x85\x73\x01\x00\x00") func _1659619997_add_discord_messages_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1289,12 +1289,12 @@ func _1659619997_add_discord_messages_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1659619997_add_discord_messages_table.up.sql", size: 384, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x66, 0x8c, 0xae, 0x67, 0xf5, 0xbe, 0x9e, 0xb8, 0x5c, 0x28, 0xc0, 0xa2, 0x31, 0x23, 0x9b, 0x72, 0xf0, 0x9a, 0xd0, 0x5b, 0x14, 0x50, 0xc1, 0x93, 0xaa, 0x19, 0x2b, 0x59, 0x28, 0xe5, 0xcb}} + info := bindataFileInfo{name: "1659619997_add_discord_messages_table.up.sql", size: 371, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x12, 0x9c, 0x96, 0xe2, 0x42, 0x3f, 0x94, 0x62, 0xc2, 0x76, 0xab, 0x3b, 0x4c, 0x85, 0x36, 0x48, 0xcc, 0x73, 0x60, 0x93, 0x5a, 0xd6, 0x7, 0xd6, 0x0, 0xee, 0x1b, 0x1e, 0x34, 0x58, 0x99}} return a, nil } -var __1660226788_create_chat_identity_social_linksUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xc1\x4a\xc4\x30\x10\x86\xef\x81\xbc\xc3\x1c\x77\x61\xdf\xc0\x53\x0c\xb3\x18\x8c\xe9\x9a\x9d\xca\xf6\x14\x42\x1a\x30\x34\xb4\xd0\xa6\x45\xdf\x5e\x5a\xd4\x5e\x44\xf6\xfa\xff\xf3\xcd\xff\x49\x8b\x82\x10\x48\x3c\x6a\x04\x75\x06\x53\x11\xe0\x4d\x5d\xe9\x0a\xe1\xdd\x17\x97\xda\xd8\x97\x54\x3e\xdd\x34\x84\xe4\xb3\xcb\xa9\xef\x26\x38\x70\x06\x3f\x3d\xbc\x09\x2b\x9f\x84\xdd\x50\x53\x6b\x7d\x5a\xcb\xf5\xce\x95\xf8\x51\x80\xf0\x46\x7b\x34\x8f\x79\x4f\x6a\xa3\x5e\x6b\x3c\x7c\x3f\x3a\xed\xd0\x11\x2a\x03\xb2\x32\x67\xad\x24\x81\xc5\x8b\x16\x12\x39\x3b\x3e\x70\xc6\xd9\xdd\xca\xd9\x4f\xc5\x8d\x31\xc4\xb4\xc4\xf6\x7f\x67\xb8\x58\xf5\x22\x6c\x03\xcf\xd8\xfc\xb5\xbd\xe9\x86\x3c\x84\xce\x2d\x3e\xcf\x11\x94\xa1\x5f\x78\x15\xfb\x0a\x00\x00\xff\xff\xa0\x9f\x88\xfe\x48\x01\x00\x00") +var __1660226788_create_chat_identity_social_linksUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x41\x6a\xc3\x30\x10\x45\xf7\x3a\xc5\x5f\xc6\x90\x1b\x64\xa5\x8a\x09\x15\x55\xe5\x54\x19\x97\x64\x25\x84\x22\xa8\x88\x88\xc1\x96\x4d\x7b\xfb\xe2\xd2\xba\x9b\x52\xb2\x7d\x33\x6f\xe6\x29\x47\x92\x09\x2c\x1f\x0c\x41\xef\x61\x5b\x06\x9d\xf4\x91\x8f\x88\x6f\xa1\xfa\x7c\x49\xb7\x9a\xeb\x87\x1f\xfb\x98\x43\xf1\x25\xdf\xae\x23\x36\x02\x3f\x63\xbc\x4a\xa7\x1e\xa5\xfb\x32\x6d\x67\xcc\x56\x00\xcb\x96\xaf\xe9\xbd\x82\xe9\xc4\x2b\x99\x86\xb2\x82\xce\xea\x97\x8e\x36\xdf\x57\xb6\xbf\x4a\x83\xd6\x42\xb5\x76\x6f\xb4\x62\x38\x3a\x18\xa9\x48\x34\x3b\x21\xee\x6e\x2d\x61\xac\x7e\x48\x31\xe5\x39\x5d\xfe\x8d\xc5\xc1\xe9\x67\xe9\xce\x78\xa2\xf3\x5f\x7f\x97\xd2\x58\xfa\x78\xf5\x73\x28\x53\x82\xb6\xbc\xba\xa2\xd9\x7d\x06\x00\x00\xff\xff\x93\xc8\x9a\xf7\x3e\x01\x00\x00") func _1660226788_create_chat_identity_social_linksUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1309,12 +1309,12 @@ func _1660226788_create_chat_identity_social_linksUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1660226788_create_chat_identity_social_links.up.sql", size: 328, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0x43, 0xaf, 0x8d, 0xb7, 0x4b, 0x95, 0xe9, 0x23, 0xe2, 0xa7, 0xd8, 0x4b, 0x43, 0xfa, 0x9, 0x3b, 0xd6, 0xa9, 0xe3, 0x28, 0x56, 0x1d, 0x41, 0xc9, 0x51, 0xfe, 0x54, 0x63, 0xff, 0xe5, 0x59}} + info := bindataFileInfo{name: "1660226788_create_chat_identity_social_links.up.sql", size: 318, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x76, 0x40, 0xe9, 0x85, 0xc4, 0x38, 0xf8, 0xe5, 0x5d, 0xe8, 0x13, 0x46, 0x1b, 0xc, 0x1, 0xe9, 0x2f, 0x74, 0xd1, 0x79, 0x59, 0xa4, 0xdb, 0x4a, 0x4a, 0xf4, 0x98, 0x58, 0x3c, 0x57, 0xd3}} return a, nil } -var __1660226789_add_walletconnectsessions_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcb\xc1\x0a\x82\x40\x10\xc6\xf1\xbb\xe0\x3b\xcc\xb1\xa0\x4b\xe7\x4e\x9b\x8d\xb0\xb4\x9a\xac\x23\xe8\x69\x58\x74\x02\xc1\x56\x71\xb7\x7a\xfd\xa8\x43\x27\xaf\xdf\xef\xfb\x67\x16\x15\x21\x90\x3a\x1b\x04\x9d\x43\x79\x23\xc0\x56\xd7\x54\xc3\xdb\x4d\x93\x44\xee\x67\xef\xa5\x8f\xfc\x3a\x72\x90\x10\xc6\xd9\x07\xd8\xa5\x09\xc0\x22\xb2\xf2\x38\x40\x65\x75\xa1\x6c\x07\x57\xec\x7e\x79\xd9\x18\x73\xf8\x1e\x06\xb7\x2c\xec\xdd\x43\x80\xb0\xa5\x0d\x7b\xae\xd3\x06\x8d\xfe\x3e\x6f\xcc\xfd\x2a\x2e\xca\xc0\x2e\x02\xe9\x02\x6b\x52\x45\x05\x17\xcc\x55\x63\x08\xb2\xc6\x5a\x2c\x89\xff\x92\x26\xfb\x53\x9a\x7c\x02\x00\x00\xff\xff\xb9\xeb\xd6\x6f\xde\x00\x00\x00") +var __1660226789_add_walletconnectsessions_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcb\x31\x8b\x83\x30\x18\x87\xf1\x3d\x9f\xe2\x3f\xde\xc1\x2d\x37\xdf\x94\xb3\xaf\x10\x1a\xad\xc4\x57\xd0\x29\x04\x7d\x0b\x82\x8d\x62\xd2\xf6\xeb\x17\x3a\x74\x71\x7d\x7e\x3c\x85\x23\xcd\x04\xd6\xff\x96\x60\x4a\xd4\x17\x06\xf5\xa6\xe5\x16\xcf\xb0\x2c\x92\xfd\xb8\xc6\x28\x63\xf6\x8f\x5f\x9f\x24\xa5\x79\x8d\x09\x5f\x0a\xd8\x44\x76\x3f\x4f\x68\x9c\xa9\xb4\x1b\x70\xa6\xe1\x7d\xd7\x9d\xb5\x3f\x0a\x98\xc2\xb6\xf9\x18\x6e\x02\xa6\x9e\x8f\x74\xdf\x97\xa3\xcc\xf1\xba\x1e\xeb\xb8\x4b\xc8\x32\xf9\x90\xc1\xa6\xa2\x96\x75\xd5\xe0\x44\xa5\xee\x2c\xa3\xe8\x9c\xa3\x9a\xfd\x47\xd4\xf7\x9f\x7a\x05\x00\x00\xff\xff\x0e\x47\x6e\x3f\xd7\x00\x00\x00") func _1660226789_add_walletconnectsessions_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1329,12 +1329,12 @@ func _1660226789_add_walletconnectsessions_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1660226789_add_walletconnectsessions_table.up.sql", size: 222, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0xbb, 0x44, 0xc3, 0xbd, 0x13, 0x54, 0x43, 0x1e, 0x9, 0x4, 0x44, 0x8b, 0x5c, 0xfb, 0xf9, 0xd9, 0xa8, 0x92, 0xa5, 0xfd, 0x83, 0x1c, 0xd4, 0xfc, 0x1b, 0xce, 0x21, 0x73, 0x57, 0x34, 0x73}} + info := bindataFileInfo{name: "1660226789_add_walletconnectsessions_table.up.sql", size: 215, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0x72, 0x2, 0xed, 0x36, 0x19, 0x91, 0x4d, 0x1a, 0xc1, 0xab, 0x84, 0xfa, 0x41, 0xb1, 0x46, 0xa5, 0xdb, 0x3f, 0x76, 0x47, 0xd3, 0x75, 0x3c, 0x6a, 0x8e, 0x78, 0xe6, 0x41, 0xdc, 0x7f}} return a, nil } -var __1661242854_add_communities_requests_to_leaveUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xc1\x8e\x82\x30\x18\x04\xe0\x3b\x09\xef\x30\x47\x48\xf6\x0d\xf6\x54\x9a\x9f\x6c\xb3\xb5\x25\xa5\x1a\x39\x35\x5a\x7a\x68\x00\x51\x01\x13\xde\xde\x68\xbc\x68\xbc\x7e\x93\x99\xe1\x86\x98\x25\x58\x56\x48\x82\x28\xa1\xb4\x05\xed\x45\x6d\x6b\xf8\x71\x18\x96\x53\x9c\x63\x98\xdc\x35\x5c\x96\x30\xcd\x93\x9b\x47\xd7\x87\xc3\x2d\x20\x4b\x13\x20\xb6\x28\xa4\x2e\x9e\x2d\xb5\x95\xf2\xe7\x81\xe7\xe5\xd8\x47\xef\xba\xb0\x62\xc7\x0c\xff\x63\xe6\x3d\xf7\xfd\xe8\x3b\x08\x65\x3f\xf8\x75\xb7\xba\xaf\xab\x95\x11\x1b\x66\x1a\xfc\x53\x83\x2c\xb6\x39\xb4\x02\xd7\xaa\x94\x82\x5b\x18\xaa\x24\xe3\x94\x26\xf9\x6f\x9a\xdc\x03\x00\x00\xff\xff\x29\xa6\x10\x0a\xd3\x00\x00\x00") +var __1661242854_add_communities_requests_to_leaveUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\xb1\xce\x82\x30\x18\x45\xf7\x3e\xc5\x1d\x21\xf9\xdf\xe0\x9f\x4a\xf3\x11\x1b\x6b\x4b\x4a\x35\x32\x35\x5a\x3a\x34\x80\xa8\x80\x09\x6f\x6f\x62\x5c\x48\x5c\xef\xcd\x39\x47\x58\xe2\x8e\xe0\x78\xa1\x08\xb2\x84\x36\x0e\x74\x96\xb5\xab\x11\xc6\x61\x58\x6e\x69\x4e\x71\xf2\xcf\xf8\x58\xe2\x34\x4f\x7e\x1e\x7d\x1f\x2f\xaf\x88\x8c\x01\xa9\x45\xa1\x4c\xf1\x81\xf4\x51\xa9\x3f\x06\xdc\x97\x6b\x9f\x82\xef\xe2\x8a\x13\xb7\x62\xc7\xed\xe6\x0e\xfd\x18\x3a\x48\xed\xb6\xeb\x37\xb5\xfa\x5f\xca\xca\xca\x03\xb7\x0d\xf6\xd4\x20\x4b\x6d\x0e\xa3\x21\x8c\x2e\x95\x14\x0e\x96\x2a\xc5\x05\xb1\xfc\x9f\xbd\x03\x00\x00\xff\xff\xc1\xbf\x3e\x0f\xcc\x00\x00\x00") func _1661242854_add_communities_requests_to_leaveUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1349,12 +1349,12 @@ func _1661242854_add_communities_requests_to_leaveUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1661242854_add_communities_requests_to_leave.up.sql", size: 211, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xe4, 0x22, 0x54, 0x4c, 0xb4, 0x56, 0x9a, 0x10, 0x7e, 0xb3, 0x1f, 0xa, 0x20, 0xb5, 0x88, 0x2e, 0xc7, 0xe0, 0xa2, 0xf, 0x6a, 0x93, 0x4f, 0x42, 0xe1, 0x85, 0x45, 0x37, 0x7f, 0xc6, 0xf7}} + info := bindataFileInfo{name: "1661242854_add_communities_requests_to_leave.up.sql", size: 204, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x2e, 0x7d, 0x14, 0xef, 0x6e, 0x95, 0x4b, 0x6, 0x70, 0x2e, 0xd1, 0xf6, 0x59, 0xf9, 0xe, 0x56, 0xa, 0x9c, 0x80, 0x18, 0xca, 0xb9, 0x49, 0x19, 0xf, 0x89, 0x94, 0x36, 0x6d, 0x93, 0x9a}} return a, nil } -var __1662044232_add_chat_imageUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xcc\x4d\x4c\x4f\x8d\x2f\x48\xac\xcc\xc9\x4f\x4c\x51\x70\xf2\xf1\x77\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\x1f\xf9\x90\x1f\x32\x00\x00\x00") +var __1662044232_add_chat_imageUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xcc\x4d\x4c\x4f\x8d\x2f\x48\xac\xcc\xc9\x4f\x4c\x51\x70\xf2\xf1\x77\xb2\xe6\x02\x04\x00\x00\xff\xff\x5c\x94\x74\xdb\x31\x00\x00\x00") func _1662044232_add_chat_imageUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1369,12 +1369,12 @@ func _1662044232_add_chat_imageUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1662044232_add_chat_image.up.sql", size: 50, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x7f, 0x6d, 0xce, 0x84, 0xea, 0x99, 0x8d, 0x95, 0xbf, 0x80, 0xa2, 0x5f, 0x1c, 0x66, 0xa1, 0xe6, 0x4b, 0xf, 0x61, 0xc0, 0x86, 0xd3, 0xcc, 0xf9, 0xa0, 0x6, 0x2a, 0x3b, 0xfb, 0x15, 0x58}} + info := bindataFileInfo{name: "1662044232_add_chat_image.up.sql", size: 49, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x74, 0xdf, 0x50, 0x79, 0x73, 0x9e, 0xd0, 0xff, 0xa4, 0xd3, 0x87, 0xc3, 0x48, 0x31, 0x6c, 0xdf, 0xa6, 0x20, 0x85, 0xe6, 0x4e, 0x19, 0x9d, 0xef, 0xcc, 0x84, 0x2b, 0x5d, 0x44, 0x34, 0x6}} return a, nil } -var __1662106895_add_chat_first_message_timestampUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcb\x2c\x2a\x2e\x89\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x2f\xc9\xcc\x4d\x2d\x2e\x49\xcc\x2d\x50\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\xe5\x0a\x0d\x70\x71\x0c\x81\xe9\x0f\x76\x0d\xc1\xa9\xd1\x56\xc1\xc0\x1a\x10\x00\x00\xff\xff\xf1\xdd\xe7\xb6\x72\x00\x00\x00") +var __1662106895_add_chat_first_message_timestampUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcb\x2c\x2a\x2e\x89\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x2f\xc9\xcc\x4d\x2d\x2e\x49\xcc\x2d\x50\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\x0a\x0d\x70\x71\x0c\x81\x69\x0f\x76\x0d\xc1\xa9\xcf\x56\xc1\xc0\x1a\x10\x00\x00\xff\xff\x2f\xa5\x56\xd7\x71\x00\x00\x00") func _1662106895_add_chat_first_message_timestampUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1389,12 +1389,12 @@ func _1662106895_add_chat_first_message_timestampUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1662106895_add_chat_first_message_timestamp.up.sql", size: 114, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xf6, 0x9c, 0xdc, 0xac, 0xb6, 0xb2, 0xac, 0x58, 0x56, 0x99, 0x10, 0xd8, 0xfd, 0xf4, 0xae, 0x3, 0x9b, 0x92, 0xc8, 0x54, 0xe9, 0x7d, 0xc9, 0xfb, 0x84, 0xda, 0xe3, 0x52, 0xfa, 0x9b, 0x81}} + info := bindataFileInfo{name: "1662106895_add_chat_first_message_timestamp.up.sql", size: 113, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x55, 0x74, 0xfa, 0xf5, 0x51, 0x85, 0x19, 0xfd, 0xfb, 0x6, 0x79, 0x4d, 0x1d, 0xd, 0x3, 0x46, 0x66, 0x34, 0x1e, 0xce, 0x91, 0x21, 0x29, 0xf6, 0x71, 0xe7, 0x31, 0x39, 0x8f, 0x9d, 0x5}} return a, nil } -var __1662723928_add_discord_author_image_fieldsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xc9\x2c\x4e\xce\x2f\x4a\x89\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x4f\x2c\x2d\xc9\xc8\x2f\x2a\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x2c\x4b\x2c\x49\x2c\x8a\xcf\xcc\x05\xc9\x17\x24\x56\xe6\xe4\x27\xa6\x28\x38\xf9\xf8\x3b\x59\xf3\x72\xf1\x72\x01\x02\x00\x00\xff\xff\xfb\x56\x6b\xb9\x4d\x00\x00\x00") +var __1662723928_add_discord_author_image_fieldsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xc9\x2c\x4e\xce\x2f\x4a\x89\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x4f\x2c\x2d\xc9\xc8\x2f\x2a\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x2c\x4b\x2c\x49\x2c\x8a\xcf\xcc\x05\xc9\x17\x24\x56\xe6\xe4\x27\xa6\x28\x38\xf9\xf8\x3b\x59\x73\x71\x01\x02\x00\x00\xff\xff\x2f\xb6\x3a\xc5\x4b\x00\x00\x00") func _1662723928_add_discord_author_image_fieldsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1409,12 +1409,12 @@ func _1662723928_add_discord_author_image_fieldsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1662723928_add_discord_author_image_fields.up.sql", size: 77, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x57, 0xd9, 0xfe, 0x3f, 0x18, 0xee, 0x91, 0xd3, 0x7e, 0xe4, 0x24, 0x2d, 0x19, 0x8b, 0xbc, 0xdc, 0x24, 0xed, 0xfe, 0x2d, 0x9a, 0xe, 0xac, 0x2, 0x87, 0x12, 0x3a, 0xed, 0x86, 0xeb, 0xa}} + info := bindataFileInfo{name: "1662723928_add_discord_author_image_fields.up.sql", size: 75, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x5b, 0x48, 0x57, 0x98, 0x55, 0x9a, 0xf1, 0x75, 0xf7, 0xb5, 0x41, 0x5e, 0x96, 0xc5, 0xce, 0xfc, 0x30, 0x5c, 0x15, 0x35, 0x9e, 0x4e, 0x4a, 0x3b, 0x38, 0x42, 0xc4, 0x27, 0x3c, 0x87, 0xbf}} return a, nil } -var __1664195977_add_deleted_for_mesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\xc1\x4a\x03\x31\x10\x86\xef\x81\xbc\xc3\x7f\xdc\x42\xdf\xc0\xd3\x74\x33\xd5\xc5\x69\x22\x31\x2b\xf6\x14\x64\x33\xca\x62\x65\xa1\x69\xdf\x5f\x16\x16\xaa\xa5\x7a\xfe\xe6\xfb\xe7\x23\x49\x1c\x91\x68\x23\x8c\x73\xd5\x63\xfe\xd2\x5a\xdf\x3e\xb4\x82\x9c\x43\x1b\xa4\xdf\x79\x14\x3d\xe8\x49\x4b\x7e\x9f\x66\x8e\x4d\x08\x02\xc7\x5b\xea\x25\x61\x4b\xf2\xcc\x77\xd6\x58\xd3\x46\xa6\xc4\xb7\xb6\xf2\xef\x81\x8a\xc6\x1a\x60\x38\x4c\xc3\x27\x3a\x9f\xf8\x9e\x23\x7c\x48\xf0\xbd\xc8\x7a\x46\x8b\x98\xc7\x82\x17\x8a\xed\x03\x5d\xf1\x3a\x9d\x8f\x83\xde\x66\x7f\x39\x4f\xb1\xdb\x51\xdc\xe3\x91\xf7\xcd\x58\x56\xd6\xac\x7e\x56\x77\xde\xf1\xeb\xff\xd5\xf9\x52\x95\x97\x80\xe0\xaf\x14\x2d\xe3\xa9\x36\x97\xc3\xf5\x92\x3a\xff\xfa\x0e\x00\x00\xff\xff\x8b\x01\xda\xc6\x6b\x01\x00\x00") +var __1664195977_add_deleted_for_mesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\x41\x6a\xc3\x30\x10\x45\xf7\x3a\xc5\x5f\xda\x90\x1b\x64\x35\xb1\x26\xad\xe9\x44\x2a\xaa\x5c\x9a\x95\x28\xd6\xb4\x98\xa6\x18\xa2\xf8\xfe\xa5\x60\x30\x2e\x6e\xd6\x6f\xde\xfc\x47\x12\x39\x20\xd2\x41\x18\x53\xd1\x6b\xfa\xd6\x52\xde\x3f\xb5\x80\xac\x45\xe3\xa5\x3b\x39\x64\xbd\xe8\x4d\x73\xfa\x18\x7f\x39\x0e\xde\x0b\x2c\x1f\xa9\x93\x88\x23\xc9\x0b\xef\x8d\x69\x02\x53\xe4\xad\x4f\x69\xad\x17\x54\x06\xe8\x2f\x63\xff\x85\xd6\x45\x7e\xe0\x00\xe7\x23\x5c\x27\xb2\x33\xc0\xac\xa5\x21\xe3\x95\x42\xf3\x48\x6b\x5c\xc6\xe9\xda\xeb\x26\xfa\xc7\x78\x0e\xed\x89\xc2\x19\x4f\x7c\xae\x86\x5c\x9b\x7a\xa9\x6d\x9d\xe5\xb7\xfb\xb5\x69\xe9\x49\xf3\xb6\x77\x7f\x14\xcd\xc3\xad\x54\xcb\xe1\x6e\xae\xac\xf7\xe6\x27\x00\x00\xff\xff\x2f\xc2\xbe\x8e\x60\x01\x00\x00") func _1664195977_add_deleted_for_mesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1429,12 +1429,12 @@ func _1664195977_add_deleted_for_mesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1664195977_add_deleted_for_mes.up.sql", size: 363, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x2c, 0x2e, 0xfb, 0xd9, 0xc1, 0x29, 0x2e, 0x85, 0xdb, 0xfa, 0x5b, 0xa1, 0x16, 0xbb, 0x30, 0xac, 0xa0, 0xb2, 0x6f, 0x1e, 0x7c, 0x1e, 0xe, 0x4c, 0x89, 0xb7, 0xdf, 0xc, 0xc9, 0x43, 0x31}} + info := bindataFileInfo{name: "1664195977_add_deleted_for_mes.up.sql", size: 352, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x9d, 0x13, 0x9, 0xaa, 0x44, 0x14, 0x93, 0xe2, 0xf5, 0x53, 0xb7, 0x79, 0xa8, 0x18, 0xf0, 0x6c, 0xa4, 0x9c, 0x73, 0xc1, 0xaa, 0xc5, 0x2e, 0xc5, 0x41, 0xd7, 0x24, 0xb0, 0xd7, 0xb8, 0xdf}} return a, nil } -var __1664367420_add_discord_attachments_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xd1\x4a\xc3\x30\x18\x85\xef\x0b\x7d\x87\x73\xe9\xc0\x37\xf0\xaa\x75\x11\x83\x35\x91\xee\x1f\xeb\xae\x42\x6c\x7e\x35\xd0\xa4\x63\x89\x60\x7d\x7a\xb1\x6e\x32\x26\xee\xf6\xe4\x7c\x27\xff\x39\xb7\xad\xa8\x48\x80\xaa\xba\x11\x90\x77\x50\x9a\x20\x3a\xb9\xa2\x15\x9c\x4f\xfd\xb8\x77\x26\x70\x4a\xf6\x95\x8d\xcd\xd9\xf6\x6f\x81\x63\x4e\xb8\x2a\x0b\xc0\x3b\x90\xe8\x08\x4f\xad\x7c\xac\xda\x2d\x1e\xc4\x76\xe6\xd5\xba\x69\xae\xbf\x0d\xe7\x09\x47\xe0\xd7\xf0\xbe\x1f\x0e\xca\x29\xf6\xe2\x07\x36\xd1\x06\xfe\xef\x2d\xf9\x4f\x36\xcf\x53\xe6\x04\xa9\xce\x0c\x3b\x3b\x0d\xa3\x75\xa8\x1b\x5d\xcf\x42\x3f\xc6\xcc\x31\x9b\x3c\xed\x7e\x02\xcb\x62\x81\x8d\xa4\x7b\xbd\x26\xb4\x7a\x23\x97\x37\x65\x51\x16\x87\x21\xa4\x5a\x8a\x0e\x2e\x9c\xb6\x3d\xde\x9f\x8c\x77\x1f\xd0\xea\xf2\x32\x7f\x4b\x2f\xe6\x0f\xbe\x02\x00\x00\xff\xff\x9b\x81\x12\x48\x6a\x01\x00\x00") +var __1664367420_add_discord_attachments_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x8a\xff\xc8\x24\xde\x60\xa7\x96\x05\x11\x51\x12\xd4\x79\x5a\x77\x8a\x42\x63\x20\x52\x93\x4e\x4b\x90\x28\x4f\x8f\x80\x55\x1a\xaa\xe0\x68\xff\xfe\x2c\x7f\xbe\x69\x65\x45\x12\x54\xd5\x8d\x84\xba\x85\x36\x04\xd9\xa9\x2d\x6d\xe1\x43\xee\xc7\x93\xb7\x91\x73\x76\x2f\x6c\x5d\x29\xae\x7f\x8d\x9c\x4a\xc6\x95\x00\x82\x07\xc9\x8e\xf0\xd8\xaa\x87\xaa\x3d\xe0\x5e\x1e\xbe\x71\xbd\x6b\x9a\x6b\x81\x05\x3f\xcf\xcf\xf9\xdb\x69\x38\x37\x2e\xa0\xe7\x30\xb0\x4d\x2e\xf2\x1f\x51\x0e\x1f\x6c\x9f\xa6\xc2\x19\x4a\xff\xce\x8f\x6e\x1a\x46\xe7\x51\x37\xa6\xfe\xaa\xfb\x31\x15\x4e\xc5\x96\xe9\xf8\xb3\x4d\xac\xb0\x57\x74\x67\x76\x84\xd6\xec\xd5\x66\x2d\xc4\x59\x5f\xe9\x8d\xec\xe0\xe3\xa5\xe3\x7c\x77\xb6\xc1\xbf\xc3\xe8\xff\xff\xb1\x94\x5d\xad\x85\xf8\x0c\x00\x00\xff\xff\xec\xb0\x4b\x53\x5e\x01\x00\x00") func _1664367420_add_discord_attachments_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1449,12 +1449,12 @@ func _1664367420_add_discord_attachments_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1664367420_add_discord_attachments_table.up.sql", size: 362, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0xf1, 0xf7, 0xd6, 0x77, 0x21, 0x1d, 0x15, 0x9d, 0x9d, 0x84, 0xcc, 0xf2, 0xb, 0xde, 0x7a, 0x95, 0xf3, 0x9e, 0x36, 0x45, 0x7a, 0xf2, 0x20, 0x34, 0x56, 0x17, 0xa2, 0x7c, 0xa0, 0x4f, 0x57}} + info := bindataFileInfo{name: "1664367420_add_discord_attachments_table.up.sql", size: 350, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xe1, 0xb6, 0x4f, 0x6f, 0x92, 0x0, 0xb4, 0xf, 0x55, 0x12, 0x1c, 0x98, 0x6d, 0xbc, 0x1e, 0xfd, 0xae, 0x1c, 0xce, 0xd1, 0x3d, 0x2, 0x21, 0x2e, 0xc0, 0x13, 0xa, 0xb2, 0xec, 0x81, 0x13}} return a, nil } -var __1665079662_add_spectated_column_in_communitiesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\x14\x17\xa4\x26\x97\x24\x96\xa4\xa6\x28\x38\xf9\xfb\xfb\x28\xf8\xf9\x87\x28\xf8\x85\xfa\xf8\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\xb8\x39\xfa\x04\xbb\x5a\xf3\x72\x01\x02\x00\x00\xff\xff\xd5\x78\x69\xad\x57\x00\x00\x00") +var __1665079662_add_spectated_column_in_communitiesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xc6\x31\x0e\x02\x21\x10\x05\xd0\xde\x53\xfc\x7b\x58\x0d\x32\x54\x5f\x26\xd1\xa1\x36\x06\x29\x28\x70\x37\x81\xbd\xff\xb6\xdb\x3d\xa1\xeb\x0b\x2e\x81\x8a\xba\x8d\x71\xfc\xfb\xea\x6d\x7e\x2e\x86\xc4\x88\x87\xb1\x3c\x33\xe6\xde\xea\xfa\xae\xf6\x43\x30\x23\xb2\x39\x72\x21\x11\x35\x49\xa1\x23\x09\xdf\x7a\xbf\x9d\x01\x00\x00\xff\xff\xe5\x76\xfe\x9f\x56\x00\x00\x00") func _1665079662_add_spectated_column_in_communitiesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1469,12 +1469,12 @@ func _1665079662_add_spectated_column_in_communitiesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665079662_add_spectated_column_in_communities.up.sql", size: 87, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0x70, 0x58, 0x41, 0x63, 0xfa, 0x81, 0x1c, 0x3e, 0x6b, 0xfa, 0x9a, 0x7a, 0xaa, 0xe6, 0xe0, 0x1f, 0xde, 0xa6, 0x1a, 0x6d, 0x9e, 0xfe, 0xd2, 0xae, 0xd9, 0xb1, 0x5e, 0x4d, 0x7d, 0x41, 0x17}} + info := bindataFileInfo{name: "1665079662_add_spectated_column_in_communities.up.sql", size: 86, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0x5d, 0xfe, 0xe2, 0xbe, 0xdf, 0xba, 0x45, 0xe9, 0xfc, 0xa7, 0x5f, 0xda, 0x19, 0xdb, 0x40, 0x96, 0x59, 0x78, 0xa, 0xd7, 0x4a, 0xca, 0x1a, 0x93, 0xfb, 0xae, 0x6d, 0x74, 0x7, 0x36, 0xdd}} return a, nil } -var __1665479047_add_community_id_in_notificationsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xcc\x41\xaa\xc2\x30\x10\x06\xe0\xfd\x83\x77\x87\xff\x08\xee\xbb\x1a\xdb\x8a\xc2\x98\x42\x48\xdc\x86\x18\x23\xce\x22\x89\x34\x53\xc1\xdb\x8b\x57\x70\xff\xf1\x11\xbb\xd9\xc2\xd1\x9e\x67\xc4\xa4\xf2\x12\x7d\x87\x94\xab\xe6\x35\xd4\xa6\x72\x97\x14\x55\x5a\xed\xa0\x69\xc2\xb8\xb0\x3f\x1b\xa4\x56\xca\x56\xbf\x52\x6e\xb8\x90\x1d\x8f\x64\x87\xff\xbf\x9f\xae\x92\xcb\x35\xaf\xfd\x21\xcf\xd0\x35\xea\xd6\x71\x32\x0e\x66\x71\x30\x9e\x19\xd3\x7c\x20\xcf\x0e\xbb\xe1\x13\x00\x00\xff\xff\x80\x29\x2f\x4b\xaa\x00\x00\x00") +var __1665479047_add_community_id_in_notificationsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xcc\x41\x0a\xc2\x30\x10\x05\xd0\xbd\xa7\xf8\x47\x70\xdf\xd5\xd8\x56\x14\xc6\x14\x42\xe2\x36\xc4\x18\x71\x16\x49\xa4\x99\x0a\xde\x5e\xbc\x82\xfb\xc7\x23\x76\xb3\x85\xa3\x03\xcf\x88\x49\xe5\x2d\xfa\x09\x29\x57\xcd\x6b\xa8\x4d\xe5\x21\x29\xaa\xb4\xda\x41\xd3\x84\x71\x61\x7f\x31\x48\xad\x94\xad\xfe\xa4\xdc\x71\x25\x3b\x9e\xc8\x0e\xbb\xbf\xaa\x92\xcb\x2d\xaf\xfd\x29\xaf\xd0\x35\xea\xd6\x71\x36\x0e\x66\x71\x30\x9e\x19\xd3\x7c\x24\xcf\x0e\xfb\xe1\x1b\x00\x00\xff\xff\x4a\xec\x5a\x0b\xa9\x00\x00\x00") func _1665479047_add_community_id_in_notificationsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1489,12 +1489,12 @@ func _1665479047_add_community_id_in_notificationsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665479047_add_community_id_in_notifications.up.sql", size: 170, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x25, 0x16, 0x3a, 0x5b, 0x23, 0xbb, 0x10, 0x55, 0xf5, 0xd6, 0x20, 0x37, 0xb6, 0xe4, 0x93, 0xb1, 0x3b, 0x64, 0x90, 0x54, 0xbe, 0xab, 0xda, 0xf5, 0xd3, 0xb, 0xbd, 0x23, 0xac, 0x24, 0x4f}} + info := bindataFileInfo{name: "1665479047_add_community_id_in_notifications.up.sql", size: 169, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd9, 0x8f, 0x8b, 0x1c, 0xaa, 0x6a, 0x56, 0xd6, 0xa5, 0x88, 0x57, 0x13, 0x8f, 0xea, 0xb9, 0x23, 0x82, 0x50, 0xb7, 0x65, 0x1f, 0xab, 0xfa, 0x23, 0x6f, 0x0, 0x7, 0xb6, 0x6e, 0xb5, 0x85, 0x44}} return a, nil } -var __1665484435_add_encrypted_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6b\x84\x30\x10\x85\xef\x82\xff\x61\x8e\x5b\xd8\x53\xaf\x3d\x45\x3b\x05\xe9\x74\xb2\x48\x0a\xdd\x53\x08\x1a\x34\xb4\xd6\x60\xd2\x83\xff\xbe\x6c\x74\xa1\x85\x80\xc7\x79\xef\x7b\x33\xc3\xab\x5b\x14\x0a\x41\x89\x8a\x10\x46\x13\x46\xbd\x98\xd8\x8d\x36\x6a\xfb\xdd\x2d\xab\x8f\xb6\xd7\x93\x0d\xc1\x0c\x36\xc0\xa9\x2c\x20\x41\x50\x91\xac\xe0\xd2\x36\x6f\xa2\xbd\xc2\x2b\x5e\x41\x32\xd4\x92\x5f\xa8\xa9\x15\xb4\x78\x21\x51\xe3\xf9\x46\x07\x37\x6c\x30\x4b\x05\xfc\x4e\x94\x54\xa5\x08\x1a\x56\xff\xc5\xe8\x26\x1b\xa2\x99\x7c\xc6\x9a\xbd\xeb\x32\x7b\xbc\x59\xbf\x66\xd3\x67\x9c\x3e\xc4\xa4\x6e\xd8\xa3\x87\x4a\x4a\x42\xc1\x69\x1e\x96\xf9\xc7\x6b\x97\xcb\x7d\xda\xf5\x66\xfc\xfd\xa0\x2c\x1e\x9e\xca\xa2\x2c\xf6\xaa\x1a\x7e\xc6\x8f\xa3\xaa\xf4\xfd\x84\xde\x17\x4a\x3e\x8a\x9c\xee\x91\xf3\xfe\xc4\x76\xf5\x37\x00\x00\xff\xff\x42\xda\x19\xf6\xa1\x01\x00\x00") +var __1665484435_add_encrypted_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x79\x8a\x39\xae\xb0\x27\xaf\x9e\xd2\x3a\x42\x71\x9c\x2c\x21\x82\x7b\x0a\xa1\x0d\x6d\xd0\xda\xd0\xc4\x43\xdf\x5e\x52\xbb\xa0\x54\xe8\x31\xbf\xf9\xfe\x84\xaf\xd6\x28\x0d\x82\x91\x15\x21\x0c\x2e\x0d\x76\x76\xb9\x1d\x7c\xb6\xfe\xb3\x9d\x97\x98\x7d\x67\x47\x9f\x92\xeb\x7d\x82\x93\x80\x55\x03\x15\xa9\x0a\x2e\xba\x79\x91\xfa\x0a\xcf\x78\x05\xc5\x50\x2b\x7e\xa2\xa6\x36\xa0\xf1\x42\xb2\xc6\xb3\x00\x48\xa1\xff\xd1\xb2\x32\xc0\xaf\x44\x05\x1a\x43\xd0\xb0\xf9\xc3\x72\x18\x7d\xca\x6e\x8c\xfb\xcb\x14\x43\xbb\x0f\x89\x6e\xf9\x98\x5c\xb7\x3f\x74\x29\xaf\x70\x15\xdd\x47\xa8\x94\x22\x94\x5c\x9e\xfd\x3c\x7d\x45\x1b\xfe\x31\xbd\xfb\xa5\xf0\xdf\xdd\xe2\xee\x41\x88\x6d\x9d\x86\x1f\xf1\xed\x68\x1d\x7b\x8b\xb7\x5b\x9a\xe2\x23\xcb\xe9\x66\x39\x6f\x3f\x28\x9d\xdf\x01\x00\x00\xff\xff\x3e\x6b\x6a\x7f\x92\x01\x00\x00") func _1665484435_add_encrypted_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1509,12 +1509,12 @@ func _1665484435_add_encrypted_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665484435_add_encrypted_messages.up.sql", size: 417, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xce, 0x2d, 0xee, 0xec, 0x8e, 0x25, 0x8c, 0x45, 0xe7, 0x72, 0xa, 0xfb, 0x89, 0x0, 0xe3, 0x68, 0xbb, 0x5c, 0xfb, 0xa6, 0x38, 0xb1, 0x85, 0xf1, 0x7a, 0xc2, 0xd7, 0x5, 0x9b, 0x6, 0x7}} + info := bindataFileInfo{name: "1665484435_add_encrypted_messages.up.sql", size: 402, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x5c, 0x1e, 0x1c, 0x7f, 0xae, 0x5f, 0xeb, 0x3c, 0x6c, 0xcd, 0xc2, 0x99, 0x48, 0x5c, 0x83, 0xa0, 0xa2, 0x97, 0x5, 0x39, 0x82, 0x71, 0x90, 0x47, 0x21, 0x84, 0x29, 0x19, 0xa4, 0x7a, 0x90}} return a, nil } -var __1665560200_add_contact_verification_individualUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\xf3\x30\x10\x84\xef\x06\xbf\xc3\x1e\xff\x1f\x7a\xe8\x3d\x27\xd5\x56\xc0\x54\x91\x83\xa2\x40\x72\x12\x42\xde\xa4\x02\x47\x4a\xa5\xb5\xa1\x6f\x5f\xe2\xba\x4d\x5b\x1a\x4a\xaf\xb3\x33\xdf\xee\x0e\x13\x9a\x2b\xd0\xec\x41\x70\x18\x32\x26\x73\xc2\x9c\xed\x11\x33\xb0\xba\x86\xaa\x15\xdb\x95\x04\x17\x03\x59\x47\x66\xc4\xe4\x0f\xde\x59\xf2\x31\x98\x4c\x96\x86\x0c\x8d\xd4\x8b\xb2\xf8\x8c\xb1\x8e\xfc\xe8\xe9\xc5\x38\x0c\x84\xc9\x84\x48\x1f\xa9\xbf\x60\xa1\xe6\x4b\xb6\x15\x1a\xee\x17\x65\x51\x16\xb5\x6a\xd7\xf3\x86\x2f\x81\x84\xcf\x03\x66\xca\x93\xa9\x52\x9c\x69\x3e\xdb\x9a\x25\xc8\x56\x03\xdf\x35\x1b\xbd\xf9\x39\x64\x7c\xe8\xfc\xe8\xbb\xc1\xf6\xf0\xaf\x2c\x00\x0e\x29\x9e\xcc\xa5\x08\xd0\x7c\xa7\xef\x2e\x12\xc5\x6f\x82\x7b\xb2\x7d\x8f\xe1\x88\x93\x34\xed\x90\x5b\x21\xa6\xd9\x0c\xc6\xce\x58\x9a\x9e\x78\x9f\x5e\xbf\x99\x7d\xf9\x1c\x43\xc6\x2b\x35\xe1\xb9\xf7\xbf\xe6\x6e\x75\x75\xc3\xee\xbb\xb7\x1b\xd7\xaa\x59\x31\xb5\x87\x47\xbe\x87\x56\x42\xd5\xca\xa5\x68\x2a\x0d\x8a\xaf\x05\xab\x78\x59\xfc\x5f\x94\xc5\x6b\x00\x00\x00\xff\xff\xc8\x94\x01\x38\x0c\x02\x00\x00") +var __1665560200_add_contact_verification_individualUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\x03\x21\x10\x86\xef\x3e\xc5\x1c\x5b\xe8\xa1\xf7\x3d\xd9\x5d\x03\x4b\x8d\x1b\x8c\x81\xe4\x24\xe2\x4e\x52\x61\xa3\xa9\xce\x06\xfa\xf6\x25\xc9\x36\x6d\x20\xa5\xf4\xa8\xf3\xfd\x9f\xe3\xcf\xa5\x11\x1a\x0c\x7f\x91\x02\xc6\x82\xd9\xee\xb1\x14\xb7\xc3\x02\xbc\x69\xa0\xee\xe4\x6a\xae\xc0\xa7\x48\xce\x93\x3d\x62\x0e\xdb\xe0\x1d\x85\x14\x6d\x21\x47\x63\x81\x56\x99\x8a\xfd\xb4\x38\x4f\xe1\x18\xe8\xc3\x7a\x8c\x84\xd9\xc6\x44\xd7\xd0\x7f\xac\xd0\x88\x19\x5f\x49\x03\xcf\x15\x63\x8d\xee\x16\x93\xff\x06\xcf\xf8\x3e\x62\xa1\x52\x31\x56\x6b\xc1\x8d\x98\xa0\x76\x06\xaa\x33\x20\xd6\xed\xd2\x2c\xef\x47\x6c\x88\x7d\x38\x86\x7e\x74\x03\x3c\x30\x80\x6d\x4e\x7b\x7b\xaa\x00\x8c\x58\x9b\x27\x06\x40\xe9\xf6\xec\xdf\xdc\x30\x60\xdc\xe1\xf9\xe6\xfc\x80\x5a\x49\x79\x1a\x4d\x52\xec\xad\xa3\xf3\xf2\x5f\xc3\xef\x5f\x5c\xb0\x72\x48\xb1\xe0\x55\x99\xf1\x30\x84\xbf\x52\xbf\x15\x74\x9f\x0e\xfd\x65\xbd\x85\x6e\xe7\x5c\x6f\xe0\x55\x6c\xa0\x53\x50\x77\x6a\x26\xdb\xda\x80\x16\x0b\xc9\x6b\xc1\x1e\x2b\xf6\x19\x00\x00\xff\xff\xfa\x97\x1b\xc5\xfd\x01\x00\x00") func _1665560200_add_contact_verification_individualUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1529,12 +1529,12 @@ func _1665560200_add_contact_verification_individualUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665560200_add_contact_verification_individual.up.sql", size: 524, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xfd, 0x5, 0x56, 0x92, 0x6e, 0x6e, 0xd9, 0x1c, 0x54, 0x38, 0xee, 0x9, 0x92, 0xe6, 0xf8, 0x50, 0xa2, 0x66, 0xcc, 0x5d, 0xec, 0x5b, 0x27, 0x25, 0x7d, 0xd8, 0xd0, 0x1f, 0x58, 0x79, 0x19}} + info := bindataFileInfo{name: "1665560200_add_contact_verification_individual.up.sql", size: 509, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0xbb, 0x61, 0xfd, 0xbf, 0x33, 0x1d, 0x4e, 0x5f, 0xbd, 0x86, 0x42, 0xb0, 0x6c, 0xf7, 0x39, 0x19, 0x6e, 0x72, 0x35, 0xfd, 0x1b, 0xd6, 0xbd, 0xf6, 0x81, 0x21, 0xc4, 0xaa, 0x6, 0x62, 0x40}} return a, nil } -var __1670921937_add_album_idUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcc\x49\x2a\xcd\x8d\xcf\x4c\x51\x08\x73\x0c\x72\xf6\x70\x0c\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\xe3\x49\x1f\xee\x38\x00\x00\x00") +var __1670921937_add_album_idUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcc\x49\x2a\xcd\x8d\xcf\x4c\x51\x08\x73\x0c\x72\xf6\x70\x0c\xb2\xe6\x02\x04\x00\x00\xff\xff\x8d\x2a\x26\x80\x37\x00\x00\x00") func _1670921937_add_album_idUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1549,8 +1549,8 @@ func _1670921937_add_album_idUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1670921937_add_album_id.up.sql", size: 56, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0x4d, 0x41, 0x8a, 0x0, 0x80, 0x70, 0x49, 0xe8, 0xa7, 0x96, 0xde, 0xc6, 0xd3, 0x5a, 0x62, 0x28, 0xfb, 0x56, 0x4, 0xed, 0x62, 0x48, 0xc1, 0xa5, 0x55, 0xc1, 0x3, 0x4b, 0x33, 0xe9, 0x6c}} + info := bindataFileInfo{name: "1670921937_add_album_id.up.sql", size: 55, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0xae, 0x83, 0x58, 0xb7, 0x77, 0x5, 0xca, 0xe3, 0xda, 0x32, 0x8f, 0x7b, 0xa4, 0x2f, 0x4c, 0xaf, 0x5f, 0xfa, 0x94, 0x36, 0xe4, 0xf9, 0x7, 0xc6, 0xd6, 0xb7, 0x90, 0xf3, 0xe5, 0xb5, 0x3}} return a, nil } @@ -1569,12 +1569,12 @@ func _1673373000_add_repliedUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1673373000_add_replied.up.sql", size: 67, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} + info := bindataFileInfo{name: "1673373000_add_replied.up.sql", size: 67, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x1c, 0xae, 0xf2, 0xf, 0xb4, 0xc2, 0xba, 0x3c, 0xfe, 0x7b, 0xb0, 0xf, 0xf, 0xd5, 0xbc, 0xe2, 0xa7, 0xad, 0x50, 0xd9, 0x5a, 0xe8, 0x96, 0x22, 0x65, 0x89, 0xcf, 0x4a, 0x9a, 0x1b, 0x94}} return a, nil } -var __1673428910_add_image_width_heightUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xcc\x4d\x4c\x4f\x8d\x2f\xcf\x4c\x29\xc9\x50\xf0\xf4\x0b\x71\x75\x77\x0d\xb2\xe6\xe5\x22\x41\x6b\x46\x6a\x66\x7a\x46\x09\x92\x5e\x40\x00\x00\x00\xff\xff\xea\x2c\x7c\x8d\x77\x00\x00\x00") +var __1673428910_add_image_width_heightUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\xcc\x4d\x4c\x4f\x8d\x2f\xcf\x4c\x29\xc9\x50\xf0\xf4\x0b\x71\x75\x77\x0d\xb2\xe6\x22\x41\x67\x46\x6a\x66\x7a\x46\x09\x42\x2b\x20\x00\x00\xff\xff\xd0\x3e\xff\x8c\x75\x00\x00\x00") func _1673428910_add_image_width_heightUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1589,12 +1589,12 @@ func _1673428910_add_image_width_heightUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1673428910_add_image_width_height.up.sql", size: 119, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0xc7, 0xe8, 0x11, 0x67, 0xed, 0x14, 0xc0, 0x39, 0x46, 0x32, 0xce, 0x62, 0x8f, 0x98, 0x6c, 0x8b, 0x32, 0x2a, 0xf, 0x98, 0x99, 0x9, 0x7e, 0xf1, 0xae, 0x3e, 0x2, 0x1e, 0xdc, 0x2a, 0x41}} + info := bindataFileInfo{name: "1673428910_add_image_width_height.up.sql", size: 117, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xda, 0x93, 0x2a, 0x9b, 0x6b, 0xb7, 0x96, 0xcd, 0xac, 0xf, 0xaf, 0x54, 0x89, 0x9e, 0x91, 0x5b, 0xd0, 0x4a, 0xa, 0x8d, 0x9e, 0x80, 0x66, 0x26, 0x9e, 0xb5, 0xa9, 0x8, 0xec, 0x2d, 0x6c}} return a, nil } -var __1674210659_add_contact_request_local_clockUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xc1\x6e\xea\x30\x10\x45\xf7\x91\xf2\x0f\xf7\x03\x60\xf3\xde\xf2\x89\x45\x20\x96\x78\x12\x4d\xab\x12\xd4\x65\x34\xc4\x53\x62\xe1\xd8\xe0\x99\x20\xf1\xf7\x55\xa1\x55\xa9\x50\x25\x2a\xb1\x1d\xdb\xd7\x67\xce\xcd\xb3\x62\x51\x9b\x67\xd4\xc5\x74\x61\xd0\xc6\xa0\xd4\xaa\xa0\x28\x4b\xcc\x1e\x17\xab\x87\xea\x73\xd6\x24\xde\x0f\x2c\xda\xf8\xd8\x92\x6f\x5a\x1f\xdb\x2d\xfe\x57\xf5\xbf\xdf\x27\x24\xee\xa3\xf2\x3d\x22\x44\x49\xf9\x23\x22\xcf\xc6\x63\x4c\x53\xdc\x72\x40\xef\x36\x89\xd4\xc5\x30\x82\x67\x3a\xb8\xb0\xc1\x6b\x4c\xd8\x45\x51\x4e\x4e\x8f\xa0\x60\xc1\xca\x29\x90\x07\xf7\x6b\x4a\x89\x44\x7a\x0e\x7a\x4a\x59\x0f\x8a\x8e\x8f\x23\xc4\x00\xed\x18\xeb\xe4\x36\x9d\x42\x9c\xe5\x11\xb4\x73\x02\x27\x38\x90\x77\x16\xb2\xf7\x79\xb6\x7a\x2a\x8b\xfa\x02\x7c\x69\xea\x2b\xe2\x33\xea\x04\xb3\x62\x69\xf2\x0c\x00\x5e\xe6\xa6\x02\x59\xcb\x16\xf5\xdc\x54\xe7\x21\x7e\x7c\xf8\xe7\xfd\x82\xa9\xca\xd3\xaa\xb7\xfc\x78\x59\xd4\x04\x9e\x44\x9b\x61\x67\x49\xd9\x9e\x8f\xfc\xf1\x8e\xd6\x6e\x01\xfa\x56\xda\x95\x89\x8e\xa4\x39\xd9\x68\x06\xb9\x49\xc8\xdf\x2f\x21\x6f\x01\x00\x00\xff\xff\xaf\x6f\x8b\xf4\xc6\x02\x00\x00") +var __1674210659_add_contact_request_local_clockUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xc1\x6a\xc2\x40\x10\x86\xef\x79\x8a\xff\x01\xf4\xd2\x1e\xc5\x43\x34\x0b\x16\x6c\x5a\x6a\xa4\xc7\x30\x66\xa7\x66\x71\xb3\xab\x3b\x13\xc1\xb7\x2f\x55\x04\xdb\x52\x48\xc1\xeb\x2c\xfb\xcd\xc7\x37\x59\xbe\xac\xcc\x1b\xaa\x7c\xb6\x34\x68\x62\x50\x6a\x54\x90\x17\x05\xe6\x2f\xcb\xf5\x73\x79\x9d\xd5\x89\x0f\x3d\x8b\xd6\x3e\x36\xe4\xeb\xc6\xc7\x66\x87\xa7\xb2\x9a\xfc\x1b\x90\xb8\x8b\xca\x77\x20\x88\x92\xf2\x85\x90\x8d\xc7\x98\xa5\xb8\xe3\x80\xce\x6d\x13\xa9\x8b\x61\x04\xcf\x74\x74\x61\x8b\x8f\x98\xb0\x8f\xa2\x9c\x9c\x9e\x40\xc1\x82\x95\x53\x20\x0f\xee\x36\x94\x12\x89\x74\x1c\xf4\x0b\xb2\xe9\x15\x2d\x9f\x46\x88\x01\xda\x32\x36\xc9\x6d\x5b\x85\x38\xcb\x23\x68\xeb\x04\x4e\x70\x24\xef\x2c\xe4\xe0\xb3\xf5\x6b\x91\x57\x37\xd2\x2b\x53\xfd\xb2\xbd\x68\x4e\x31\xcf\x57\x26\x03\x80\xf7\x85\x29\x41\xd6\xb2\x45\xb5\x30\xe5\x79\x86\x3f\xbf\x3d\x64\x80\x29\x8b\x49\x36\x68\xd9\xed\x75\xa6\xf0\x24\x5a\xf7\x7b\x4b\xca\xf6\xf2\xe4\x4f\xf7\x8a\x35\xc4\xe6\xdb\xa1\x7e\x16\x68\x49\xea\x73\x85\xba\x97\x21\x21\x1e\xaf\x21\x3e\x03\x00\x00\xff\xff\x1c\x56\x1e\xac\xb3\x02\x00\x00") func _1674210659_add_contact_request_local_clockUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1609,12 +1609,12 @@ func _1674210659_add_contact_request_local_clockUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1674210659_add_contact_request_local_clock.up.sql", size: 710, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xa6, 0xb6, 0xb5, 0xbb, 0xc6, 0x80, 0x6b, 0x27, 0xd8, 0xfc, 0xe2, 0x74, 0x81, 0x5c, 0xc4, 0xe2, 0xd8, 0x10, 0x3, 0x5b, 0x49, 0x61, 0xa3, 0x77, 0xaa, 0x9a, 0x2d, 0x14, 0x4a, 0xb5, 0x11}} + info := bindataFileInfo{name: "1674210659_add_contact_request_local_clock.up.sql", size: 691, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x72, 0x39, 0xfe, 0x72, 0x98, 0xfc, 0x91, 0x20, 0x10, 0xe8, 0xf5, 0xac, 0x79, 0xa8, 0x1c, 0xca, 0x7b, 0x35, 0xa, 0xc1, 0x56, 0x49, 0x9a, 0xfc, 0xbd, 0x64, 0x9d, 0xdf, 0xd2, 0x60, 0x70}} return a, nil } -var __1675212323_add_deleted_byUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\xcd\x49\x2d\x49\x4d\x89\x4f\xaa\x54\x08\x73\x0c\x72\xf6\x70\x0c\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\xaa\x29\x23\x16\x3a\x00\x00\x00") +var __1675212323_add_deleted_byUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\xcd\x49\x2d\x49\x4d\x89\x4f\xaa\x54\x08\x73\x0c\x72\xf6\x70\x0c\xb2\xe6\x02\x04\x00\x00\xff\xff\x50\x0a\xe8\xde\x39\x00\x00\x00") func _1675212323_add_deleted_byUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1629,12 +1629,12 @@ func _1675212323_add_deleted_byUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1675212323_add_deleted_by.up.sql", size: 58, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0x7c, 0x44, 0x9e, 0xce, 0xa5, 0x7, 0xa5, 0x25, 0xee, 0x69, 0x7, 0x14, 0x49, 0x66, 0xeb, 0xd0, 0x4f, 0x95, 0x7a, 0x51, 0x9b, 0xad, 0x71, 0x17, 0xef, 0x57, 0xdb, 0x2c, 0x2f, 0x48, 0x47}} + info := bindataFileInfo{name: "1675212323_add_deleted_by.up.sql", size: 57, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x37, 0x29, 0x2f, 0xd, 0x5a, 0xb6, 0xdb, 0xa7, 0x8, 0x86, 0xfc, 0x7a, 0x70, 0xd8, 0x4d, 0xe6, 0xf0, 0x57, 0xe7, 0xd1, 0x95, 0xd5, 0x4, 0x40, 0x2f, 0x7a, 0x5, 0x4f, 0xc2, 0x97, 0xbc}} return a, nil } -var __1675247084_add_activity_center_statesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcb\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x90\x77\xf8\xe9\xd4\x8e\xce\x4e\xa9\x9c\x10\x08\x09\x34\xa7\xb8\x85\x50\x0e\xec\xd2\xc1\x3b\x04\xdf\x5e\x1c\x1c\xfb\x00\xdf\x65\xa1\xc0\x04\x0e\x73\x22\x20\x5e\x91\x0b\x83\x1e\xb1\x72\x45\x5f\x6d\x7b\x6f\xf6\x69\xab\xec\x26\xaf\xa6\xd6\x4d\x14\xa3\x77\xc0\xb3\x6b\x53\x91\x1d\x73\x29\x89\x42\xf6\x6e\x3a\x7b\xe7\x5d\xcc\x95\x16\x46\xcc\x5c\x0e\xfd\xf0\xc7\xc3\x84\x7b\x48\x37\xaa\x18\x4f\x3f\xfe\x0d\x00\x00\xff\xff\xec\x44\x76\xd4\x8d\x00\x00\x00") +var __1675247084_add_activity_center_statesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcb\xb1\x0a\xc2\x30\x10\x06\xe0\xfd\x9e\xe2\xa7\x53\x33\x3a\x77\x4a\xe5\x84\x40\x48\xa0\x39\xc5\x2d\x84\x72\x60\x97\x0c\xe6\x10\x7c\x7b\x27\xc7\x3e\xc0\x77\xdd\xd8\x0b\x43\xfc\x1a\x19\x08\x37\xa4\x2c\xe0\x67\x28\x52\xd0\x76\x3b\x3e\x87\x7d\xeb\xae\xdd\xf4\x5d\x87\x35\xd3\x81\x99\x80\x57\x1b\x75\xa8\x76\xac\x39\x47\xf6\x89\xdc\x42\x14\x52\xe1\x4d\x10\x92\xe4\x53\x3b\xfd\xe5\xe4\xf0\xf0\xf1\xce\x05\xf3\xc5\x2d\xf4\x0b\x00\x00\xff\xff\x09\xb9\x69\x4b\x88\x00\x00\x00") func _1675247084_add_activity_center_statesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1649,12 +1649,12 @@ func _1675247084_add_activity_center_statesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1675247084_add_activity_center_states.up.sql", size: 141, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xfa, 0x2c, 0xfe, 0x7, 0x74, 0x56, 0x5d, 0x3d, 0xf6, 0x6d, 0x29, 0x94, 0xc8, 0xd3, 0xd8, 0x13, 0x45, 0x19, 0xaa, 0xa2, 0x50, 0x89, 0x6b, 0x8f, 0x11, 0x41, 0x78, 0x83, 0x9c, 0x3, 0x8f}} + info := bindataFileInfo{name: "1675247084_add_activity_center_states.up.sql", size: 136, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x90, 0x7d, 0x55, 0xc7, 0x40, 0x29, 0x26, 0x97, 0x45, 0x5c, 0xdf, 0xba, 0x61, 0xb, 0xfc, 0x3d, 0x7a, 0x6c, 0x42, 0xe4, 0x95, 0x78, 0xb0, 0xc5, 0x1f, 0x73, 0xe9, 0x33, 0x51, 0xc8, 0x81}} return a, nil } -var __1675272329_fix_protocol_migrationUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x0d\x70\x71\x0c\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x08\x76\x0d\x81\x71\xe2\x8b\x52\x0b\x4b\x53\x8b\x4b\xe2\x8b\x4b\x12\x4b\x52\x15\x6c\x15\x9c\x1d\x83\x5d\x79\xb9\x14\x14\x14\x14\xc2\x3d\x5c\xfd\x14\x12\x53\x52\x52\x53\x14\x42\x3c\x5c\xfd\x20\x82\x0a\x0a\x46\x20\x86\xab\x9f\x8b\x35\x2f\x17\x2f\x17\x31\x26\x17\xa5\xe6\xe6\x97\xa4\xe2\xb2\x20\x23\xb1\x38\x1e\x6c\x49\x7c\x69\x31\x8a\x3d\xc6\x08\x7b\x00\x01\x00\x00\xff\xff\xaf\xd9\x40\x03\xc0\x00\x00\x00") +var __1675272329_fix_protocol_migrationUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x0d\x70\x71\x0c\x71\x55\x48\xce\xcf\x2b\x49\x4c\x2e\x29\x56\x08\x76\x0d\x81\x71\xe2\x8b\x52\x0b\x4b\x53\x8b\x4b\xe2\x8b\x4b\x12\x4b\x52\x15\x6c\x15\x9c\x1d\x83\x5d\xb9\x14\x14\x14\x14\xc2\x3d\x5c\xfd\x14\x12\x53\x52\x52\x53\x14\x42\x3c\x5c\xfd\xc0\x62\x0a\x0a\x46\x5c\x0a\x0a\xae\x7e\x2e\xd6\x5c\x5c\xc4\x18\x5a\x94\x9a\x9b\x5f\x92\x8a\xc3\xec\x8c\xc4\xe2\x78\xb0\xf9\xf1\xa5\xc5\xc8\x56\x18\xc3\xac\x00\x04\x00\x00\xff\xff\x70\x56\x51\x26\xb7\x00\x00\x00") func _1675272329_fix_protocol_migrationUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1669,12 +1669,12 @@ func _1675272329_fix_protocol_migrationUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1675272329_fix_protocol_migration.up.sql", size: 192, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0x99, 0xe1, 0x87, 0xeb, 0xb8, 0x7d, 0xa8, 0x92, 0x72, 0x8, 0xf3, 0x49, 0x5a, 0x50, 0x12, 0x26, 0xe2, 0x33, 0xef, 0x94, 0x81, 0x25, 0x21, 0x19, 0xb6, 0xd, 0x5f, 0xef, 0x37, 0x34, 0x25}} + info := bindataFileInfo{name: "1675272329_fix_protocol_migration.up.sql", size: 183, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xe0, 0x11, 0x4c, 0x66, 0x55, 0x72, 0xd3, 0xe6, 0x98, 0xa4, 0xe7, 0x44, 0xf9, 0x3b, 0x3a, 0x3f, 0xd9, 0x91, 0x1e, 0x4f, 0xfc, 0x56, 0x63, 0xe5, 0xa4, 0x83, 0xfc, 0x7c, 0xcf, 0x18, 0x99}} return a, nil } -var __1676998418_fix_activity_center_migrationUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcd\xb1\x0a\xc2\x30\x18\x45\xe1\x3d\x90\x77\xb8\x63\x1d\x9d\x9d\xd2\x72\x8b\x81\x98\x40\xf2\x83\x6e\x21\x94\x80\x5d\x3a\x98\x20\xf8\xf6\x0e\x82\x74\xe9\x7c\x38\x7c\x53\xa4\x11\x42\xcc\xe8\x08\xd8\x19\x3e\x08\xf8\xb0\x49\x12\xca\xd2\xd7\xf7\xda\x3f\x79\xa9\x5b\xaf\xaf\xdc\x7a\xe9\xb5\x61\xd0\x0a\x78\x96\x96\x5b\xad\x1b\xc6\x10\x1c\x8d\xd7\xea\x74\xd1\x4a\x2b\xeb\x13\xa3\xc0\x7a\x09\x47\x7f\xa2\xe3\x24\x38\x03\xf7\x2b\x23\x77\xe2\xf0\x4f\x73\x0c\xb7\x83\xff\xe7\x7c\x03\x00\x00\xff\xff\x22\x74\xc5\xa3\xb8\x00\x00\x00") +var __1676998418_fix_activity_center_migrationUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcd\xb1\x0a\xc2\x30\x14\x85\xe1\x3d\x4f\x71\xc6\x3a\x3a\x3b\xa5\xe5\x14\x03\x31\x81\xe4\x82\x6e\x21\x94\x80\x5d\x3a\x98\x8b\xe0\xdb\x8b\x8b\x74\xe9\xfc\xf3\xf3\x4d\x89\x56\x08\xb1\xa3\x27\xe0\x66\x84\x28\xe0\xc3\x65\xc9\xa8\x8b\xae\xef\x55\x3f\x65\x69\x9b\xb6\x57\xe9\x5a\xb5\x75\x0c\x06\x78\xd6\x5e\x7a\x6b\x1b\xc6\x18\x3d\x6d\x30\xa7\x8b\x31\x2e\x64\x26\x81\x0b\x12\x8f\xde\x4c\xcf\x49\x70\x06\xee\x57\x26\xee\xb4\xe1\x9f\xe6\x14\x6f\x07\xff\x4f\xf9\x06\x00\x00\xff\xff\x69\x48\x3f\x07\xb2\x00\x00\x00") func _1676998418_fix_activity_center_migrationUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1689,12 +1689,12 @@ func _1676998418_fix_activity_center_migrationUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1676998418_fix_activity_center_migration.up.sql", size: 184, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x14, 0xd1, 0x48, 0x30, 0xc3, 0x5f, 0xdb, 0xd9, 0xb5, 0x63, 0xdc, 0x31, 0x94, 0xa7, 0xdb, 0x4f, 0xf, 0xe9, 0xfd, 0xae, 0x16, 0x52, 0xf7, 0xcc, 0x33, 0x9f, 0x51, 0xbc, 0x9f, 0x91, 0x29}} + info := bindataFileInfo{name: "1676998418_fix_activity_center_migration.up.sql", size: 178, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0xdc, 0x64, 0xb1, 0x47, 0x67, 0xda, 0x2c, 0x26, 0x29, 0x6b, 0x6f, 0xb, 0xfa, 0x45, 0xf3, 0xad, 0x8b, 0x1a, 0x5f, 0x1c, 0xed, 0xd7, 0xea, 0x54, 0xf5, 0x3f, 0xb8, 0xf6, 0xf9, 0x44, 0x53}} return a, nil } -var __1677278861_add_deleted_column_to_activity_center_notifications_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xce\xc1\x4a\xc0\x30\x0c\xc6\xf1\xfb\x60\xef\x90\xa3\xc2\xde\xc0\x53\xb7\x66\x20\xc4\x16\x66\x07\xde\x4a\x69\x2b\x0b\xe8\x26\x6b\x14\x7d\x7b\x19\x6e\x5e\x84\xcd\x6b\x08\xff\xef\xa7\xc8\xe1\x00\x4e\xb5\x84\x10\xa2\xf0\x07\xcb\x97\x8f\x79\x96\xbc\xfa\x79\x11\x7e\xe6\x18\x84\x97\xb9\xd4\x15\x80\xd2\x1a\x3a\x4b\xe3\x83\x81\x94\x5f\xb2\xe4\x04\xad\xb5\x84\xca\x80\xb1\x0e\xcc\x48\x04\x1a\x7b\x35\x92\x83\x5e\xd1\x23\xde\xd5\x55\x5d\x75\x03\x2a\x87\x70\x6f\x34\x3e\xfd\xd9\x88\x53\x10\xcf\xc9\xef\x3d\x9f\xb8\xbc\x72\x29\x39\xf9\x10\x63\x7e\xdb\x4e\x9c\x3e\xb7\x71\x6b\xce\x81\x37\x7b\xaa\x39\x6c\x0d\xfc\xc6\x1a\x38\x6a\xb7\xd7\xa4\x13\x4a\x78\x97\x69\x59\xff\x2d\xfa\x79\xbf\x06\x7d\x07\x00\x00\xff\xff\xea\xf5\x2e\xa8\x85\x01\x00\x00") +var __1677278861_add_deleted_column_to_activity_center_notifications_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xce\xc1\x4a\x03\x31\x10\xc6\xf1\x7b\x9e\xe2\x3b\x2a\xec\x1b\x78\x4a\x9b\x29\x08\x63\x02\x35\x0b\xde\x42\x48\x22\x1d\xd0\x5d\x69\x46\xd1\xb7\x17\xb1\xeb\x45\xd8\xed\x75\x18\xfe\xdf\xcf\x72\xa4\x23\xa2\xdd\x31\x21\x17\x95\x0f\xd1\xaf\x54\xda\xa4\xed\x9c\xa6\x59\xe5\x59\x4a\x56\x99\xa7\x6e\x00\xeb\x1c\xf6\x81\xc7\x07\x8f\xda\x5e\x9a\xb6\x8a\x5d\x08\x4c\xd6\xc3\x87\x08\x3f\x32\xc3\xd1\xc1\x8e\x1c\x71\xb0\xfc\x48\x77\xc6\xec\x8f\x64\x23\xe1\xde\x3b\x7a\xfa\x37\x50\x4e\x59\x93\xd4\x74\xa9\xa5\x2a\xfd\x55\x7a\x6f\x35\xe5\x52\xda\xdb\xcf\x49\xea\xa7\x01\x82\x5f\xc7\xdd\x5c\x4a\xc3\x02\x1b\xf0\xd7\x1a\xb0\xc4\x6e\xb7\x3c\x2b\x8e\xfc\xae\xa7\xf9\x7c\x2d\xe7\xf7\x7b\x53\xf3\x1d\x00\x00\xff\xff\x8f\xc5\x28\x67\x7d\x01\x00\x00") func _1677278861_add_deleted_column_to_activity_center_notifications_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1709,12 +1709,12 @@ func _1677278861_add_deleted_column_to_activity_center_notifications_tableUpSql( return nil, err } - info := bindataFileInfo{name: "1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql", size: 389, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0x27, 0xac, 0x5b, 0x76, 0x25, 0x62, 0x2, 0x84, 0x9a, 0x8d, 0x5f, 0xf4, 0x3e, 0x8b, 0xdc, 0x5e, 0xc, 0x3d, 0x5f, 0x8e, 0xed, 0x40, 0x4f, 0xae, 0x14, 0x14, 0x8, 0xd7, 0x2a, 0x42, 0x6c}} + info := bindataFileInfo{name: "1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql", size: 381, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x3a, 0x95, 0xaf, 0x81, 0xb0, 0x85, 0x8d, 0x73, 0xda, 0x7b, 0x2a, 0x35, 0xa6, 0xaa, 0xcc, 0x4c, 0x35, 0xa3, 0xa8, 0xbd, 0xd1, 0x37, 0xe8, 0x5d, 0x83, 0xa4, 0x33, 0x1f, 0x10, 0xe4, 0xe6}} return a, nil } -var __1677486338_add_community_tokens_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\x6f\xbb\x30\x14\xc4\x77\x24\xbe\xc3\x53\xa6\x44\x62\xf8\x0f\x7f\x75\xe9\xe4\xb4\x46\x42\x75\xa1\x02\x47\x4a\x26\x64\xf0\xa3\xb5\x8a\x6d\x64\x9b\x81\x6f\x5f\x41\xdb\x28\x69\x18\xb2\xbe\xfb\x9d\xee\xe9\xee\xa9\xa4\x84\x53\xe0\x64\xcf\x28\x64\x29\xe4\x05\x07\x7a\xcc\x2a\x5e\x41\x6b\xb5\x1e\x8d\x0a\x53\x1d\xec\x27\x1a\x0f\xdb\x38\x82\x8b\xab\x92\xc0\xe9\x91\x2f\x96\xfc\xc0\x58\x32\xcb\x42\x4a\x87\xde\xaf\x28\x61\x1a\x10\xb2\xfc\xcf\xd5\x08\x8d\x2b\xb0\x9f\x74\x63\xfb\x15\x41\xa2\x6f\x9d\x1a\x82\xb2\x66\xcd\x36\x0e\x43\x3f\x5d\xa5\xc0\x33\x4d\xc9\x81\x71\xf8\xb7\x10\xca\x74\xca\xa8\x80\xf5\x0f\xba\x2f\x0a\x46\x49\x7e\x8b\xa7\x84\x55\xf4\xfb\x71\x27\x8c\xef\xd0\x89\xa6\xc7\x7b\x78\x87\xda\xce\x01\xd8\x77\xb5\x44\x1f\xdc\xd8\x86\x7b\x7c\xed\x87\x50\x66\x6e\xf5\xa6\x24\x89\x43\x6f\xa7\xda\x07\x11\x56\x2a\x54\x5a\xbc\x63\xdd\x08\x8f\x0f\xff\xaf\x3b\x39\x87\x6c\x36\x0b\xf9\x56\x66\xaf\xa4\x3c\xc1\x0b\x3d\x6d\x2f\x77\x4c\x7e\x67\x4b\xce\x4f\xec\xe2\x68\xf7\x18\x47\x5f\x01\x00\x00\xff\xff\xd7\x2a\x20\xd2\x1f\x02\x00\x00") +var __1677486338_add_community_tokens_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xb1\x6e\x83\x30\x10\x86\x77\x9e\xe2\x94\x29\x91\x18\x3a\x54\x5d\x3a\x39\xad\x91\x50\x5d\xa8\xc0\x91\x92\x09\x19\x7c\xb4\x56\xb1\x8d\x6c\x33\xf0\xf6\x15\x51\x1b\x85\x3a\x43\xd6\xdf\xdf\xef\x3b\x7d\xf7\x52\x51\xc2\x29\x70\xb2\x67\x14\xf2\x0c\x8a\x92\x03\x3d\xe6\x35\xaf\xa1\xb3\x5a\x4f\x46\x85\xb9\x09\xf6\x1b\x8d\x87\x6d\x02\x57\xa1\x92\xc0\xe9\x91\x9f\x1b\xc5\x81\xb1\x34\x01\x10\x52\x3a\xf4\x3e\x7e\x08\xf3\x88\x90\x17\xeb\xd0\x08\x8d\x31\xea\x67\xdd\xda\x21\xce\x25\xfa\xce\xa9\x31\x28\x6b\x6e\x94\xa6\x71\x1c\xe6\xd5\x04\x78\xa5\x19\x39\x30\x0e\x0f\x0b\xa0\x4c\xaf\x8c\x0a\xd8\xfc\x92\xfb\xb2\x64\x94\x14\x31\x9d\x11\x56\xd3\xf3\xca\x4e\x18\xdf\xa3\x13\xed\x80\x77\xe0\x0e\xb5\x5d\xbe\xc7\xa1\x6f\x24\xfa\xe0\xa6\x2e\xdc\x51\xeb\xbe\x84\x32\x8b\xcb\xff\x72\x24\x8e\x83\x9d\x1b\x1f\x44\x88\xcd\x29\x2d\x3e\xb1\x69\x85\xc7\xa7\xc7\xb5\x8c\xcb\x84\xcd\x66\x01\x3f\xaa\xfc\x9d\x54\x27\x78\xa3\xa7\xed\xf5\xe9\xd2\xbf\x53\xa5\x97\x0d\x76\xc9\xee\x39\xf9\x09\x00\x00\xff\xff\x3d\x3b\x02\x66\x0f\x02\x00\x00") func _1677486338_add_community_tokens_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1729,12 +1729,12 @@ func _1677486338_add_community_tokens_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1677486338_add_community_tokens_table.up.sql", size: 543, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xb9, 0x13, 0xdf, 0x63, 0xe1, 0x73, 0x71, 0xd2, 0x55, 0xdf, 0x7e, 0x37, 0xc0, 0xeb, 0x90, 0xaf, 0x3e, 0x55, 0x48, 0x7b, 0xee, 0x71, 0x7, 0xc0, 0x6d, 0x97, 0x3c, 0x5e, 0xa2, 0x79, 0xc8}} + info := bindataFileInfo{name: "1677486338_add_community_tokens_table.up.sql", size: 527, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x7b, 0x3d, 0x7e, 0x79, 0xc4, 0x3a, 0xf1, 0xda, 0x4b, 0xc6, 0xd1, 0xd, 0xfb, 0xb2, 0xb9, 0x7f, 0x81, 0x29, 0xab, 0xd8, 0x1, 0x20, 0xd7, 0xe1, 0xaf, 0x3e, 0x67, 0x1b, 0xdb, 0xf9, 0xd5}} return a, nil } -var __1678292329_add_collapsed_categoriesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xc9\x49\x2c\x28\x4e\x4d\x89\x4f\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x4f\x4e\x2c\x49\x4d\xcf\x2f\xca\x4c\x2d\x56\xd0\xe0\xe5\x52\x50\x40\xc8\x64\xa6\x28\x84\x39\x06\x39\x7b\x38\x06\x29\xf8\xf9\x87\x28\xf8\x85\xfa\xf8\xe8\x80\x55\x40\x74\xe0\x56\x10\xea\xe7\x19\x18\xea\xaa\x81\x6c\x92\x0e\xb2\x2e\x4d\x05\x7f\x3f\x05\x67\x7f\x3f\x37\x1f\x4f\xe7\x10\x85\x20\xd7\x00\x1f\x47\x67\x57\x5e\x2e\x4d\x6b\x5e\x2e\x40\x00\x00\x00\xff\xff\xf5\x6b\x19\x2d\xaf\x00\x00\x00") +var __1678292329_add_collapsed_categoriesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xc9\x49\x2c\x28\x4e\x4d\x89\x4f\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x4f\x4e\x2c\x49\x4d\xcf\x2f\xca\x4c\x2d\x56\xd0\xe0\x52\x50\x40\x48\x64\xa6\x28\x84\x39\x06\x39\x7b\x38\x06\x29\xf8\xf9\x87\x28\xf8\x85\xfa\xf8\xe8\x80\x14\x40\xd4\xe3\x94\x0f\xf5\xf3\x0c\x0c\x75\xd5\x40\x36\x47\x07\x59\x93\xa6\x82\xbf\x9f\x82\xb3\xbf\x9f\x9b\x8f\xa7\x73\x88\x42\x90\x6b\x80\x8f\xa3\xb3\x2b\x97\xa6\x35\x17\x20\x00\x00\xff\xff\x49\x26\xa5\xb1\xaa\x00\x00\x00") func _1678292329_add_collapsed_categoriesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1749,12 +1749,12 @@ func _1678292329_add_collapsed_categoriesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1678292329_add_collapsed_categories.up.sql", size: 175, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0xc5, 0x3a, 0x6, 0xde, 0x1b, 0x47, 0x8e, 0x79, 0xd3, 0x48, 0x48, 0xb8, 0xee, 0x8f, 0x59, 0xc0, 0x1c, 0x4d, 0x87, 0x85, 0x65, 0x8, 0x4b, 0xd8, 0x34, 0x47, 0x58, 0x9c, 0x59, 0x25, 0x55}} + info := bindataFileInfo{name: "1678292329_add_collapsed_categories.up.sql", size: 170, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x63, 0x86, 0xd5, 0x7, 0xe2, 0x25, 0x15, 0x1b, 0xfe, 0xf3, 0xe, 0x50, 0x48, 0x11, 0x3c, 0x7c, 0xc6, 0xe5, 0xab, 0x8d, 0x1f, 0xe8, 0x3c, 0xcb, 0xf0, 0x8d, 0xa7, 0x49, 0x4c, 0x16, 0x4f}} return a, nil } -var __1678800760_add_index_to_raw_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x4f\xad\x28\xc8\x2c\x4a\x4d\x89\xcf\x4c\xa9\x50\xf0\xf7\x43\x91\x53\xd0\x80\xb2\xe2\x4b\x2a\x0b\x52\x75\x14\x8a\x53\xf3\x4a\xc0\x64\x4a\x7c\x72\x7e\x69\x5e\x89\xa6\x35\x2f\x17\x20\x00\x00\xff\xff\x0f\xcd\xe1\x26\x59\x00\x00\x00") +var __1678800760_add_index_to_raw_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x4f\xad\x28\xc8\x2c\x4a\x4d\x89\xcf\x4c\xa9\x50\xf0\xf7\x43\x91\x53\xd0\x80\xb2\xe2\x4b\x2a\x0b\x52\x75\x14\x8a\x53\xf3\x4a\xc0\x64\x4a\x7c\x72\x7e\x69\x5e\x89\xa6\x35\x17\x20\x00\x00\xff\xff\xbf\x46\xf3\xa9\x58\x00\x00\x00") func _1678800760_add_index_to_raw_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1769,12 +1769,12 @@ func _1678800760_add_index_to_raw_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1678800760_add_index_to_raw_messages.up.sql", size: 89, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xb9, 0xc9, 0x1, 0xcd, 0xb8, 0xcc, 0xff, 0x1d, 0x8e, 0x5c, 0x77, 0xad, 0x10, 0xd7, 0x30, 0x7c, 0xa, 0x8a, 0xbb, 0x7d, 0xf0, 0xf8, 0xe5, 0xb2, 0x8a, 0x89, 0xca, 0x40, 0xa4, 0x7f, 0x80}} + info := bindataFileInfo{name: "1678800760_add_index_to_raw_messages.up.sql", size: 88, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xd9, 0x8d, 0x22, 0x46, 0xae, 0x7b, 0x53, 0x3e, 0x51, 0x39, 0xad, 0xad, 0x38, 0x50, 0x6, 0xfa, 0xb9, 0xc4, 0x9f, 0x8d, 0xd2, 0x67, 0x0, 0xef, 0x58, 0x13, 0xab, 0x6a, 0x67, 0xf3, 0x7e}} return a, nil } -var __1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8c\xcd\x0a\x82\x40\x10\x80\xef\x82\xef\x30\x47\x05\xdf\xa0\x93\xc6\x04\xd2\xa6\xa1\x13\xe8\x69\x90\x76\x0e\x1b\xe9\xd2\xce\xda\xf3\x47\x61\x44\xe7\xef\x67\xdf\x61\x49\x08\x54\x56\x06\xa1\x3e\x40\xd3\x12\xe0\x50\xf7\xd4\xc3\xd5\xcf\xf3\xba\xb8\xe8\x44\x39\xc8\x63\x15\x8d\xca\xd1\xf3\xcd\xbb\x85\x83\x3c\x65\xba\x8b\xe5\xc9\xda\x20\xaa\xa2\x90\xa5\x09\xc0\x26\xb2\xb3\x50\x99\xb6\xfa\xfc\x9a\x8b\x31\xc5\x1b\x6e\x2e\x10\x0e\xf4\x4f\xce\x5d\x7d\x2a\xbb\x11\x8e\x38\x66\xbf\x45\xf1\x2d\xf2\x34\xc9\x77\x69\xf2\x0a\x00\x00\xff\xff\x56\x1e\xa0\x79\xad\x00\x00\x00") +var __1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\xc1\xca\x82\x50\x10\xc5\xf1\xfd\x7d\x8a\xb3\x54\xf0\x0d\xbe\x95\x7e\x4c\x20\xdd\x34\x74\x02\x5d\x0d\xd2\x9d\xc5\x8d\x54\x72\xb4\xe7\x0f\xc2\x88\xd6\xe7\x7f\x7e\xff\x0d\xe5\x4c\xe0\xbc\xf0\x84\xf2\x80\xaa\x66\x50\x57\xb6\xdc\xe2\x3a\x8f\xe3\x36\xc5\x35\xaa\xc9\xa2\x8f\x4d\x6d\x35\x59\x67\xb9\xcd\x71\x92\x45\x9f\x3a\xdc\x35\xc8\x10\xc2\xa2\x66\x6a\x48\x1c\xb0\x77\x12\x03\x0a\x5f\x17\x6f\xae\xba\x78\x9f\x39\x60\x2f\xc1\xd4\xf1\xcf\x70\x6e\xca\x53\xde\xf4\x38\x52\x9f\x7c\x81\xec\x73\x48\x5d\xfa\xe7\x5e\x01\x00\x00\xff\xff\xbe\xbf\x0f\x39\xa8\x00\x00\x00") func _1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1789,12 +1789,12 @@ func _1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSql( return nil, err } - info := bindataFileInfo{name: "1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql", size: 173, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xf9, 0xbd, 0xc, 0xbb, 0xa5, 0xbf, 0xe8, 0xfc, 0xe5, 0x3b, 0x24, 0x2f, 0xe6, 0x0, 0x2a, 0x64, 0x22, 0xcf, 0xc4, 0x3a, 0xe8, 0x4d, 0x5f, 0xc6, 0xc5, 0xb6, 0x9e, 0xb1, 0x4e, 0x7a, 0xa8}} + info := bindataFileInfo{name: "1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql", size: 168, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0x1, 0xb4, 0xb2, 0x94, 0x25, 0xd5, 0x2e, 0x45, 0xc3, 0xb1, 0x2c, 0xeb, 0x1a, 0x52, 0xe0, 0x4b, 0x9b, 0x46, 0xf4, 0xc, 0xac, 0x1, 0x1e, 0x90, 0xbc, 0x64, 0x38, 0x10, 0xf1, 0xaf, 0xac}} return a, nil } -var __1679326850_add_community_token_ownersUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8d\x41\xaa\x83\x30\x14\x45\xe7\x82\x7b\xb8\x43\x05\x77\xf0\x47\xf9\xf2\x0a\xa1\x69\x2c\xfa\x0a\x3a\x12\x51\xa1\x52\x92\x80\x89\x94\xee\xbe\xa8\x38\x68\x3b\xbd\x97\x73\x4e\x5e\x92\x60\x02\x8b\x7f\x45\x90\x27\xe8\x82\x41\xb5\xac\xb8\x42\xef\x8c\x59\xec\x14\x5e\x6d\x70\x8f\xd1\xb6\xee\x69\xc7\xd9\x23\x89\x23\xa0\xbf\x77\x93\x6d\xa7\x01\x52\xf3\xc6\xe8\x9b\x52\xd9\xfa\x74\xc3\x30\x8f\xde\x83\xa9\xfe\x7a\x36\xfe\x73\x47\x5e\x28\xb5\xf6\x75\x91\x8b\x8a\x76\x81\x71\x8b\x0d\xbf\xe2\x6b\x29\x2f\xa2\x6c\x70\xa6\x26\x39\xf2\xd9\x91\xcb\x76\x7b\x1a\x47\xe9\x5f\x1c\xbd\x03\x00\x00\xff\xff\xf4\x02\x59\x85\xd5\x00\x00\x00") +var __1679326850_add_community_token_ownersUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8d\x41\xaa\x83\x30\x14\x45\xe7\x59\xc5\x1d\x2a\xb8\x83\x3f\xca\x97\x57\x08\x4d\x63\xd1\x57\xd0\x91\x88\x0a\x95\x92\x04\x4c\xa4\x74\xf7\xa5\x29\x0e\xa4\xd3\x7b\x39\xe7\x94\x35\x49\x26\xb0\xfc\xd7\x04\x75\x82\xa9\x18\xd4\xaa\x86\x1b\x8c\xde\xda\xcd\x2d\xf1\xd5\x47\xff\x98\x5d\xef\x9f\x6e\x5e\x03\x32\x01\x8c\xf7\x61\x71\xfd\x32\x41\x19\x4e\x88\xb9\x69\x5d\x08\x60\x98\xa6\x75\x0e\x01\x4c\xed\xf1\x48\xf0\x71\x46\x59\x69\xfd\x89\x9b\xaa\x94\x0d\x25\xdc\xfa\xcd\xc5\x1f\xeb\xb5\x56\x17\x59\x77\x38\x53\x97\xed\xe9\x62\x6f\x15\x5f\x77\x2e\xf2\x3f\xf1\x0e\x00\x00\xff\xff\x7d\xa9\x13\x2e\xce\x00\x00\x00") func _1679326850_add_community_token_ownersUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1809,12 +1809,12 @@ func _1679326850_add_community_token_ownersUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1679326850_add_community_token_owners.up.sql", size: 213, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x55, 0x2, 0xfb, 0x6f, 0x5f, 0xc0, 0x25, 0xbb, 0x6d, 0x2, 0xdd, 0x62, 0x64, 0x6a, 0x18, 0x7b, 0xc1, 0x65, 0x83, 0x27, 0xa8, 0x5d, 0x27, 0xec, 0xa9, 0xc7, 0x10, 0x66, 0xde, 0x54, 0xa3}} + info := bindataFileInfo{name: "1679326850_add_community_token_owners.up.sql", size: 206, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0xe6, 0x25, 0x67, 0xd1, 0xd6, 0x54, 0x88, 0xb1, 0x80, 0x1e, 0x2d, 0x9c, 0xfa, 0x1c, 0xc7, 0x63, 0x6e, 0xf9, 0x66, 0xb1, 0x68, 0xc6, 0xf8, 0x51, 0xb6, 0xd5, 0x4e, 0x93, 0x39, 0x5e, 0xc0}} return a, nil } -var __1680011500_add_album_images_countUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcc\x49\x2a\xcd\x8d\xcf\xcc\x05\x89\xc7\x27\xe7\x97\xe6\x95\x28\x78\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x58\xf3\x72\x01\x02\x00\x00\xff\xff\x23\x49\xc6\x67\x48\x00\x00\x00") +var __1680011500_add_album_images_countUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\xcc\x49\x2a\xcd\x8d\xcf\xcc\x05\x89\xc7\x27\xe7\x97\xe6\x95\x28\x78\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x58\x73\x01\x02\x00\x00\xff\xff\x14\x0a\x0d\x8a\x47\x00\x00\x00") func _1680011500_add_album_images_countUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1829,8 +1829,8 @@ func _1680011500_add_album_images_countUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1680011500_add_album_images_count.up.sql", size: 72, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x2f, 0x4d, 0xd2, 0xaa, 0xdc, 0x5, 0xb, 0xd4, 0x27, 0x67, 0x53, 0x97, 0x88, 0x36, 0xb2, 0xc6, 0x38, 0xe4, 0xe0, 0xb5, 0xb6, 0xce, 0xf8, 0x1e, 0xf6, 0xcd, 0x5, 0x1e, 0x7c, 0x92, 0x82}} + info := bindataFileInfo{name: "1680011500_add_album_images_count.up.sql", size: 71, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x55, 0x99, 0x31, 0xcc, 0x80, 0x78, 0xc3, 0x51, 0x13, 0x63, 0x6f, 0x1a, 0xfd, 0x53, 0xd2, 0xf4, 0x13, 0x4b, 0xb2, 0x4f, 0x99, 0xb8, 0x7b, 0x7, 0x99, 0xb6, 0xab, 0x88, 0x2e, 0x7, 0x8}} return a, nil } @@ -1849,12 +1849,12 @@ func _1680114896_add_index_on_album_idUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1680114896_add_index_on_album_id.up.sql", size: 83, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} + info := bindataFileInfo{name: "1680114896_add_index_on_album_id.up.sql", size: 83, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x7e, 0xd5, 0xcd, 0x2d, 0xab, 0xd4, 0x32, 0x26, 0x50, 0x3a, 0x5b, 0x8e, 0x1c, 0xcc, 0x35, 0xf8, 0xa1, 0x2a, 0xc1, 0x23, 0xf6, 0x90, 0xfe, 0x84, 0x3, 0xde, 0x5a, 0xee, 0xc6, 0xfc, 0x2a}} return a, nil } -var __1681655289_add_mute_tillUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\x2d\x2d\x49\x4d\x89\x2f\xc9\xcc\xc9\x51\x08\xf1\xf4\x75\x0d\x0e\x71\xf4\x0d\xb0\xe6\xe5\x02\x04\x00\x00\xff\xff\x68\x18\xe9\x96\x34\x00\x00\x00") +var __1681655289_add_mute_tillUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\x48\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\xc8\x2d\x2d\x49\x4d\x89\x2f\xc9\xcc\xc9\x51\x08\xf1\xf4\x75\x0d\x0e\x71\xf4\x0d\xb0\xe6\x02\x04\x00\x00\xff\xff\xc5\x03\xbe\x71\x33\x00\x00\x00") func _1681655289_add_mute_tillUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1869,12 +1869,12 @@ func _1681655289_add_mute_tillUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1681655289_add_mute_till.up.sql", size: 52, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xe8, 0xc, 0x7, 0x78, 0x15, 0x97, 0x95, 0xb9, 0xfd, 0xce, 0x6f, 0x12, 0xd7, 0xdc, 0x78, 0x78, 0x24, 0xb0, 0xcc, 0x32, 0x99, 0xeb, 0x68, 0x35, 0x77, 0x6, 0xe7, 0x72, 0xe1, 0xb2, 0x3b}} + info := bindataFileInfo{name: "1681655289_add_mute_till.up.sql", size: 51, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xbe, 0xce, 0xb8, 0xe1, 0x30, 0xe7, 0xa7, 0xe0, 0x7d, 0x97, 0xf4, 0x26, 0xb8, 0x57, 0x1d, 0x2a, 0xed, 0x18, 0xf2, 0xa, 0xe3, 0x77, 0x29, 0x18, 0x55, 0x9, 0x74, 0x2c, 0x24, 0x5a, 0x19}} return a, nil } -var __1681934966_add_index_response_toUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x2f\x4a\x2d\x2e\xc8\xcf\x2b\x4e\x8d\x2f\xc9\x57\xf0\xf7\x43\x95\xd4\x40\x92\xd4\xb4\xe6\xe5\x02\x04\x00\x00\xff\xff\xe7\x27\x42\x1b\x47\x00\x00\x00") +var __1681934966_add_index_response_toUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x2f\x4a\x2d\x2e\xc8\xcf\x2b\x4e\x8d\x2f\xc9\x57\xf0\xf7\x43\x95\xd4\x40\x92\xd4\xb4\xe6\x02\x04\x00\x00\xff\xff\xda\x79\x8c\xd2\x46\x00\x00\x00") func _1681934966_add_index_response_toUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1889,12 +1889,12 @@ func _1681934966_add_index_response_toUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1681934966_add_index_response_to.up.sql", size: 71, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x87, 0xf6, 0x7f, 0x7b, 0xee, 0xa6, 0xbf, 0xeb, 0x60, 0xfd, 0x42, 0x9, 0x38, 0x30, 0x4f, 0x60, 0x60, 0x3, 0x98, 0xd7, 0x8, 0xa0, 0x71, 0xe9, 0x2a, 0xb7, 0x83, 0x28, 0xec, 0x4d, 0x9f}} + info := bindataFileInfo{name: "1681934966_add_index_response_to.up.sql", size: 70, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0xed, 0xa6, 0x7e, 0x51, 0xf2, 0xa1, 0x3c, 0x78, 0x9a, 0xa7, 0x7a, 0x51, 0x25, 0x7d, 0xdd, 0x4b, 0xf3, 0x45, 0xeb, 0x3f, 0xad, 0x23, 0x3e, 0xac, 0x16, 0x28, 0x62, 0x7, 0x8c, 0xe0, 0xa0}} return a, nil } -var __1682528339_add_index_user_messages_unseenUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\xe0\xe5\x52\x50\x50\x50\xc8\x4c\xa9\x88\x2f\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x2f\xcd\x2b\x4e\x4d\xcd\x53\xf0\xf7\x53\x40\x11\x57\xd0\xc8\xc9\x4f\x4e\xcc\x89\x4f\xce\x48\x2c\x89\xcf\x4c\xd1\x51\x48\xce\xc9\x4f\xce\x8e\x2f\x4b\xcc\x29\x4d\xd5\xe4\xe5\x0a\xf7\x70\x0d\x72\x55\xf0\xf3\x0f\xd1\x00\xe9\xd6\xe4\xe5\x02\x04\x00\x00\xff\xff\xfc\x5a\x44\x3e\x6b\x00\x00\x00") +var __1682528339_add_index_user_messages_unseenUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\xe0\x52\x50\x50\x50\xc8\x4c\xa9\x88\x2f\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x2f\xcd\x2b\x4e\x4d\xcd\x53\xf0\xf7\x53\x40\x11\x57\xd0\xc8\xc9\x4f\x4e\xcc\x89\x4f\xce\x48\x2c\x89\xcf\x4c\xd1\x51\x48\xce\xc9\x4f\xce\x8e\x2f\x4b\xcc\x29\x4d\xd5\xe4\x0a\xf7\x70\x0d\x72\x55\xf0\xf3\x0f\xd1\x00\x69\xd6\xe4\x02\x04\x00\x00\xff\xff\x3e\xb9\x19\x58\x68\x00\x00\x00") func _1682528339_add_index_user_messages_unseenUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1909,12 +1909,12 @@ func _1682528339_add_index_user_messages_unseenUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1682528339_add_index_user_messages_unseen.up.sql", size: 107, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xa8, 0xd9, 0x52, 0x8d, 0x73, 0x11, 0x89, 0x54, 0x1d, 0x31, 0x4d, 0xc8, 0x77, 0xa9, 0x67, 0x7a, 0x92, 0xc6, 0xf3, 0xd8, 0xa3, 0x9f, 0xcb, 0x10, 0x83, 0xfe, 0x75, 0x64, 0x2b, 0xcf, 0x5b}} + info := bindataFileInfo{name: "1682528339_add_index_user_messages_unseen.up.sql", size: 104, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0xfa, 0x98, 0xdd, 0x74, 0x5e, 0x21, 0x1f, 0xf2, 0x56, 0x17, 0x96, 0xfe, 0xbb, 0x44, 0x4c, 0xa1, 0xd8, 0x9f, 0x2e, 0x6, 0x2f, 0xd8, 0x23, 0xec, 0x94, 0x8c, 0x53, 0xf3, 0xf0, 0x40, 0xe7}} return a, nil } -var __1683707289_recreate_deleted_for_mesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x10\x86\xef\x81\xbc\xc3\x7f\x6c\xa1\x6f\xd0\xd3\xb8\x4e\x35\x98\x4d\x96\xc9\x28\xf6\x14\xb4\x1b\x45\x5a\x29\x18\x7d\x7f\x69\xba\xa0\x20\xb8\xcd\x31\x7c\xf3\xff\xdf\x4c\x27\x4c\xca\x50\xba\xf2\x0c\xb7\x41\x88\x0a\x7e\x74\x49\x13\xbe\x6a\xf9\xc8\xef\xa5\xd6\xa7\xd7\x52\xf3\x58\x0e\xe5\xb3\x8c\xf9\xe5\xd8\x3e\xf3\xf3\x1e\x0b\x6b\x00\x60\x77\x38\xee\xf6\x68\xcf\x05\xe5\x1b\x96\x96\x12\xee\xbd\x5f\x9d\x89\x29\x24\xbf\x8d\x78\x20\xe9\x6e\xe9\x0f\x31\x88\xeb\x49\xb6\xb8\xe3\x2d\x16\x3f\xf8\xd2\x9a\xe5\xda\x1a\x6b\x5c\x48\x2c\x8a\x28\x10\x1e\x3c\x75\x7c\xaa\x8a\xf3\x8a\x89\x3d\x77\x7a\x56\x5c\xfd\xf6\xd8\x48\xec\xff\x1f\x6f\xbd\xd7\x12\x87\xe9\x38\xf3\x30\x79\x65\xb9\x84\x3e\x99\x09\x07\xea\x19\x73\x4b\xac\xad\xf9\x0e\x00\x00\xff\xff\x97\x0c\x91\x28\xa3\x01\x00\x00") +var __1683707289_recreate_deleted_for_mesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x04\x31\x0c\x86\xef\x7d\x8a\xff\xb8\x0b\xfb\x06\x73\x8a\x35\xab\xc5\x4e\x3b\xa4\x51\xdc\x53\xd1\x9d\x2a\xb2\x2b\x03\x56\xdf\x5f\xa6\x0e\x28\x1e\x1c\x73\x0c\x5f\xfe\x7c\x89\x15\x26\x65\x28\x5d\x78\x86\xdb\x23\x44\x05\xdf\xbb\xa4\x09\x1f\xb5\xbc\xe5\xd7\x52\xeb\xc3\x73\xa9\x79\x2c\xe7\xf2\x5e\xc6\xfc\x34\xb5\x66\x7e\x3c\x61\x63\x00\xe0\x78\x9e\x8e\x27\xb4\x72\x41\xf9\x8a\xa5\x85\x84\x5b\xef\x77\x0d\x58\x22\xf2\xcb\x88\x3b\x12\x7b\x4d\xbf\x81\x41\x5c\x4f\x72\xc0\x0d\x1f\xb0\xf9\xa6\xb7\x66\xdb\x19\xe3\x42\x62\x51\x44\x81\xf0\xe0\xc9\xf2\xbc\x25\xae\xcb\x25\xf6\x6c\xf5\xcb\x6e\xf7\xd3\x61\x2f\xb1\xff\x7b\xbc\x33\xe6\x52\xe2\xb0\x3c\x65\x0d\x25\xaf\x2c\xff\x61\x67\x2b\xe1\x40\x3d\x63\xed\x80\xce\x7c\x06\x00\x00\xff\xff\x81\x0b\x39\x59\x98\x01\x00\x00") func _1683707289_recreate_deleted_for_mesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1929,12 +1929,12 @@ func _1683707289_recreate_deleted_for_mesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1683707289_recreate_deleted_for_mes.up.sql", size: 419, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x68, 0x30, 0x21, 0x7e, 0x79, 0x46, 0x23, 0xf9, 0x43, 0x73, 0x71, 0x52, 0xb1, 0xc9, 0xe6, 0xa4, 0x29, 0x83, 0xc3, 0xbc, 0xb9, 0x9a, 0x42, 0x7d, 0x75, 0xa3, 0x8b, 0xc1, 0xe7, 0xc7, 0x74}} + info := bindataFileInfo{name: "1683707289_recreate_deleted_for_mes.up.sql", size: 408, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x9d, 0xd6, 0x45, 0x41, 0x29, 0x44, 0xf6, 0x14, 0x38, 0xeb, 0xdf, 0x6b, 0x5d, 0x9c, 0x45, 0x4b, 0xc3, 0xa8, 0xbd, 0x38, 0x14, 0xd9, 0x73, 0xf1, 0x51, 0xbb, 0x9f, 0x14, 0x36, 0xf2, 0x11}} return a, nil } -var __1683725607_mark_discord_messages_as_seenUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x0d\x70\x71\x0c\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\xe6\xe5\x0a\x76\x0d\x51\x28\x4e\x4d\xcd\x53\xb0\x55\x30\xe4\xe5\x0a\xf7\x70\x0d\x72\xe5\xe5\x52\x50\x50\x50\x48\xc9\x2c\x4e\xce\x2f\x4a\x81\x29\x8d\xcf\x4c\x51\xf0\x0c\x56\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x81\xa8\x71\xf4\x73\xc1\xa6\x4e\xd1\x56\x41\x5d\x9d\x97\x0b\x10\x00\x00\xff\xff\xfa\xb1\x58\x67\x71\x00\x00\x00") +var __1683725607_mark_discord_messages_as_seenUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x0d\x70\x71\x0c\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\xe6\x0a\x76\x0d\x51\x28\x4e\x4d\xcd\x53\xb0\x55\x30\xe4\x0a\xf7\x70\x0d\x72\xe5\x52\x50\x50\x50\x48\xc9\x2c\x4e\xce\x2f\x4a\x81\xa9\x8b\xcf\x4c\x51\xf0\x0c\x56\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x01\x2b\x71\xf4\x73\xc1\xa6\x4c\xd1\x56\x41\x5d\x9d\x0b\x10\x00\x00\xff\xff\x6a\xdb\x6b\x54\x6c\x00\x00\x00") func _1683725607_mark_discord_messages_as_seenUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1949,12 +1949,12 @@ func _1683725607_mark_discord_messages_as_seenUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1683725607_mark_discord_messages_as_seen.up.sql", size: 113, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0xbd, 0x3d, 0x73, 0x78, 0x84, 0x52, 0x7d, 0xfd, 0x7f, 0x16, 0x98, 0xa3, 0xb4, 0x5f, 0xc3, 0xb6, 0xdc, 0x73, 0xa2, 0x59, 0xe5, 0xfb, 0x75, 0x18, 0x46, 0xb3, 0xf7, 0x2b, 0x1, 0x18, 0xab}} + info := bindataFileInfo{name: "1683725607_mark_discord_messages_as_seen.up.sql", size: 108, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x2a, 0xc3, 0x43, 0xea, 0x5e, 0x3, 0x2e, 0xce, 0x79, 0xea, 0xa5, 0x67, 0x61, 0x8c, 0xe4, 0xb9, 0xb7, 0x4d, 0xd5, 0xd5, 0xb0, 0x35, 0xc8, 0x2b, 0xa0, 0x3f, 0xd8, 0xde, 0xea, 0x4e, 0x16}} return a, nil } -var __1684174617_add_url_previews_to_user_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x4b\x2b\x2d\xca\x49\x4d\x89\xcf\xc9\xcc\xcb\x2e\x56\x70\xf2\xf1\x77\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\x65\xa4\xaf\x93\x3b\x00\x00\x00") +var __1684174617_add_url_previews_to_user_messagesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x4b\x2b\x2d\xca\x49\x4d\x89\xcf\xc9\xcc\xcb\x2e\x56\x70\xf2\xf1\x77\xb2\xe6\x02\x04\x00\x00\xff\xff\x02\x1d\x55\x37\x3a\x00\x00\x00") func _1684174617_add_url_previews_to_user_messagesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1969,12 +1969,12 @@ func _1684174617_add_url_previews_to_user_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1684174617_add_url_previews_to_user_messages.up.sql", size: 59, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0xc4, 0x79, 0x80, 0xc6, 0x3c, 0x70, 0x67, 0x24, 0xba, 0x4b, 0x82, 0x9c, 0xa3, 0x1e, 0xaa, 0x86, 0x5b, 0xf3, 0xfc, 0xf5, 0xd9, 0xc7, 0xaa, 0xd1, 0xbd, 0x87, 0x8, 0xc9, 0xeb, 0x6c, 0x6b}} + info := bindataFileInfo{name: "1684174617_add_url_previews_to_user_messages.up.sql", size: 58, mode: os.FileMode(0644), modTime: time.Unix(1684445777, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xb0, 0x72, 0xe3, 0xe4, 0xa9, 0x63, 0x82, 0xea, 0x52, 0x70, 0xb6, 0xa0, 0x73, 0x55, 0x7a, 0x78, 0xa8, 0xd2, 0xb0, 0xf4, 0x78, 0x8a, 0xd, 0x5a, 0xa2, 0x9d, 0x92, 0xdc, 0xce, 0x1c, 0x71}} return a, nil } -var __1684175608_add_token_balancesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x6a\x03\x21\x1c\x84\xef\x0b\xfb\x0e\x43\x4e\x09\xec\x4b\x58\xeb\x52\xa9\x75\x83\x31\xa5\x39\x2d\x46\x85\x4a\x5d\x2d\x9a\x1c\xfa\xf6\xa5\x7f\x28\x69\x36\x84\x9c\xfd\x66\x9c\xdf\x47\x15\x23\x9a\x41\x93\x3b\xc1\xc0\x7b\xc8\x41\x83\xbd\xf0\x8d\xde\xe0\x90\xdf\x7c\x1a\xf7\x26\x9a\x64\x7d\xc5\xb2\x6d\x80\x63\xf5\x65\x34\xce\x15\x5f\x2b\x9e\x89\xa2\x0f\x44\x7d\x67\xe4\x56\x88\xee\x8b\xf8\x49\x25\x33\xf9\x6b\xef\xf5\x63\xda\xe7\x78\x8d\xb8\xe1\x13\x9b\x63\x2e\x33\x00\xf7\xac\x27\x5b\xa1\xb1\x58\x9c\xb0\xce\xdb\x30\x99\x58\xc1\xa5\xbe\xd4\xe5\x7c\xb5\x25\xbc\x1f\x42\x4e\x37\x36\x1e\xcb\x7c\xff\x39\xf9\x2b\xef\xf2\x11\xf6\xd5\x84\x34\x06\x37\x9f\xb4\x56\xfc\x89\xa8\x1d\x1e\xd9\x0e\xcb\x53\xe5\xdd\x5f\xa8\xfb\x27\x72\x85\x41\x82\x0e\xb2\x17\x9c\x6a\x28\xb6\x16\x84\xb2\xb6\x59\xb5\xcd\x67\x00\x00\x00\xff\xff\x70\xde\x8c\xdc\xe0\x01\x00\x00") +var __1684175608_add_token_balancesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x4a\x03\x31\x14\x85\xf7\xf3\x14\x87\xae\x5a\x98\x97\x88\xf1\x0e\x06\x63\xa6\xa4\xa9\xd8\xd5\x90\x26\x01\x83\x33\x89\x24\xed\xc2\xb7\x17\xa4\xf8\x37\x65\x74\x7d\xcf\x39\xf7\xe3\xe3\x9a\x98\x21\x18\x76\x23\x09\xa2\x83\xea\x0d\xe8\x49\xec\xcc\x0e\xa7\xfc\x12\xd2\x70\xb4\xa3\x4d\x2e\x54\xac\x1b\xe0\x5c\x43\x19\xac\xf7\x25\xd4\x8a\x47\xa6\xf9\x1d\xd3\x1f\x15\xb5\x97\xb2\x6d\x70\xe9\x24\x3b\x85\x85\x73\x7d\x9b\x8e\x79\x5c\x08\xfc\xfd\xc1\xe5\x31\x97\xd9\x1d\xb7\xd4\xb1\xbd\x34\x58\xad\xbe\xa2\x3e\xb8\x38\xd9\xb1\x42\x28\x73\x65\xc9\x87\xea\x4a\x7c\x3d\xc5\x9c\xfe\xb7\x77\x2e\x73\xf4\x5f\xc1\x8b\xb3\xab\xfc\xee\xd9\xc6\x34\x44\x3f\xc3\xd9\x6a\xf1\xc0\xf4\x01\xf7\x74\xc0\xfa\xbb\xe8\xf6\xb3\xd3\xfe\x10\xb8\x41\xaf\xc0\x7b\xd5\x49\xc1\x0d\x34\x6d\x25\xe3\xd4\x6c\x9a\xf7\x00\x00\x00\xff\xff\x66\x62\xf6\xfb\xd3\x01\x00\x00") func _1684175608_add_token_balancesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -1989,12 +1989,12 @@ func _1684175608_add_token_balancesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1684175608_add_token_balances.up.sql", size: 480, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x68, 0x3e, 0x91, 0x4a, 0x21, 0xd, 0xf3, 0xb2, 0x7f, 0xbd, 0x69, 0xdf, 0x67, 0xab, 0x6, 0xee, 0x47, 0xca, 0xd4, 0xd1, 0x9b, 0x41, 0x2, 0x72, 0x9f, 0xa1, 0x6a, 0xd8, 0x8f, 0xce, 0x70}} + info := bindataFileInfo{name: "1684175608_add_token_balances.up.sql", size: 467, mode: os.FileMode(0644), modTime: time.Unix(1684770413, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x4e, 0xe0, 0x48, 0x34, 0x1, 0x4d, 0x88, 0x11, 0x54, 0x20, 0x52, 0x5c, 0x57, 0x14, 0xa9, 0xa9, 0x36, 0xa4, 0x28, 0x59, 0x48, 0xa8, 0xa, 0x76, 0xec, 0x37, 0xee, 0x9e, 0xd2, 0x20, 0xaa}} return a, nil } -var __1684979808_sync_activity_center_notificationsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcc\xc1\x09\x02\x31\x10\x05\xd0\xbb\x60\x0f\xbf\x04\xef\x9e\xa2\x89\x20\x8c\x59\x90\xc9\x39\x0c\xd9\x08\x73\xc9\x8a\xfb\x15\xec\xde\x0e\x84\x6d\xe0\x05\xd1\x74\x87\x86\x93\x24\x58\xa3\x7f\x9c\xdf\xda\xfa\x60\x7f\xd5\x95\xc6\xbe\x22\xc4\x88\xf3\x24\xe5\x96\xf1\x7e\xce\xc6\x3e\x57\x23\xae\x59\x91\x27\x45\x2e\x22\x88\xe9\x12\x8a\x28\x0e\xc7\xfd\xee\x9f\x38\x16\xfa\xc3\x9b\xd1\x97\xb1\x19\xfe\x05\x00\x00\xff\xff\x7d\x85\x13\xaf\xab\x00\x00\x00") +var __1684979808_sync_activity_center_notificationsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcc\xc1\x09\x02\x31\x10\x05\xd0\xbb\x55\xfc\x12\xbc\x7b\x8a\x26\x82\x30\x66\x41\x26\xe7\x30\x64\x23\xcc\x25\x2b\xe6\x2b\xd8\xbd\x1d\x08\x36\xf0\x82\x68\xba\x41\xc3\x51\x12\xac\xd1\xdf\xce\x4f\x6d\x7d\xb0\x3f\xeb\xa4\xb1\x4f\x84\x18\x71\x5a\xa4\x5c\x33\x5e\x8f\xd5\xd8\xd7\x6a\xc4\x25\x2b\xf2\xa2\xc8\x45\x04\x31\x9d\x43\x11\xc5\xfe\xb0\xfb\x05\x8e\x8d\x7e\xf7\x66\xf4\x6d\xfc\xeb\x7e\x03\x00\x00\xff\xff\x09\xb8\x1a\x7c\xa9\x00\x00\x00") func _1684979808_sync_activity_center_notificationsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2009,12 +2009,12 @@ func _1684979808_sync_activity_center_notificationsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1684979808_sync_activity_center_notifications.up.sql", size: 171, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x5d, 0xc7, 0xf6, 0x9d, 0x57, 0x9d, 0x4d, 0x67, 0xbc, 0x98, 0xe3, 0xc, 0x9a, 0x90, 0xcb, 0xd1, 0xe3, 0x81, 0x46, 0x7c, 0xff, 0xba, 0x90, 0x22, 0xb9, 0x3c, 0x3b, 0x57, 0x31, 0x1a, 0x99}} + info := bindataFileInfo{name: "1684979808_sync_activity_center_notifications.up.sql", size: 169, mode: os.FileMode(0644), modTime: time.Unix(1687356246, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xf7, 0x94, 0xa9, 0xa1, 0x60, 0x26, 0x9d, 0xca, 0x31, 0xf, 0x14, 0xd, 0x70, 0xf8, 0xab, 0x40, 0x29, 0x73, 0x61, 0xbd, 0x1b, 0xb6, 0xc4, 0x31, 0x77, 0x9e, 0x32, 0xa8, 0xce, 0x6d}} return a, nil } -var __1685383829_add_communities_mute_tillUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\xe4\x96\x96\xa4\xa6\xc4\x97\x64\xe6\xe4\x28\x84\x78\xfa\xba\x06\x87\x38\xfa\x06\x58\xf3\x72\x01\x02\x00\x00\xff\xff\xbb\x9f\x6c\x8e\x46\x00\x00\x00") +var __1685383829_add_communities_mute_tillUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\xe4\x96\x96\xa4\xa6\xc4\x97\x64\xe6\xe4\x28\x84\x78\xfa\xba\x06\x87\x38\xfa\x06\x58\x73\x01\x02\x00\x00\xff\xff\x12\xa7\x7e\x43\x45\x00\x00\x00") func _1685383829_add_communities_mute_tillUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2029,12 +2029,12 @@ func _1685383829_add_communities_mute_tillUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1685383829_add_communities_mute_till.up.sql", size: 70, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x90, 0xc2, 0x75, 0x73, 0x9f, 0xe2, 0x1f, 0x1, 0x52, 0xa2, 0x4, 0xe9, 0x55, 0x59, 0xc3, 0x8f, 0x17, 0xaa, 0x2d, 0x91, 0x6, 0x2e, 0x60, 0xc5, 0xf4, 0xb2, 0x54, 0xd1, 0x93, 0x90, 0x10}} + info := bindataFileInfo{name: "1685383829_add_communities_mute_till.up.sql", size: 69, mode: os.FileMode(0644), modTime: time.Unix(1687450624, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x58, 0x96, 0xe5, 0x66, 0xcb, 0xde, 0xed, 0x76, 0xb8, 0x5a, 0x86, 0x81, 0x9a, 0x60, 0x51, 0x12, 0x37, 0x54, 0x9a, 0x36, 0x3e, 0xd1, 0x4a, 0xbe, 0x9a, 0xab, 0x20, 0x7f, 0x1d, 0xf4, 0x73}} return a, nil } -var __1685964183_add_chainids_to_revealed_addressesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xc1\x0a\xc2\x30\x0c\x06\xe0\xfb\x60\xef\x90\xf7\xf0\x54\x5d\x6f\x55\x41\x22\x78\x0b\x65\xf9\xc1\x88\x6d\xb1\x69\x7d\xfe\x7d\x21\x71\x7c\x10\x87\x73\x8a\xb4\xb7\x52\x66\xb5\x61\x70\xe9\xf8\x4d\xf8\x70\x19\x4d\x3e\xcd\xaa\x74\xfc\x91\xbf\x50\xc9\xaa\x1d\xee\x70\x0a\xdb\x46\x97\x7b\x7a\x5e\x6f\xb4\xbf\xb3\x55\x31\x75\xe2\xf8\xe2\xd3\xba\xac\xcb\x11\x00\x00\xff\xff\x42\xe1\x0f\x84\x5a\x00\x00\x00") +var __1685964183_add_chainids_to_revealed_addressesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x41\x0a\x42\x21\x10\x06\xe0\xfd\x3b\xc5\xdc\xa3\x95\xf5\xdc\x59\x41\x4c\xd0\x6e\x10\xe7\x87\x26\x52\xc9\xd1\xce\xff\xbe\x90\x38\x3e\x88\xc3\x39\x45\x2a\xbd\xd6\xd5\x6c\x1a\x5c\x06\x7e\x0b\x3e\x5d\x66\x97\x4f\xb7\x26\x03\x7f\xe4\x2f\x54\xb2\xea\x80\x3b\x9c\xc2\xbe\xd3\xe5\x9e\x9e\xd7\x1b\x95\x77\xb6\x26\xa6\x4e\x1c\x5f\x7c\xda\xb6\x23\x00\x00\xff\xff\x9e\xc9\xd7\x81\x58\x00\x00\x00") func _1685964183_add_chainids_to_revealed_addressesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2049,12 +2049,12 @@ func _1685964183_add_chainids_to_revealed_addressesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1685964183_add_chainids_to_revealed_addresses.up.sql", size: 90, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xe1, 0xd1, 0xec, 0xec, 0x95, 0x22, 0x8, 0x92, 0xc0, 0x2d, 0x1, 0x14, 0x1a, 0xa6, 0xc9, 0xb8, 0xc9, 0xc5, 0x5d, 0xab, 0x4b, 0x64, 0xbc, 0x18, 0x40, 0x14, 0x28, 0xa3, 0x11, 0x72, 0x10}} + info := bindataFileInfo{name: "1685964183_add_chainids_to_revealed_addresses.up.sql", size: 88, mode: os.FileMode(0644), modTime: time.Unix(1687356246, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0xb5, 0xa8, 0xd7, 0xad, 0x9c, 0x54, 0xa5, 0xe9, 0xdb, 0x42, 0x2d, 0xd0, 0xd7, 0x22, 0x1, 0x93, 0xf3, 0x4f, 0x53, 0xf7, 0x1e, 0xbe, 0x4b, 0xac, 0xc7, 0x63, 0x15, 0xdf, 0xe0, 0x6, 0xf8}} return a, nil } -var __1687370421_add_communities_muted_till_newUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xc1\x6a\x83\x40\x10\xbd\x0b\xfe\xc3\x3b\xb6\xb0\x87\xdc\x7b\x5a\xcd\x08\xd2\x75\x57\xd6\xcd\x21\x27\x09\xba\x85\x6d\x13\x95\xb8\x09\xf8\xf7\x85\xc4\x44\x53\x5b\x48\x6f\xcb\xce\x9b\xf7\xde\xbc\x99\x58\x13\x37\x04\xc3\x23\x41\xa8\xda\xc3\xe1\xd4\x38\xef\x6c\x5f\x56\x6d\x37\xe0\x25\x0c\x00\xc0\xd5\x88\x84\x8a\x20\x95\x81\xdc\x08\x81\x5c\xa7\x19\xd7\x5b\xbc\xd3\x16\x4a\x22\x56\x32\x11\x69\x6c\xa0\x29\x17\x3c\x26\x76\x6d\xeb\x8e\xee\xbc\xf3\xb6\xfc\xb2\xc3\xa5\x7f\xfc\xae\x6d\x5f\x1d\x5d\xe7\x5d\xdb\x3c\xd2\x8e\xf5\xcf\xd6\x35\xb6\x46\xa4\x94\x20\x2e\x27\xd1\x35\x25\x7c\x23\x0c\x12\x2e\x8a\x9b\xc4\xd9\x1e\xdd\x87\x7b\x16\xdd\x77\xb6\xf2\x3b\xff\x2c\xfc\x70\xfa\x1f\xb4\xf4\x6e\xbf\x87\x49\x33\x2a\x0c\xcf\xf2\x9b\xe8\xd0\x54\xb6\x2e\x77\x7e\xaa\x2c\xb9\x56\x61\xf0\xfa\x16\x06\x61\x90\xca\x82\xb4\x41\x2a\x8d\x5a\xae\xa3\x20\x41\xb1\x81\xab\xd9\x3c\x5b\x36\x4f\x94\x8d\xf1\xb1\x7b\x34\x6c\x1a\x9b\x5d\x7d\x32\xac\xd8\xcc\x56\xa2\x55\xf6\x43\xeb\xfe\xbe\x78\x5a\x6b\x95\xff\x7a\x21\x8f\x30\x2e\x0c\xe9\xbf\x2e\x49\x93\xe4\x19\x61\x31\xd5\x9c\xe2\x3b\x00\x00\xff\xff\x54\xf6\x48\xb9\x8c\x02\x00\x00") +var __1687370421_add_communities_muted_till_newUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xb1\x6e\x83\x30\x10\xdd\xfd\x15\x6f\x6c\x25\x0f\xd9\x33\x19\x72\x48\xa8\xc6\x46\xc6\x19\x32\xa1\x08\x5c\xc9\x6d\x02\x28\x38\x91\xf8\xfb\x4a\x01\x05\x5a\x5a\x29\xdd\x2c\xdf\xbb\xf7\xee\xde\xbd\xd8\x90\xb0\x04\x2b\x22\x49\xa8\xda\xf3\xf9\xda\xf8\xe0\x5d\x5f\x56\x6d\x37\xe0\x85\x01\x80\xaf\x11\x49\x1d\x41\x69\x0b\xb5\x97\x12\xb9\x49\x33\x61\x0e\x78\xa3\x03\xb4\x42\xac\x55\x22\xd3\xd8\xc2\x50\x2e\x45\x4c\xfc\xde\xd5\x5d\xfc\xed\x18\x5c\xf9\xe9\x86\x7b\xfb\xf8\x5b\xbb\xbe\xba\xf8\x2e\xf8\xb6\xf9\x4e\x3a\x96\x3f\x5a\xdf\xb8\x1a\x91\xd6\x92\x84\x9a\x15\x77\x94\x88\xbd\xb4\x48\x84\x2c\x26\xfe\x9b\xbb\xf8\x77\xff\x24\xb8\xef\x5c\x15\x8e\xe1\x49\xf4\xf9\xfa\x2f\x64\x19\xfc\xe9\x04\x9b\x66\x54\x58\x91\xe5\x93\xe2\xd0\x54\xae\x2e\x8f\x61\x2e\xac\x99\x36\xec\x75\xcb\x58\xaa\x0a\x32\x16\xa9\xb2\x7a\x7d\x82\x82\x24\xc5\x16\xbe\xe6\x4b\x47\xf9\xd2\x48\x3e\xd9\xc6\x1f\x9e\xf0\x79\x61\x3e\xce\xc8\xb1\xe1\x8b\x99\x12\xa3\xb3\x1f\x5a\x8f\xf7\x96\xb1\x9d\xd1\xf9\xaf\x99\x58\x82\x84\xb4\x64\xfe\x4a\x8e\x21\x25\x32\xc2\x6a\xa3\x05\xc1\x57\x00\x00\x00\xff\xff\xe9\x48\xce\x39\x7b\x02\x00\x00") func _1687370421_add_communities_muted_till_newUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2069,12 +2069,12 @@ func _1687370421_add_communities_muted_till_newUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1687370421_add_communities_muted_till_new.up.sql", size: 652, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x3b, 0x20, 0x44, 0x5, 0x8c, 0x99, 0x5c, 0xe2, 0x7a, 0x5c, 0xe3, 0x9a, 0xb5, 0x68, 0x89, 0x93, 0x8e, 0x68, 0xe6, 0x28, 0xd3, 0xf5, 0x7a, 0x6b, 0x68, 0xbb, 0xa2, 0x24, 0xec, 0xc7, 0x7b}} + info := bindataFileInfo{name: "1687370421_add_communities_muted_till_new.up.sql", size: 635, mode: os.FileMode(0644), modTime: time.Unix(1687450634, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x73, 0x96, 0x1d, 0xc8, 0x3e, 0xca, 0xf5, 0xdc, 0xe3, 0xac, 0x3f, 0x9c, 0xc3, 0x67, 0x12, 0x9c, 0x19, 0x1, 0x4, 0x2b, 0xea, 0x6b, 0xe1, 0x59, 0x59, 0x89, 0x3d, 0xef, 0x4a, 0x6e, 0xbe}} return a, nil } -var __1687416607_add_communities_check_channel_permission_responses_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xd1\x4e\xb3\x40\x10\x85\xef\x49\x78\x87\x49\xaf\xda\xa4\x6f\xf0\x5f\x6d\xf9\x97\x48\x5c\xa1\xd9\x2e\xa6\xbd\xda\x10\x58\xc3\xa4\xb0\x4b\x98\xad\xa6\x6f\x6f\x24\x56\x41\xad\x98\xe8\xf5\x9c\x39\x73\xe6\x7c\x91\xe4\x4c\x71\x50\x6c\x23\x38\x24\x31\xa4\x99\x02\xbe\x4f\x76\x6a\x07\xa5\x6b\xdb\x93\x45\x8f\x86\x74\x59\x9b\xf2\xa8\xcb\xba\xb0\xd6\x34\xba\x33\x7d\x8b\x44\xe8\xac\xee\x0d\x75\xce\x92\x21\x58\x86\x01\xbc\xed\x9c\x35\x56\x70\xcf\x64\x74\xc3\xe4\xe0\x99\xe6\x42\xac\x07\x45\x5d\xf8\xaf\x86\xf0\x9f\xc7\x2c\x17\x0a\x16\x8b\x41\xf7\x88\xe6\x49\x3b\xdb\x9c\x47\xd7\x48\x53\xe1\x91\x1e\xd0\x54\xb0\xc9\x32\xc1\x59\xfa\x79\x5f\xc9\x9c\xbf\x3b\x14\xb6\xd2\x9d\x23\xff\x3b\x97\x0f\x39\x34\x56\x04\x8a\xef\xd5\xf4\xb5\x6b\x07\xaf\xc8\xb7\x32\xb9\x63\xf2\x00\xb7\xfc\xb0\x1c\xf7\xb6\xbe\x74\xb4\x82\x2c\x85\x28\x4b\x63\x91\x44\x0a\x24\xdf\x0a\x16\xf1\x30\x58\xfd\x0b\x83\x30\xf8\x21\xb8\x51\x0a\xef\x8e\xc6\xea\xb2\x47\x6f\x7a\x2c\x5e\xc8\x9d\x1a\xff\xca\x6d\x12\x76\x96\xcd\xdf\x51\xbe\xa4\x99\x15\xce\x96\xb5\x9e\xfe\xf0\x6d\x77\xcf\x01\x00\x00\xff\xff\x49\x4c\x55\xa2\xf5\x02\x00\x00") +var __1687416607_add_communities_check_channel_permission_responses_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xd1\x6a\x83\x30\x14\x86\xef\x7d\x8a\x43\xaf\x5a\xf0\x0d\x76\x95\xba\xc8\x64\x99\x96\x34\x8e\xf6\x2a\x88\x66\x78\xa8\x26\xe2\x49\x37\xfa\xf6\xc3\x8d\x16\xdd\x5a\x1c\xac\xd7\xf9\xcf\x39\x5f\xfe\x2f\x92\x9c\x29\x0e\x8a\xad\x05\x87\x24\x86\x34\x53\xc0\x77\xc9\x56\x6d\xa1\x74\x6d\x7b\xb4\xe8\xd1\x90\x2e\x6b\x53\x1e\x74\x59\x17\xd6\x9a\x46\x77\xa6\x6f\x91\x08\x9d\xd5\xbd\xa1\xce\x59\x32\x04\xcb\x00\x2e\x23\x27\x8d\x15\xbc\x32\x19\x3d\x31\xf9\xb5\x32\xcd\x85\x08\x87\x40\x5d\xf8\x6b\x6f\xf0\xc8\x63\x96\x0b\x05\x8b\xc5\x10\x7b\x47\xf3\xa1\x9d\x6d\x4e\xa3\x53\xa4\xa9\xf0\x48\x6f\x68\x2a\x58\x67\x99\xe0\x2c\xfd\x3d\xae\x64\xce\x2f\x0b\x0a\x5b\xe9\xce\x91\xff\xd7\x92\x1f\x14\x1a\x2b\x02\xc5\x77\x6a\xf2\xad\x5b\xe7\xae\xa7\x37\x32\x79\x61\x72\x0f\xcf\x7c\xbf\x1c\x37\x16\x9e\xeb\x59\x41\x96\x42\x94\xa5\xb1\x48\x22\x05\x92\x6f\x04\x8b\x78\xb0\x7a\x08\x82\x3f\xea\x1a\x11\x78\x77\x30\x56\x97\x3d\x7a\xd3\x63\x31\xf8\x3a\x36\xfe\xdb\xd6\x84\x73\x4e\xc9\xbd\xd4\x9e\x49\xe6\x72\xb3\x25\x85\x53\xfe\xdb\x9d\x7d\x06\x00\x00\xff\xff\x71\xb4\x26\x0c\xe3\x02\x00\x00") func _1687416607_add_communities_check_channel_permission_responses_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2089,12 +2089,12 @@ func _1687416607_add_communities_check_channel_permission_responses_tableUpSql() return nil, err } - info := bindataFileInfo{name: "1687416607_add_communities_check_channel_permission_responses_table.up.sql", size: 757, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x40, 0xd, 0x5e, 0x74, 0x44, 0x58, 0x64, 0x72, 0xa3, 0x45, 0xb3, 0x60, 0x11, 0x27, 0x10, 0x2f, 0x55, 0x46, 0x98, 0xe4, 0x89, 0x94, 0x8d, 0x91, 0x1d, 0xa1, 0xec, 0xce, 0x38, 0xb0, 0xac}} + info := bindataFileInfo{name: "1687416607_add_communities_check_channel_permission_responses_table.up.sql", size: 739, mode: os.FileMode(0644), modTime: time.Unix(1688729551, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x6, 0x3, 0x1a, 0xde, 0x9d, 0xbc, 0x50, 0x9d, 0xf1, 0x6d, 0x5a, 0x1c, 0x28, 0x92, 0x19, 0x89, 0x76, 0x4e, 0x8b, 0x60, 0xa9, 0xf, 0xe9, 0x76, 0xf1, 0xee, 0x75, 0x92, 0xbd, 0xda, 0x72}} return a, nil } -var __1687856939_add_community_tokens_decimalsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x2f\xc9\xcf\x4e\xcd\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x4d\xce\xcc\x4d\xcc\x29\x56\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb4\xb0\xe6\xe5\x02\x04\x00\x00\xff\xff\x33\x5a\x90\x7d\x42\x00\x00\x00") +var __1687856939_add_community_tokens_decimalsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x2f\xc9\xcf\x4e\xcd\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x4d\xce\xcc\x4d\xcc\x29\x56\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb4\xb0\xe6\x02\x04\x00\x00\xff\xff\x00\x67\xca\x06\x41\x00\x00\x00") func _1687856939_add_community_tokens_decimalsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2109,12 +2109,12 @@ func _1687856939_add_community_tokens_decimalsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1687856939_add_community_tokens_decimals.up.sql", size: 66, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x8, 0xb8, 0x26, 0x9e, 0xa3, 0x81, 0xbe, 0xce, 0x2d, 0x11, 0x33, 0xc, 0x3, 0x75, 0xa4, 0x1b, 0x59, 0x70, 0x0, 0x9f, 0x7b, 0xf7, 0xf0, 0xdc, 0x7, 0xbf, 0x0, 0x76, 0x63, 0xa7, 0xa2}} + info := bindataFileInfo{name: "1687856939_add_community_tokens_decimals.up.sql", size: 65, mode: os.FileMode(0644), modTime: time.Unix(1688729551, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x76, 0x42, 0x70, 0xc9, 0x7b, 0x16, 0xf6, 0xfe, 0x7, 0x1c, 0x99, 0xe5, 0x38, 0xfd, 0xa0, 0x3b, 0x93, 0x40, 0xbc, 0x66, 0xc2, 0xd1, 0xdd, 0xe9, 0xc7, 0xbf, 0xae, 0x36, 0xcc, 0x46, 0x57}} return a, nil } -var __1687959987_modify_community_tokens_supply_as_stringUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x2f\xc9\xcf\x4e\xcd\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x2e\x2d\x28\xc8\xa9\x8c\x2f\x2e\x29\x52\x08\x71\x8d\x08\x51\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\xa9\xe1\xcb\xed\x4e\x00\x00\x00") +var __1687959987_modify_community_tokens_supply_as_stringUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x2f\xc9\xcf\x4e\xcd\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x2e\x2d\x28\xc8\xa9\x8c\x2f\x2e\x29\x52\x08\x71\x8d\x08\x51\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\x02\x04\x00\x00\xff\xff\x0f\x6c\x6c\xe2\x4d\x00\x00\x00") func _1687959987_modify_community_tokens_supply_as_stringUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2129,12 +2129,12 @@ func _1687959987_modify_community_tokens_supply_as_stringUpSql() (*asset, error) return nil, err } - info := bindataFileInfo{name: "1687959987_modify_community_tokens_supply_as_string.up.sql", size: 78, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x86, 0xc0, 0xd1, 0x16, 0x69, 0x4a, 0xb3, 0x87, 0xd8, 0xbc, 0x2f, 0x3c, 0x16, 0x29, 0x1b, 0xc7, 0x85, 0xf1, 0xd3, 0x6d, 0x78, 0x10, 0xf8, 0x15, 0x16, 0x68, 0x53, 0x49, 0x4f, 0x5c, 0x18}} + info := bindataFileInfo{name: "1687959987_modify_community_tokens_supply_as_string.up.sql", size: 77, mode: os.FileMode(0644), modTime: time.Unix(1690997252, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x89, 0xbf, 0x9b, 0xed, 0x9b, 0x18, 0x3f, 0x84, 0xb5, 0x3c, 0x78, 0x40, 0x60, 0xea, 0x33, 0x26, 0x50, 0x3, 0xda, 0x28, 0x92, 0xd3, 0xb6, 0xff, 0x40, 0xa7, 0x19, 0x2, 0xa7, 0x17, 0xf9}} return a, nil } -var __1689258900_add_airdrop_address_to_revealed_addressesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xc9\x31\x0e\xc2\x30\x0c\x05\xd0\x1d\x89\x3b\xf8\x1e\x4c\x29\xcd\x16\x1a\x09\x95\xd9\x8a\xf0\x1f\x8c\x68\x0d\x76\xc2\xf9\x99\x3a\xbf\x54\xd6\x7c\xa7\x35\x4d\x25\xd3\xd3\xb6\x6d\xec\xda\x15\xc1\x8e\xef\x40\xf4\xe0\x6e\xfc\x32\xdd\xd9\xf1\x43\x7b\x43\xb8\x89\x38\x22\x10\x94\xe6\x99\xae\xb5\x3c\x6e\x0b\x69\x70\x53\x17\xb7\xcf\xe1\x34\xd5\x5a\x72\x5a\x2e\xe7\xd3\x3f\x00\x00\xff\xff\xa9\xdd\xbf\x45\x64\x00\x00\x00") +var __1689258900_add_airdrop_address_to_revealed_addressesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xc9\x31\x0e\xc2\x30\x0c\x05\xd0\x9d\x53\xf8\x1e\x4c\x29\xcd\x66\x1a\x09\x95\xd9\x8a\xf0\x1f\x8c\x68\x0d\x76\xca\xf9\x99\x98\x5f\xe1\xb5\xde\x68\x2d\x13\x57\x7a\xf8\xb6\x1d\xbb\x0d\x43\x4a\xe0\x73\x20\x47\xca\x70\x79\xba\xed\x12\xf8\xa2\xbf\xa0\xd2\x55\x03\x99\x48\x2a\xf3\x4c\x97\xc6\xf7\xeb\x42\x96\xd2\x2d\x34\xfc\xfd\x77\x9a\x5a\xe3\x5a\x96\xf3\xe9\x17\x00\x00\xff\xff\xa2\x39\x8f\xf1\x63\x00\x00\x00") func _1689258900_add_airdrop_address_to_revealed_addressesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2149,12 +2149,12 @@ func _1689258900_add_airdrop_address_to_revealed_addressesUpSql() (*asset, error return nil, err } - info := bindataFileInfo{name: "1689258900_add_airdrop_address_to_revealed_addresses.up.sql", size: 100, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xd4, 0x9d, 0x18, 0xd9, 0x7b, 0xc7, 0xd, 0x36, 0xc3, 0xf9, 0xe8, 0x41, 0x95, 0xc5, 0x78, 0x7b, 0x25, 0xd7, 0xc1, 0xa5, 0x2e, 0x92, 0x1d, 0x62, 0x6b, 0x66, 0x9a, 0xc4, 0x4c, 0xf, 0x96}} + info := bindataFileInfo{name: "1689258900_add_airdrop_address_to_revealed_addresses.up.sql", size: 99, mode: os.FileMode(0644), modTime: time.Unix(1690997252, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x7e, 0xaf, 0x5c, 0xd, 0xe5, 0x1e, 0x67, 0x1a, 0x6d, 0xd, 0x28, 0x20, 0x7a, 0x1a, 0x45, 0x6e, 0xba, 0x80, 0x91, 0xb0, 0xd6, 0xfd, 0xc2, 0xb9, 0x42, 0x5c, 0x8d, 0x6e, 0x3e, 0x6e, 0xb2}} return a, nil } -var __1689266326_create_communities_events_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\xb1\x0a\xc2\x30\x14\x85\xe1\x5d\xf0\x1d\xce\xa8\xe0\x1b\x38\xa5\xe1\x16\x82\xd7\xa4\xa4\x11\xec\x24\xd2\x66\xb8\x43\x53\x69\xa2\xbe\xbe\x54\x50\xe8\x7c\xbe\xff\x68\x4f\x2a\x10\x82\xaa\x98\x60\x6a\x58\x17\x40\x57\xd3\x86\x16\xfd\x34\x8e\xcf\x24\x45\x62\xbe\xc5\x57\x4c\x25\x63\xb7\xdd\x00\x32\xa0\x62\x57\x7d\xa9\xbd\x30\xa3\xf1\xe6\xac\x7c\x87\x13\x75\x70\x16\xda\xd9\x9a\x8d\x0e\xf0\xd4\xb0\xd2\x74\x58\xa2\xf9\xfe\xfe\x9d\xac\xe2\xff\x38\xc4\xdc\xcf\xf2\x28\x32\xa5\xb5\x58\xc0\xfe\xf8\x09\x00\x00\xff\xff\x71\x0f\xad\xba\xa8\x00\x00\x00") +var __1689266326_create_communities_events_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\xb1\x0a\xc2\x30\x14\x85\xe1\xbd\x4f\x71\x46\x05\xdf\xc0\x29\x09\xb7\x10\xbc\x26\x25\x8d\x60\x27\x91\x36\xc3\x1d\x9a\x4a\x13\xf5\xf5\x05\xa1\x43\xe7\xf3\x9d\xdf\x04\x52\x91\x10\x95\x66\x82\x6d\xe1\x7c\x04\xdd\x6d\x1f\x7b\x8c\xcb\x3c\xbf\xb3\x54\x49\xe5\x91\x3e\x29\xd7\x82\x43\x03\xc8\x04\xcd\x5e\xff\xa5\xbb\x31\xa3\x0b\xf6\xaa\xc2\x80\x0b\x0d\xf0\x0e\xc6\xbb\x96\xad\x89\x08\xd4\xb1\x32\x74\x6a\x80\xf5\xf9\xdd\x12\xbb\xef\xb6\x4d\xa9\x8c\xab\xbc\xaa\x2c\x79\x0f\x1a\xe0\x78\xfe\x05\x00\x00\xff\xff\x17\xa1\x63\xc0\xa4\x00\x00\x00") func _1689266326_create_communities_events_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2169,12 +2169,12 @@ func _1689266326_create_communities_events_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1689266326_create_communities_events_table.up.sql", size: 168, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x96, 0x2f, 0xb6, 0x39, 0x18, 0x87, 0xec, 0x94, 0x2c, 0x88, 0xaa, 0x81, 0x3, 0x42, 0x39, 0xf9, 0xc0, 0x42, 0x89, 0x1e, 0xd4, 0xf2, 0x58, 0x2e, 0x41, 0x23, 0xb4, 0xa0, 0x75, 0x9c, 0x18}} + info := bindataFileInfo{name: "1689266326_create_communities_events_table.up.sql", size: 164, mode: os.FileMode(0644), modTime: time.Unix(1690997252, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x4e, 0xe, 0xba, 0x29, 0x16, 0x46, 0x38, 0x19, 0xa4, 0x5, 0x40, 0x46, 0xaf, 0x9a, 0x6, 0x89, 0xe0, 0x9c, 0xcc, 0xec, 0x8a, 0xb, 0x40, 0x85, 0x6f, 0xcc, 0x5, 0x24, 0x2a, 0x33, 0xfa}} return a, nil } -var __1689931300_add_community_tokens_deployer_and_priv_levelUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x2f\xc9\xcf\x4e\xcd\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x2d\xc8\xc9\xaf\x4c\x2d\x52\x08\x71\x8d\x08\x51\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\xe5\x22\xd6\xac\x82\xa2\xcc\xb2\xcc\x9c\xd4\xf4\xd4\xe2\xf8\x9c\xd4\xb2\xd4\x1c\x05\x4f\x3f\x2c\x46\x1a\x59\xf3\x72\x01\x02\x00\x00\xff\xff\x4e\xe9\xde\xea\x9e\x00\x00\x00") +var __1689931300_add_community_tokens_deployer_and_priv_levelUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x2f\xc9\xcf\x4e\xcd\x2b\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x48\x49\x2d\xc8\xc9\xaf\x4c\x2d\x52\x08\x71\x8d\x08\x51\xf0\xf3\x0f\x51\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\xb2\xe6\x22\xd6\xa8\x82\xa2\xcc\xb2\xcc\x9c\xd4\xf4\xd4\xe2\xf8\x9c\xd4\xb2\xd4\x1c\x05\x4f\x3f\x2c\x26\x1a\x59\x73\x01\x02\x00\x00\xff\xff\x7a\x52\x66\x6c\x9c\x00\x00\x00") func _1689931300_add_community_tokens_deployer_and_priv_levelUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2189,12 +2189,12 @@ func _1689931300_add_community_tokens_deployer_and_priv_levelUpSql() (*asset, er return nil, err } - info := bindataFileInfo{name: "1689931300_add_community_tokens_deployer_and_priv_level.up.sql", size: 158, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x49, 0x5c, 0x5d, 0xfb, 0xbc, 0x93, 0x7a, 0x80, 0x1d, 0x95, 0xa2, 0x74, 0xce, 0xec, 0x5e, 0x32, 0xc5, 0x87, 0x5, 0xd8, 0xc5, 0xf6, 0x7e, 0x8e, 0x58, 0x92, 0x9f, 0xae, 0x8a, 0xe5, 0xb6}} + info := bindataFileInfo{name: "1689931300_add_community_tokens_deployer_and_priv_level.up.sql", size: 156, mode: os.FileMode(0644), modTime: time.Unix(1692168842, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x24, 0xd9, 0x4d, 0xe, 0x4b, 0xe3, 0x4c, 0xd1, 0xc, 0x72, 0xd4, 0x99, 0xe4, 0xb9, 0xb8, 0xe9, 0x38, 0x9e, 0x11, 0x48, 0xea, 0xe3, 0x5d, 0xd9, 0xd0, 0xef, 0x96, 0x38, 0x5a, 0xd4, 0xa5}} return a, nil } -var __1693311881_add_unfurled_links_to_message_editsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x4f\x4d\xc9\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x4b\x2b\x2d\xca\x49\x4d\x89\xcf\xc9\xcc\xcb\x2e\x56\x70\xf2\xf1\x77\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\xb7\xdd\x3c\xf5\x41\x00\x00\x00") +var __1693311881_add_unfurled_links_to_message_editsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x8e\x4f\x4d\xc9\x2c\x29\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x4b\x2b\x2d\xca\x49\x4d\x89\xcf\xc9\xcc\xcb\x2e\x56\x70\xf2\xf1\x77\xb2\xe6\x02\x04\x00\x00\xff\xff\xd8\x05\x17\xa2\x40\x00\x00\x00") func _1693311881_add_unfurled_links_to_message_editsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2209,12 +2209,12 @@ func _1693311881_add_unfurled_links_to_message_editsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1693311881_add_unfurled_links_to_message_edits.up.sql", size: 65, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x5f, 0x4d, 0x14, 0x5a, 0xb2, 0x50, 0x26, 0xb2, 0xdc, 0x81, 0xb8, 0x2a, 0xe8, 0x95, 0xfd, 0xcc, 0xec, 0x18, 0x33, 0x89, 0xdb, 0x14, 0xf5, 0xe, 0x47, 0x83, 0x59, 0xab, 0xe3, 0xd2, 0xc9}} + info := bindataFileInfo{name: "1693311881_add_unfurled_links_to_message_edits.up.sql", size: 64, mode: os.FileMode(0644), modTime: time.Unix(1695022078, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xc7, 0x7c, 0xe4, 0x80, 0x6f, 0xf8, 0x96, 0xb, 0x37, 0xff, 0xa2, 0xab, 0x1c, 0xbd, 0x25, 0x8d, 0x1e, 0x9a, 0x65, 0xe9, 0x45, 0xaf, 0x7f, 0x77, 0x84, 0x1b, 0x10, 0x1b, 0x1a, 0x5, 0xcc}} return a, nil } -var __1693311981_community_shardUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\x14\x67\x24\x16\xa5\xc4\x27\xe7\x94\x16\x97\xa4\x16\x29\x78\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\xf8\x85\xfa\xf8\x58\xf3\x72\x91\x65\x5e\x66\x5e\x4a\x6a\x05\x36\xd3\x00\x01\x00\x00\xff\xff\x99\x05\x52\x3b\x9e\x00\x00\x00") +var __1693311981_community_shardUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\x14\x67\x24\x16\xa5\xc4\x27\xe7\x94\x16\x97\xa4\x16\x29\x78\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\xf8\x85\xfa\xf8\x58\x73\x91\x65\x5c\x66\x5e\x4a\x6a\x05\x16\xc3\x00\x01\x00\x00\xff\xff\xe7\x6c\xc4\x0e\x9c\x00\x00\x00") func _1693311981_community_shardUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2229,12 +2229,12 @@ func _1693311981_community_shardUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1693311981_community_shard.up.sql", size: 158, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0x6e, 0x75, 0xec, 0xb6, 0x98, 0x7, 0x81, 0x53, 0xe0, 0x2e, 0xcd, 0x13, 0x46, 0xe3, 0x36, 0xc7, 0xa8, 0xe3, 0xa3, 0x90, 0x26, 0xa, 0x40, 0xe8, 0xcc, 0x49, 0x39, 0x96, 0xc4, 0x57, 0x7e}} + info := bindataFileInfo{name: "1693311981_community_shard.up.sql", size: 156, mode: os.FileMode(0644), modTime: time.Unix(1699030398, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x12, 0xf9, 0xde, 0x49, 0x9f, 0x95, 0xaa, 0x22, 0x5e, 0x54, 0x5a, 0x1, 0xd, 0xc6, 0x1f, 0x42, 0x93, 0xe8, 0x69, 0x30, 0x11, 0x69, 0x41, 0x7f, 0x87, 0x57, 0x56, 0x2a, 0x32, 0xb9, 0x3e}} return a, nil } -var __1695331492_add_status_link_previewsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x4b\x2b\x2d\xca\x49\x4d\x89\x2f\x2e\x49\x2c\x29\x2d\x8e\xcf\xc9\xcc\xcb\x2e\x56\x70\xf2\xf1\x77\xb2\xe6\xe5\xc2\x69\x42\x7c\x6a\x4a\x66\x09\xf1\xe6\x00\x02\x00\x00\xff\xff\xc7\xb0\x97\x1e\x8a\x00\x00\x00") +var __1695331492_add_status_link_previewsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x28\x2d\x4e\x2d\x8a\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xcd\x4b\x2b\x2d\xca\x49\x4d\x89\x2f\x2e\x49\x2c\x29\x2d\x8e\xcf\xc9\xcc\xcb\x2e\x56\x70\xf2\xf1\x77\xb2\xe6\xc2\x69\x40\x7c\x6a\x4a\x66\x09\xd1\xc6\x00\x02\x00\x00\xff\xff\x3c\xe3\x6f\xcd\x88\x00\x00\x00") func _1695331492_add_status_link_previewsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2249,12 +2249,12 @@ func _1695331492_add_status_link_previewsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1695331492_add_status_link_previews.up.sql", size: 138, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x29, 0xa7, 0xa3, 0x46, 0x6c, 0xd3, 0x5f, 0x6b, 0x9b, 0xbb, 0xea, 0x95, 0xfe, 0xbc, 0x78, 0xa0, 0x9b, 0x0, 0x30, 0x39, 0x35, 0x4f, 0x64, 0x7c, 0xf0, 0x70, 0x3b, 0x47, 0x10, 0xca, 0xe7}} + info := bindataFileInfo{name: "1695331492_add_status_link_previews.up.sql", size: 136, mode: os.FileMode(0644), modTime: time.Unix(1699030398, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0x7d, 0x6e, 0x86, 0xf0, 0xf8, 0x23, 0x4b, 0x16, 0x3d, 0xca, 0x8f, 0xfc, 0x8, 0x22, 0xd5, 0x70, 0x14, 0xbb, 0xdd, 0xa9, 0xb8, 0x3e, 0xc6, 0x20, 0xfb, 0x0, 0x26, 0x73, 0xcb, 0x92, 0xb2}} return a, nil } -var __1695918296_add_validated_atUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\xc1\x6a\xc3\x30\x10\x44\xef\x06\xff\xc3\x1c\x1d\xf0\x1f\xe4\x24\xcb\x5b\x30\xdd\xac\x82\x50\xa0\x39\x19\x61\x9b\x22\xea\x48\x25\x51\x0b\xfd\xfb\x92\x26\x84\x94\x04\xdf\xc4\x32\x6f\x46\x4f\xb1\x23\x0b\xa7\x1a\x26\x0c\xe9\x70\xf8\x8a\x21\x87\xe9\xd4\xdf\xbd\xa1\xda\x16\xda\xf0\x6e\x23\x18\x52\xcc\xc7\x34\xf7\x31\x8d\x13\x1a\x36\xcd\xba\x2c\xb4\x25\xe5\xe8\x49\xc7\xb7\x9f\xc3\xe8\xf3\xd4\x9f\xc2\x7b\x9c\x8e\xa8\xca\x02\x08\xe3\x1f\x07\x31\x0e\xb2\x63\xae\xcf\xc7\x61\x4e\xc3\x07\x3a\x71\xff\xcf\x9f\xfe\x67\x4e\xfe\x19\x70\xab\xf6\xf9\x11\xbb\xce\x3d\x52\x5b\xdb\x6d\x94\xdd\xe3\x95\xf6\x55\x18\xeb\x6b\x70\x05\x23\xd0\x46\x5e\xb8\xd3\x0e\x96\xb6\xac\x34\x95\xc5\x6a\x5d\x16\x37\xb9\x4e\x5a\x7a\x5b\x92\xeb\x2f\x0a\x46\x96\x42\xd5\xdd\xb7\xeb\x8b\xf4\x79\xe5\x37\x00\x00\xff\xff\x09\xf3\x19\x3f\x84\x01\x00\x00") +var __1695918296_add_validated_atUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x39\xda\xe0\x3f\xf0\x49\x96\xb7\x60\xba\x59\x05\xa1\x40\x73\x32\xc2\x36\x45\xd4\x91\x4a\xa2\x16\xfa\xf7\x85\x26\x2d\x29\x09\xb9\x09\x31\x6f\x76\x9e\x66\x4f\x0e\x5e\x77\x4c\x98\xf2\xe1\xf0\x91\x62\x89\xcb\x69\xbc\x7a\x43\xf7\x3d\x8c\xe5\xdd\x46\x30\xe5\x54\x8e\x79\x1d\x53\x9e\x17\x74\x6c\xbb\x56\x19\x47\xda\xd3\x9d\x8a\xcf\xb0\xc6\x39\x94\x65\x3c\xc5\xd7\xb4\x1c\x51\x29\x20\xce\x3f\x14\xc4\x7a\xc8\x8e\xb9\x51\xc0\xb4\xe6\xe9\x0d\x83\xf8\x7f\xbf\xef\xe1\x6b\xcd\xe1\x4e\xfc\xaf\x36\x94\x1b\xe8\x72\xe9\x86\xd9\xba\x61\xa3\xdd\x1e\xcf\xb4\xaf\xe2\xdc\x5c\x72\x35\xac\xc0\x58\x79\xe2\xc1\x78\x38\xda\xb2\x36\xa4\xea\x56\xfd\x3a\x0d\xd2\xd3\xcb\x23\xa7\xf1\xbc\xdd\xca\xa3\x50\x75\xb5\xb8\x39\xdb\xd6\xad\xfa\x0e\x00\x00\xff\xff\x9e\x5f\xfa\x28\x79\x01\x00\x00") func _1695918296_add_validated_atUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2269,12 +2269,12 @@ func _1695918296_add_validated_atUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1695918296_add_validated_at.up.sql", size: 388, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0xa2, 0xc1, 0x6e, 0x33, 0x9e, 0x8c, 0x5d, 0x8e, 0x9b, 0xcf, 0x74, 0x3, 0xce, 0x91, 0x64, 0xd4, 0xc0, 0xe7, 0x45, 0xf7, 0xa4, 0xc8, 0xe0, 0x30, 0x8a, 0x5b, 0xc3, 0xba, 0x5c, 0x38, 0xd9}} + info := bindataFileInfo{name: "1695918296_add_validated_at.up.sql", size: 377, mode: os.FileMode(0644), modTime: time.Unix(1699030398, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x48, 0xa7, 0xd5, 0xb, 0xbb, 0x23, 0xfd, 0x40, 0x49, 0x33, 0x1b, 0x5c, 0xb3, 0x5b, 0x7a, 0xd8, 0xed, 0x5, 0xd, 0xb4, 0x91, 0xa3, 0x37, 0xaf, 0xaf, 0xc6, 0xa1, 0x13, 0xeb, 0x56, 0x1d}} return a, nil } -var __1697699419_community_control_node_syncUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4b\xc3\x30\x14\xc7\xef\x81\xfc\x0f\xcf\xd3\x1c\x94\x81\xe7\xe1\x21\x8d\x6f\x2c\x9a\x25\x23\x8d\xca\x4e\xa5\xb4\xd5\x85\x75\x8d\xac\x51\xdc\x7f\x2f\xb5\xb1\xcc\xea\x2d\xe4\xfb\xeb\xf3\xb8\x41\x66\x11\x2c\x4b\x25\x42\xe9\x8f\xc7\xf7\xd6\x05\x57\x77\x79\xe9\xdb\x70\xf2\x4d\xde\xfa\xaa\x86\x6b\x4a\x00\x60\xd4\xcf\xb9\xab\x20\x95\x3a\x05\xa5\x2d\xa8\x47\x29\x61\x6b\xc4\x86\x99\x1d\x3c\xe0\x0e\xb4\x02\xae\xd5\x4a\x0a\x6e\xc1\xe0\x56\x32\x8e\x49\x2c\x68\x7c\x79\x00\xa1\xec\x18\x8c\x82\x6b\xbb\x50\x34\x4d\x11\x9c\x6f\xfb\xf2\x27\x66\xf8\x9a\x99\xd1\x46\xc9\x7c\x49\x09\x25\x42\x65\x68\x6c\xdf\xa0\x7f\x23\xfd\x45\xbe\x84\x4d\x86\xe5\x64\xba\x33\xa7\x24\x43\x89\xdc\xc6\xb2\x85\xab\x22\xd0\x0d\xb0\x2c\x86\x86\x8f\x6e\x31\xc9\x52\xb2\x32\x7a\xf3\x1f\xc5\xf8\xfe\xee\x18\x1c\xf7\x5a\x28\xe8\xf6\xfb\xfa\x33\xf4\x9c\x2f\xee\xb5\x17\x3b\x4a\x9e\xd7\x68\xf0\x67\xfe\xed\xe4\x3e\x8a\x50\xe7\x87\xfa\x0c\x22\xbb\xb8\xbe\x97\x99\xba\x9b\x58\xae\x6e\x61\x36\x5b\x52\xf2\x15\x00\x00\xff\xff\x23\x3a\xe1\x5c\xc5\x01\x00\x00") +var __1697699419_community_control_node_syncUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x4f\xc3\x20\x18\xc7\xef\x7c\x8a\xc7\xd3\x5c\xd2\x2c\xf1\xbc\x78\xa0\xf8\x2c\x43\x19\x2c\x14\x35\x3b\x35\x4d\x5b\x1d\x59\x57\xcc\x40\xe3\xbe\xbd\xa1\x2c\x55\xab\x37\xe0\xff\xf6\x83\x69\xa4\x06\xc1\xd0\x5c\x20\xd4\xee\x78\x7c\xef\x6d\xb0\xad\x2f\x6b\xd7\x87\x93\xeb\xca\xde\x35\x2d\x5c\x13\x00\x18\xe5\x73\x69\x1b\xc8\x85\xca\x41\x2a\x03\xf2\x51\x08\xd8\x6a\xbe\xa1\x7a\x07\x0f\xb8\x03\x25\x81\x29\xb9\x12\x9c\x19\xd0\xb8\x15\x94\x61\x96\xf2\x9d\xab\x0f\xc0\xa5\x19\x73\xe9\xdd\xf6\x3e\x54\x5d\x57\x05\xeb\xfa\x58\xfd\x44\x35\x5b\x53\x3d\xba\xc8\x7c\x49\x08\x97\x05\x6a\x13\xd3\xea\x17\xcc\x5f\xd6\x9f\x98\x59\x1a\xcd\xa6\x1b\x73\x52\xa0\x40\x66\x52\xd5\xc2\x36\x89\xe4\x06\x68\x71\x49\x0c\x77\xbf\x98\xe4\xc8\x4a\xab\xcd\x3f\xfb\xe3\x79\x28\x18\x0c\xf7\x8a\x4b\xf0\xfb\x7d\xfb\x19\x22\xe0\x8b\x7d\x8d\x9a\x27\xcf\x6b\xd4\x78\xd9\x7d\x3b\xd9\x8f\x2a\xb4\xe5\xa1\x3d\x03\x2f\xbe\x3f\x1c\x55\x2a\xef\x26\x8e\xab\x5b\x98\xcd\x96\xe4\x2b\x00\x00\xff\xff\x61\xbb\x8c\x2b\xb3\x01\x00\x00") func _1697699419_community_control_node_syncUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2289,12 +2289,12 @@ func _1697699419_community_control_node_syncUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1697699419_community_control_node_sync.up.sql", size: 453, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x9e, 0x6b, 0x17, 0xaf, 0x79, 0x87, 0x29, 0x3c, 0xfb, 0xcf, 0xe2, 0x9c, 0x15, 0x79, 0x99, 0xbe, 0x5f, 0x7a, 0x55, 0xd3, 0x87, 0xfb, 0x8b, 0x3f, 0x85, 0x32, 0x71, 0x22, 0x4b, 0x56, 0x1c}} + info := bindataFileInfo{name: "1697699419_community_control_node_sync.up.sql", size: 435, mode: os.FileMode(0644), modTime: time.Unix(1700066424, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xd6, 0x63, 0x10, 0x1b, 0x16, 0x35, 0x57, 0xf1, 0x4a, 0x4, 0x51, 0xe0, 0x1, 0xe1, 0xfc, 0x12, 0x3a, 0x10, 0x4f, 0xb1, 0x96, 0x53, 0x2, 0xf5, 0x66, 0x7b, 0xe0, 0x8a, 0xdf, 0x78, 0x53}} return a, nil } -var __1698137561_add_profile_showcase_tablesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xd0\xc1\x4a\x03\x31\x10\xc6\xf1\xfb\xc2\xbe\xc3\x77\x54\xf0\xe0\xdd\x53\x5c\x67\x21\x18\xb3\x25\x9d\x42\x7b\x0a\x35\x9d\x62\xa0\x6c\x96\x24\x28\xfb\xf6\x82\x6d\xbd\xa9\xac\xc7\xc0\x2f\xcc\xfc\xa7\x73\xa4\x98\xc0\xea\xd1\x10\x74\x0f\x3b\x30\x68\xab\xd7\xbc\xc6\x94\xd3\x31\x9e\xc4\x97\xb7\xf4\x11\xf6\x45\xfc\x94\xe5\x28\x59\xc6\x20\x05\x37\x6d\x03\x00\xf1\x00\xa6\x2d\x63\xe5\xf4\x8b\x72\x3b\x3c\xd3\x0e\x83\x45\x37\xd8\xde\xe8\x8e\xe1\x68\x65\x54\x47\x77\x67\x2d\x63\xcd\xb3\xaf\xf3\x24\xd0\x96\xbf\x66\xd9\x8d\x31\x78\xa2\x5e\x6d\x0c\xe3\xfe\xe2\xde\x63\x89\xaf\xf1\x14\xeb\xfc\xbb\x2b\x29\x57\x9f\xf2\x41\xf2\x0f\xae\x6d\x6e\x1f\xda\xa6\x6d\x96\x54\x86\x34\xd6\x7d\xa8\xdf\x89\x97\xb7\xff\x4f\xea\xf5\xcf\x75\xb3\x85\x77\x38\xbb\xbf\x03\x3f\x03\x00\x00\xff\xff\xf4\x1e\x04\xcd\xc5\x01\x00\x00") +var __1698137561_add_profile_showcase_tablesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xcf\xc1\x4a\x03\x31\x10\xc6\xf1\xfb\x3e\xc5\x77\x54\xf0\xe0\xdd\x53\x8c\xb3\x10\x8c\xd9\x92\x4e\xa1\x3d\x85\x9a\x4e\x31\x50\x36\x4b\x12\x94\x7d\x7b\xa1\x75\x8f\x2a\xed\x71\xe0\x3f\xcc\xfc\xb4\x27\xc5\x04\x56\xcf\x96\x60\x7a\xb8\x81\x41\x5b\xb3\xe6\x35\xa6\x92\x8f\xe9\x24\xa1\x7e\xe4\xaf\xb8\xaf\x12\xa6\x22\x47\x29\x32\x46\xa9\xb8\xeb\x00\x20\x1d\xc0\xb4\x65\xac\xbc\x79\x53\x7e\x87\x57\xda\x61\x70\xd0\x83\xeb\xad\xd1\x0c\x4f\x2b\xab\x34\x3d\x9c\x63\x19\x5b\x99\x43\x9b\x27\x81\x71\x7c\xbe\xe4\x36\xd6\xe2\x85\x7a\xb5\xb1\x8c\xc7\x4b\xf6\x99\x6a\x7a\x4f\xa7\xd4\xe6\x3f\xb3\x9a\x4b\x0b\xb9\x1c\xa4\xfc\x92\x75\xf7\x4f\x5d\x77\x0d\x2f\xe6\xb1\xed\x63\x5b\x6c\x3f\x63\xb8\xc1\xb8\xac\x2c\x4f\x5d\xe5\xbf\x64\xff\xc9\xbe\x03\x00\x00\xff\xff\x7a\x85\xf6\x6b\xb8\x01\x00\x00") func _1698137561_add_profile_showcase_tablesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2309,12 +2309,12 @@ func _1698137561_add_profile_showcase_tablesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1698137561_add_profile_showcase_tables.up.sql", size: 453, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x16, 0x3f, 0x43, 0x93, 0xa6, 0x2, 0x95, 0xc7, 0xb8, 0xac, 0x77, 0x90, 0x56, 0x79, 0xca, 0x89, 0xd9, 0x8f, 0x7b, 0x42, 0xf9, 0x27, 0x30, 0x88, 0x28, 0x3d, 0x11, 0xa, 0xdc, 0x3e, 0x42}} + info := bindataFileInfo{name: "1698137561_add_profile_showcase_tables.up.sql", size: 440, mode: os.FileMode(0644), modTime: time.Unix(1700066424, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xef, 0x89, 0x68, 0x42, 0xbf, 0xff, 0xb9, 0x8f, 0x8f, 0x19, 0x91, 0xd2, 0x6a, 0x85, 0xda, 0x2c, 0x63, 0x5f, 0x3c, 0x84, 0x4, 0x93, 0x16, 0x10, 0xf0, 0xe0, 0xd9, 0x9b, 0xbe, 0x8d, 0x62}} return a, nil } -var __1698137562_fix_encryption_key_idUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x3f\x6f\x83\x30\x10\xc5\x77\x24\xbe\xc3\x8d\x89\xc4\xd4\xb5\xea\xe0\x90\x4b\x85\xea\xd8\xc8\x71\x86\x4c\x16\x02\xab\xa0\x88\x3f\x05\xb7\x12\x52\x3e\x7c\x65\xa7\xa4\xa2\x81\x92\xf5\xfc\xf3\xbd\x7b\x77\x2f\x14\x48\x24\x82\x24\x1b\x8a\x90\x27\x5d\xae\xda\xc4\xa4\xb9\x36\x4a\x57\x69\xdb\x37\xa6\xa8\x2b\xf5\xf5\x04\x2b\xdf\x03\x78\x6f\xeb\xcf\x46\x15\x19\x6c\x28\xdf\x00\xe3\x12\xd8\x91\xd2\xc0\x3e\x65\xba\x69\x75\x9a\x18\x9d\xa9\xb3\xee\x2d\x13\x31\x39\x46\xce\xba\x9f\xf8\x68\x69\x53\x94\xba\x33\x49\xd9\xb8\xf7\x5b\x79\x52\x28\x16\xd1\x9e\x88\x13\xbc\xe1\x69\x75\x85\xd6\xc0\x19\x84\x9c\xed\x68\x14\x4a\x10\x18\x53\x12\xa2\xef\xad\x9f\x7d\xcf\xf7\x22\x76\x40\x21\xed\x30\xfc\x1f\x7b\xab\xc1\x59\x70\x6f\x24\xb0\xb3\x04\x30\x68\x1d\x90\x62\x28\xe1\xf7\xc3\x88\xba\x6d\xe8\x72\x19\x2c\xec\x04\xdf\xcf\x49\xbb\x11\xb7\x82\xc7\x0b\x07\x48\x93\x34\xd7\x0f\xc2\x0e\x23\x54\xa2\x58\xbe\xaa\x40\x46\xf6\x08\xf3\xbb\x71\xcd\x8e\xf1\xd6\x66\x64\x06\x81\x03\xca\x3f\x57\x7c\xb9\xdf\xa2\x6b\xf4\x50\xd8\x9c\xd7\xc5\xbc\xfd\x2c\xb7\xa8\xcc\xb8\xde\xe9\x0f\x55\xd5\xf6\xde\xf8\x8a\xc2\x95\xac\xd0\x44\x87\xae\x2f\xad\xac\x1a\x62\x79\x4d\xcc\x77\x00\x00\x00\xff\xff\xcf\x20\xad\x0e\x10\x03\x00\x00") +var __1698137562_fix_encryption_key_idUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x3f\x6f\x83\x30\x10\xc5\xf7\xfb\x14\x37\x26\x12\x53\x57\xd4\xc1\x21\x97\x0a\xd5\xb1\x91\xe3\x0c\x99\x2c\x44\xac\x82\x22\xfe\x14\xdc\x4a\x48\xf9\xf0\x95\xd3\xd2\x8a\x52\x4a\x56\xfb\x77\x7a\xf7\xde\xbd\x48\x11\xd3\x84\x9a\x6d\x38\x61\x9e\x76\xb9\x69\x53\x97\xe5\xd6\x19\x5b\x65\x6d\xdf\xb8\xa2\xae\xcc\xfb\x03\xae\x00\xf1\xa5\xad\xdf\x1a\x53\x9c\x71\xc3\xe5\x06\x85\xd4\x28\x8e\x9c\x07\x80\x78\xb6\x4d\x6b\xb3\xd4\xd9\xb3\xb9\xd8\xde\x23\xb1\xd0\x23\xe2\x62\xfb\xe9\x98\x67\x5d\x51\xda\xce\xa5\x65\x73\xfb\x1e\x5e\xff\x12\x49\x54\xbc\x67\xea\x84\xcf\x74\x5a\x7d\x32\x6b\x94\x02\x23\x29\x76\x3c\x8e\x34\x2a\x4a\x38\x8b\x08\xd6\x21\x40\x2c\x0e\xa4\xb4\xdf\x42\xfe\xe3\x6a\x35\x38\x0a\xa6\x0e\x02\xbf\x47\x80\x83\xd0\x81\x38\x45\x1a\x7f\x06\x46\xd4\x77\x32\xd7\xeb\xb0\xfe\x4e\xc9\xfd\x9c\x74\x08\xb0\x55\x32\x59\x48\x3d\x4b\xb3\xdc\xde\x85\x86\x00\x8c\x6b\x52\xcb\x67\x54\x24\xd8\x9e\x70\x3e\x95\x10\xe0\x98\x6c\x7d\x25\x66\x00\x3c\x90\xfe\x75\xb8\xc7\x69\x7a\x21\xc0\x5d\xcd\xba\x79\x5c\x28\xd7\x57\xa0\x45\xe5\x46\xcf\x9d\x7d\x35\x55\xed\x4f\x4c\x4f\xa4\xfc\x8b\x17\x99\x8e\x77\x7d\xe9\x15\xcd\xd0\x40\xdf\x8f\x8f\x00\x00\x00\xff\xff\x7a\xab\xcf\xd7\xf6\x02\x00\x00") func _1698137562_fix_encryption_key_idUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2329,12 +2329,12 @@ func _1698137562_fix_encryption_key_idUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1698137562_fix_encryption_key_id.up.sql", size: 784, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0x13, 0xee, 0x79, 0x4b, 0x6d, 0x4f, 0xea, 0xa0, 0xff, 0xbb, 0x2, 0x6c, 0xd2, 0x8e, 0x58, 0xe4, 0x47, 0x7b, 0xb4, 0x62, 0xf9, 0x77, 0x2a, 0x52, 0xd8, 0x86, 0x57, 0xc2, 0x62, 0x3d, 0xef}} + info := bindataFileInfo{name: "1698137562_fix_encryption_key_id.up.sql", size: 758, mode: os.FileMode(0644), modTime: time.Unix(1700066424, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0x61, 0x1b, 0x6a, 0xb1, 0x44, 0x8d, 0x47, 0xde, 0x55, 0x45, 0x77, 0x8e, 0x4f, 0xb, 0x6a, 0x7f, 0x83, 0x56, 0x9c, 0x80, 0xc0, 0xae, 0xda, 0xd8, 0xaf, 0x7e, 0x2b, 0xb4, 0x5e, 0xc3, 0x63}} return a, nil } -var __1698414646_add_paddingUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\x48\x2c\xce\x88\x2f\x4a\x2c\x49\xce\x48\x2d\x89\x4f\xcd\x4b\x2e\xaa\x2c\x28\x49\x4d\x89\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x48\x4c\x49\xc9\xcc\x4b\x57\x70\xf2\xf1\x77\xb2\xe6\xe5\x02\x04\x00\x00\xff\xff\x7b\xbb\xad\x9f\x46\x00\x00\x00") +var __1698414646_add_paddingUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\x48\x2c\xce\x88\x2f\x4a\x2c\x49\xce\x48\x2d\x89\x4f\xcd\x4b\x2e\xaa\x2c\x28\x49\x4d\x89\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\x56\x70\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\x48\x4c\x49\xc9\xcc\x4b\x57\x70\xf2\xf1\x77\xb2\xe6\x02\x04\x00\x00\xff\xff\xc9\x3b\x51\x83\x45\x00\x00\x00") func _1698414646_add_paddingUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2349,12 +2349,12 @@ func _1698414646_add_paddingUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1698414646_add_padding.up.sql", size: 70, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x30, 0x8d, 0x6c, 0xe3, 0x33, 0xe9, 0xc8, 0xce, 0xaa, 0xc7, 0xf9, 0x62, 0x1e, 0x42, 0x48, 0x6e, 0xe8, 0xa4, 0xfe, 0xa1, 0x11, 0x5e, 0x2f, 0x76, 0x1d, 0xb6, 0x73, 0x97, 0xcb, 0x5a, 0xc}} + info := bindataFileInfo{name: "1698414646_add_padding.up.sql", size: 69, mode: os.FileMode(0644), modTime: time.Unix(1700066424, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x48, 0x8e, 0x18, 0x1b, 0x81, 0x78, 0xab, 0x42, 0xcb, 0x11, 0xf5, 0xe, 0x44, 0xd4, 0x35, 0x33, 0x4e, 0x8, 0x6f, 0x14, 0x90, 0xe6, 0x2b, 0x59, 0xee, 0x87, 0xb, 0x96, 0x62, 0x3, 0x45}} return a, nil } -var __1698746210_add_signature_to_revealed_addressesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xc1\x0a\xc2\x30\x0c\x06\xe0\xbb\xe0\x3b\xe4\x3d\x3c\xb5\x6e\xb7\xe8\x40\xe6\x39\x14\xfb\x23\x11\xdb\x62\x92\xfa\xfc\xfb\x12\xef\xeb\x83\xf6\x94\x79\xa5\xd7\x68\x6d\x76\x0d\x85\x8b\xe1\x37\xe1\xe1\x12\x43\x3e\x43\xbb\x18\xfe\x28\x5f\x54\x29\xb5\x1a\xdc\xe1\x94\x96\x85\xae\x1b\x3f\x6f\x77\x72\x7d\xf7\x12\xd3\x40\x99\xb7\x7c\x39\x9f\x8e\x00\x00\x00\xff\xff\xf1\xa4\x7e\xab\x58\x00\x00\x00") +var __1698746210_add_signature_to_revealed_addressesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x41\x0e\x02\x21\x0c\x05\xd0\xbd\xa7\xe8\x3d\x5c\x81\x33\xbb\xea\x24\x06\xd7\x0d\x91\x1f\x53\x23\x10\xdb\xe2\xf9\x7d\x89\xcb\x7e\xa7\x92\x32\xef\xf4\x9c\xbd\xaf\xa1\xa1\x70\x31\x7c\x17\x3c\x5c\x62\xca\x7b\xea\x10\xc3\x0f\xf5\x83\x26\xb5\x35\x83\x3b\x9c\xd2\xb6\xd1\xe5\xe0\xc7\xf5\x46\xae\xaf\x51\x63\x19\x28\xf3\x91\xcf\xa7\x7f\x00\x00\x00\xff\xff\xa0\x4d\x97\x3e\x57\x00\x00\x00") func _1698746210_add_signature_to_revealed_addressesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2369,12 +2369,12 @@ func _1698746210_add_signature_to_revealed_addressesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1698746210_add_signature_to_revealed_addresses.up.sql", size: 88, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x2e, 0x3b, 0x1, 0x80, 0xb5, 0xb3, 0xc2, 0x83, 0x2, 0x31, 0x21, 0x83, 0x4a, 0xfd, 0x6e, 0x19, 0xfb, 0xdd, 0xda, 0xb9, 0x64, 0xae, 0xd5, 0xdb, 0x42, 0x6b, 0x57, 0xcc, 0xda, 0x12, 0xda}} + info := bindataFileInfo{name: "1698746210_add_signature_to_revealed_addresses.up.sql", size: 87, mode: os.FileMode(0644), modTime: time.Unix(1700066424, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x64, 0xef, 0xe7, 0x5d, 0x82, 0x3e, 0x7d, 0x5a, 0x34, 0xd2, 0xa, 0x5c, 0x48, 0xef, 0x40, 0xb4, 0x7d, 0x78, 0xc8, 0x11, 0xbc, 0xf3, 0xc5, 0x1d, 0xd5, 0xe9, 0x39, 0xd9, 0xfa, 0xc8, 0x27}} return a, nil } -var __1699041816_profile_showcase_contactsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x94\x4f\x8f\xa2\x40\x10\xc5\xef\x24\x7c\x87\x8a\x27\x4d\x34\xd9\xfb\x9e\x58\x6c\xb3\x64\x59\x30\xa4\xdd\xe8\x89\x60\xd3\xae\x3d\x01\xda\x74\x37\x63\xfc\xf6\x13\x04\x94\xbf\x0e\x1c\x74\xe6\x5c\x55\xd4\x7b\x3f\xea\xf5\xd2\x73\xd7\x80\x8d\x5f\x36\x82\x93\xe0\x07\x16\x51\x5f\x1e\xf9\x99\x04\x92\xfa\x27\x41\x0f\x54\xd0\x84\x50\xf9\x53\xd7\x1e\x75\x12\x9e\xa8\x80\xa8\xac\x4d\xd7\x16\x0b\x58\xf1\x54\x80\x0a\xf6\x11\x95\x70\xe0\x02\xa4\xe2\x82\x25\xff\x81\x9f\x93\x72\x18\xca\x61\xa8\xac\xd1\x35\xd3\x43\x06\x46\xfd\x7b\xe2\x38\x4d\x98\x62\x54\x56\xd5\xc1\x54\xd7\x00\x00\xca\xf2\xc5\x67\x21\x60\xb4\xc5\xb0\xf6\xac\xbf\x86\xb7\x83\x3f\x68\x07\xae\x03\xa6\xeb\xac\x6c\xcb\xc4\xe0\xa1\xb5\x6d\x98\x68\x9e\xcf\xbd\x33\xc9\xf6\x2c\x62\xea\x02\x96\x83\xc1\x71\x31\x38\x1b\xdb\x86\x25\x5a\x19\x1b\x1b\xc3\x8f\xa2\x4f\x72\xa1\x7c\x2e\x42\x2a\xae\x7d\xb7\xb2\xae\xcd\xae\xce\x1f\x8b\x0f\x08\xe1\x69\xa2\x3a\x95\x07\x61\x28\xa8\x94\x63\x44\x27\x41\x4c\xf3\xfe\x52\xc7\x64\x32\x2f\x39\x44\x5c\x64\x0c\x5a\x15\x1a\xf3\x37\x06\xff\x0c\xcf\xfc\x6d\x78\xed\xf2\x6b\x40\x10\x1e\x45\x94\x28\x96\x9d\x47\x17\x8c\xf4\x5b\xfe\x3d\x29\x69\xf7\xbf\x93\x97\x78\xcf\xa3\xaf\x50\xfc\x20\x69\xad\x94\x65\x45\x1a\x90\x23\x14\x59\x1d\x13\xb5\x32\xde\xfd\x39\x2b\x2d\x7c\x22\xfc\x76\x9f\xd7\xef\xf5\x4d\x57\x21\x4e\xef\xbd\xf3\xda\xde\x59\x0e\xa1\x30\x61\x39\x4b\xb4\x1d\x64\x22\x5b\xea\x3a\x43\xfd\xde\x87\x46\x25\xbc\x09\xac\x16\xef\x86\xdb\x67\xe4\xf8\x49\xfc\x0b\x1b\x83\xd0\x37\x59\xf4\x71\xef\x60\x36\x0e\x7a\xed\x35\x69\x82\x4f\x5f\x7b\xa0\xe9\xe0\xbb\x6c\x6b\xee\x3f\xcc\x4e\x7f\x23\x2f\x33\x7f\xbd\x9a\x78\xaa\x4f\xd7\x6b\x08\xe5\x1b\x87\x5d\x50\x4d\x73\xef\xfd\x34\x9d\xd5\xc1\x7c\x04\x00\x00\xff\xff\x0c\xb4\xed\x3c\xe0\x08\x00\x00") +var __1699041816_profile_showcase_contactsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x41\xcf\x9a\x40\x10\xbd\xf3\x2b\x26\x9e\x34\xd1\xa4\x77\x4f\x14\xd7\x94\x94\x82\x21\x6b\xa3\x27\x82\xcb\x58\xb7\x01\xd6\xec\x2e\x35\xfe\xfb\x06\x81\x0a\x08\x16\x92\x4f\xf3\x9d\x67\x66\xe7\xbd\xb7\xef\xcd\xca\xf7\x36\x40\xcd\xaf\x0e\x81\xb3\x14\x47\x1e\x63\xa0\x4e\xe2\xc2\x42\x85\xc1\x59\xe2\x11\x25\xa6\x0c\xd5\xd2\x78\xd6\xc8\x44\xaa\x43\xa6\xd5\xd2\x30\x16\x0b\x58\x8b\x4c\x82\x0e\x0f\x31\x2a\x38\x0a\x09\x4a\x0b\xc9\xd3\x5f\x20\x2e\x69\x35\x0a\xd5\x28\xd4\x76\x18\x96\x4f\x4c\x4a\xfa\x97\x24\x49\x96\x72\xcd\x51\xd5\x91\xc1\xd4\x00\x00\xa8\xaa\xd7\x80\x47\x40\xc9\x8e\xc2\xc6\xb7\x7f\x98\xfe\x1e\xbe\x93\x3d\x78\x2e\x58\x9e\xbb\x76\x6c\x8b\x82\x4f\x36\x8e\x69\x91\xf9\x6d\xec\x0f\x57\xfc\xc0\x63\xae\xaf\x60\xbb\x14\x5c\x8f\x82\xbb\x75\x1c\x58\x91\xb5\xb9\x75\x28\x7c\x29\xda\x94\x90\x3a\x10\x32\x42\x79\x6b\xfb\x57\x35\x66\x4b\xe3\x3f\xb0\x43\xc6\x44\x96\xea\x2e\xcc\x61\x14\x49\x54\x6a\x04\xdc\x34\x4c\xb0\x68\xaf\x20\x4c\x26\xf3\x92\x7f\x2c\x64\xce\xbd\x5d\xc0\x44\xfc\xe6\xf0\xd3\xf4\xad\x6f\xa6\xff\x50\x7d\x3d\x7f\x26\xe2\x18\x99\xe6\xb9\x1d\x3a\x34\xc8\x3e\xdb\x77\x29\x85\x9d\x9f\xa5\xae\xc9\x41\xc4\x6f\xc6\xfa\x24\x4d\x0f\x49\xca\x8b\x18\xb2\x13\x94\x69\x1c\x11\xa7\x2a\xbf\xbd\x59\xaa\xc0\x3f\x87\x5c\x39\xf1\xf6\x58\xcf\x6c\x5d\xba\xe9\xbd\x75\xde\x58\x3a\xcb\xc9\x97\xf0\x6d\x77\x45\x76\x83\xe0\xe7\x1b\x3d\x77\x28\xd3\xfb\xd0\x88\x0c\xb7\x84\x6a\x04\xb8\xc9\xf3\xc3\x93\xfa\x12\xd1\x4b\x02\x03\xf4\x6e\x4b\xd0\x27\x76\x87\x54\x63\x94\x6e\x5c\x8b\x96\xda\xd9\x1b\xdd\x98\x0d\x34\xe1\x23\xda\x7e\x17\x76\x32\x1b\x65\xc3\xe2\x36\xb5\x64\xa9\x1f\xa6\x37\x28\x53\xac\x1b\xe2\x98\x06\xda\x5e\xbf\xb4\x39\x35\x04\xf9\x1b\x00\x00\xff\xff\xe4\x8a\x7a\xd7\x9e\x08\x00\x00") func _1699041816_profile_showcase_contactsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2389,12 +2389,12 @@ func _1699041816_profile_showcase_contactsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1699041816_profile_showcase_contacts.up.sql", size: 2272, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0x1, 0x5e, 0xc0, 0x2b, 0xe2, 0xe2, 0x45, 0x95, 0x70, 0x90, 0x9f, 0xfe, 0x7c, 0x85, 0xd9, 0xcf, 0x82, 0x71, 0x39, 0xac, 0x27, 0xae, 0x88, 0xc3, 0x83, 0x62, 0xa5, 0xf8, 0xf3, 0x84, 0x65}} + info := bindataFileInfo{name: "1699041816_profile_showcase_contacts.up.sql", size: 2206, mode: os.FileMode(0644), modTime: time.Unix(1700066424, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x7b, 0x55, 0xda, 0x93, 0x4a, 0x92, 0xf8, 0x45, 0xb2, 0x9f, 0x32, 0xf4, 0x37, 0xc, 0x5f, 0x62, 0xba, 0x33, 0xe2, 0x5c, 0x91, 0x1c, 0xc, 0x7, 0x9, 0xc2, 0x27, 0x5, 0x90, 0x94, 0xf3}} return a, nil } -var __1699554099_message_segmentsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\xcd\x4a\x03\x31\x14\x46\xf7\x81\xbc\xc3\xb7\xec\xc0\xbc\x81\xab\x4c\xb8\x95\x60\x4c\x4a\x1a\xc1\xae\x42\xec\x5c\xa6\xc5\xce\x0f\x64\x0a\xf6\xed\x45\xeb\x42\xa1\x83\x88\xeb\xef\x5c\xee\xe1\xe8\x40\x2a\x12\xa2\x6a\x2c\xc1\xac\xe1\x7c\x04\x3d\x9b\x6d\xdc\xa2\xe7\x52\x72\xc7\xa9\x70\xd7\xf3\x30\x17\xac\xa4\x00\x80\x43\x2e\x07\x34\xd6\x37\x9f\xb0\x7b\xb2\xb6\xbe\x0e\x5f\x60\x3a\x0e\x2d\xbf\xc1\xb8\x48\xf7\x14\x16\xa0\x92\xf6\xe3\x79\x98\x97\xa8\x29\x5f\x4e\x63\x6e\x6f\xbf\x39\x76\x69\x3a\xbf\xa4\x57\xbe\xdc\xdc\x37\xc1\x3c\xaa\xb0\xc3\x03\xed\xb0\xfa\x90\xad\xbf\x9f\xd4\x3f\x35\x2b\x78\x07\xed\xdd\xda\x1a\x1d\x11\x68\x63\x95\x26\x29\xaa\x3b\x29\xa4\xf8\x43\x9c\xb4\x1f\xfb\xe9\xc4\x33\xb7\xbf\x67\xfa\x97\x7f\x75\x95\x7b\x0f\x00\x00\xff\xff\xbe\x46\xea\xe3\xb8\x01\x00\x00") +var __1699554099_message_segmentsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\x4d\x6a\xc3\x30\x10\x46\xf7\x3a\xc5\xb7\x8c\xc1\x37\xe8\x4a\x16\x93\x22\xaa\x4a\x41\x51\xa1\x59\x09\x35\x1e\x9c\xd0\xf8\x07\x64\x43\x7d\xfb\x62\xd3\x45\x0b\x2e\xa5\x64\x3b\xf3\x86\x79\x3c\xe5\x49\x06\x42\x90\x95\x21\xe8\x3d\xac\x0b\xa0\x57\x7d\x0c\x47\xb4\x9c\x73\x6a\x38\x66\x6e\x5a\xee\xc6\x8c\x9d\x00\x80\x4b\xca\x17\x54\xc6\x55\x2b\x6b\x5f\x8c\x29\xd7\xf9\x17\x16\xaf\x5d\xcd\x1f\xd0\x36\xd0\x23\xf9\x6d\x26\xc7\x73\x3f\x75\xe3\x2f\xd0\x90\xe6\x5b\x9f\xea\xcd\x1f\xd7\x26\x0e\xd3\x5b\x7c\xe7\x79\x6b\x7d\xf0\xfa\x59\xfa\x13\x9e\xe8\x84\xdd\xe2\x59\x7e\xbf\x28\x7f\x2a\x16\x70\x16\xca\xd9\xbd\xd1\x2a\xc0\xd3\xc1\x48\x45\xa2\x78\x10\xe2\x1f\x4d\xe2\xb9\x6f\x87\x1b\x8f\x5c\xff\x55\xe7\x1e\xf3\x62\xd1\xfa\x0c\x00\x00\xff\xff\x7b\x88\xfc\x58\xaa\x01\x00\x00") func _1699554099_message_segmentsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2409,12 +2409,12 @@ func _1699554099_message_segmentsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1699554099_message_segments.up.sql", size: 440, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xe8, 0x48, 0x4b, 0x6d, 0xcf, 0x65, 0x3f, 0x2f, 0x4a, 0x49, 0x3b, 0x35, 0x85, 0x29, 0xb0, 0x51, 0x3a, 0x34, 0x92, 0xd0, 0xe1, 0x3e, 0x65, 0x26, 0x3c, 0x3c, 0x47, 0xa3, 0x83, 0x7e, 0x77}} + info := bindataFileInfo{name: "1699554099_message_segments.up.sql", size: 426, mode: os.FileMode(0644), modTime: time.Unix(1700066424, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xca, 0xd, 0xfa, 0xfa, 0x17, 0xef, 0x7e, 0x24, 0xf9, 0x28, 0xbd, 0x39, 0x75, 0xff, 0x34, 0x31, 0x27, 0x58, 0x3c, 0x17, 0x77, 0xfd, 0xc2, 0x66, 0x47, 0x63, 0x58, 0x3e, 0xb3, 0x88, 0x1a}} return a, nil } -var __1700044186_message_segments_timestampUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x2f\x4e\x4d\xcf\x4d\xcd\x2b\x29\xe6\xe5\x72\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xc9\xcc\x4d\x2d\x2e\x49\xcc\x2d\x50\xf0\xf4\x0b\x71\x75\x77\x0d\x52\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\xe5\xe2\xe5\xc2\x67\x50\x7c\x72\x7e\x6e\x41\x4e\x6a\x49\x6a\x0a\x49\x46\x3a\x07\xb9\x3a\x86\xb8\x2a\x78\xfa\xb9\xb8\x46\x28\x64\xa6\x54\xc4\x63\x98\x8b\x30\xc1\xdf\x0f\xc3\x56\x0d\xb8\xac\xa6\x35\x31\x86\xc1\x1d\x89\xdf\x58\x84\x3a\x54\x0b\x00\x01\x00\x00\xff\xff\xf2\xb4\xbe\x23\x4a\x01\x00\x00") +var __1700044186_message_segments_timestampUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x2f\x4e\x4d\xcf\x4d\xcd\x2b\x29\xe6\x72\x74\x71\x51\x70\xf6\xf7\x09\xf5\xf5\x53\x28\xc9\xcc\x4d\x2d\x2e\x49\xcc\x2d\x50\xf0\xf4\x0b\x71\x75\x77\x0d\x52\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xb0\xe6\xe2\xc2\x67\x4a\x7c\x72\x7e\x6e\x41\x4e\x6a\x49\x6a\x0a\xf1\xe6\x39\x07\xb9\x3a\x86\xb8\x2a\x78\xfa\xb9\xb8\x46\x28\x64\xa6\x54\xc4\x63\x18\x8a\xd0\xef\xef\x87\x61\xa5\x06\x5c\x56\xd3\x9a\x08\xb3\xe0\x0e\xc4\x6f\x2a\x42\x1d\x8a\xf9\x80\x00\x00\x00\xff\xff\x95\x31\x20\x93\x42\x01\x00\x00") func _1700044186_message_segments_timestampUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2429,12 +2429,12 @@ func _1700044186_message_segments_timestampUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1700044186_message_segments_timestamp.up.sql", size: 330, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xc5, 0x6, 0x55, 0xef, 0x9b, 0xe1, 0x90, 0xee, 0xbd, 0xde, 0x94, 0x69, 0xb, 0x9f, 0xdc, 0x9d, 0xa8, 0x8, 0x45, 0x71, 0xc2, 0xd3, 0x96, 0x9a, 0x45, 0xdc, 0x10, 0xd6, 0x6, 0x98, 0x9c}} + info := bindataFileInfo{name: "1700044186_message_segments_timestamp.up.sql", size: 322, mode: os.FileMode(0644), modTime: time.Unix(1700123735, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x4e, 0x7, 0x86, 0x71, 0xc8, 0x1f, 0x2f, 0xf4, 0xbc, 0xc5, 0xc4, 0x37, 0x56, 0xa1, 0x47, 0xd9, 0xc9, 0xfd, 0xdf, 0x9a, 0x48, 0x1d, 0xfd, 0xb4, 0xeb, 0xb6, 0xb1, 0xc2, 0x73, 0x11, 0x19}} return a, nil } -var __1700044187_curated_communitiesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x87\xf1\xbd\xd0\x77\xf8\x8f\x0a\xbe\x81\xd3\x55\xaf\x50\x3c\x13\x49\xae\xd0\x4e\xa5\x34\x11\x32\x54\xa1\x26\x83\x6f\x2f\x28\xae\x1f\x1f\xbf\x93\x63\x52\x86\x52\x23\x8c\xae\x85\xb1\x0a\x1e\x3a\xaf\x1e\x4b\xd9\xe6\x1c\xc3\xb4\x3c\xd7\xb5\x3c\x52\x4e\xf1\x85\x5d\x5d\x01\xc0\x3f\xbd\xa7\x14\xa0\x3c\x28\x6e\xae\xbb\x92\x1b\x71\xe1\xf1\xf0\x7b\xee\x71\xce\x65\x8b\x01\x8d\xb5\xc2\x64\xbe\xb4\xe9\x45\x70\xe6\x96\x7a\x51\xb4\x24\x9e\xeb\x6a\x7f\xac\xab\x4f\x00\x00\x00\xff\xff\x15\xc5\x9b\xe8\x87\x00\x00\x00") +var __1700044187_curated_communitiesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x87\xf1\xbd\x4f\xf1\x1f\x15\x7c\x03\xa7\xab\x5e\x21\x78\x26\x92\x5c\xa1\x9d\x4a\x69\x22\x64\xa8\x42\x4d\x06\xdf\x5e\x28\xb8\x7e\x7c\xfc\x2e\x9e\x49\x19\x4a\xad\x30\x4c\x07\xeb\x14\x3c\x98\xa0\x01\x4b\xdd\xe6\x92\xe2\xb4\xbc\xd7\xb5\xbe\x72\xc9\xe9\x83\x43\x03\x00\xff\xf2\x9d\x72\x84\xf2\xa0\x78\x78\x73\x27\x3f\xe2\xc6\xe3\x69\x5f\x9e\x69\x2e\x75\x4b\x11\xad\x73\xc2\x64\x77\xd8\xf6\x22\xb8\x72\x47\xbd\x28\x3a\x92\xc0\xcd\xf1\xdc\xfc\x02\x00\x00\xff\xff\xb5\x80\x91\xfe\x83\x00\x00\x00") func _1700044187_curated_communitiesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2449,12 +2449,12 @@ func _1700044187_curated_communitiesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1700044187_curated_communities.up.sql", size: 135, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0x49, 0xa8, 0x4b, 0x24, 0xb1, 0x59, 0x54, 0x4, 0x1e, 0x77, 0xad, 0xe0, 0xfd, 0x40, 0x64, 0xac, 0x5c, 0x7b, 0xc7, 0xeb, 0x59, 0xba, 0x8f, 0xfb, 0x2, 0xdc, 0xae, 0x8e, 0x3b, 0xfe, 0x39}} + info := bindataFileInfo{name: "1700044187_curated_communities.up.sql", size: 131, mode: os.FileMode(0644), modTime: time.Unix(1700221677, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xf1, 0xf1, 0x57, 0xb5, 0x83, 0xad, 0x9d, 0x9b, 0xf, 0x49, 0xe, 0x3d, 0xa5, 0xf6, 0xf5, 0x9c, 0x7f, 0xb3, 0xf7, 0x22, 0x43, 0x8a, 0xa0, 0x49, 0xfa, 0xcc, 0x9b, 0xea, 0xac, 0xc0, 0xb9}} return a, nil } -var __1700820989_add_resend_automatically_indexUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\xc8\x4c\xa9\x88\x2f\x4a\x2d\x4e\xcd\x4b\x89\x4f\x2c\x2d\xc9\xcf\x4d\x2c\xc9\x4c\x4e\xcc\xc9\xa9\x54\xf0\xf7\x53\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\xd6\xc0\xa6\x48\xd3\x9a\x97\x0b\x10\x00\x00\xff\xff\xc0\xd9\x3a\x0f\x4e\x00\x00\x00") +var __1700820989_add_resend_automatically_indexUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\xf0\xf4\x73\x71\x8d\x50\xc8\x4c\xa9\x88\x2f\x4a\x2d\x4e\xcd\x4b\x89\x4f\x2c\x2d\xc9\xcf\x4d\x2c\xc9\x4c\x4e\xcc\xc9\xa9\x54\xf0\xf7\x53\x28\x4a\x2c\x8f\xcf\x4d\x2d\x2e\x4e\x4c\x4f\x2d\xd6\xc0\xa6\x48\xd3\x9a\x0b\x10\x00\x00\xff\xff\xc6\x11\x2e\xab\x4d\x00\x00\x00") func _1700820989_add_resend_automatically_indexUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2469,12 +2469,12 @@ func _1700820989_add_resend_automatically_indexUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1700820989_add_resend_automatically_index.up.sql", size: 78, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xfa, 0x96, 0x17, 0xfc, 0x90, 0x2, 0xd6, 0xad, 0x80, 0x44, 0x27, 0xcc, 0xa9, 0x6b, 0x2e, 0x52, 0xe3, 0xac, 0xea, 0xef, 0xb9, 0xf5, 0x3, 0x16, 0xb3, 0x27, 0xfe, 0x35, 0x8, 0xb9, 0x64}} + info := bindataFileInfo{name: "1700820989_add_resend_automatically_index.up.sql", size: 77, mode: os.FileMode(0644), modTime: time.Unix(1704442577, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6a, 0xd4, 0xd2, 0x34, 0xa7, 0x68, 0xaa, 0xe5, 0x69, 0x9, 0xce, 0xcf, 0xcb, 0x13, 0x94, 0x9d, 0x3, 0x4c, 0x59, 0xac, 0x5f, 0x71, 0xb2, 0xe4, 0xda, 0x67, 0x42, 0xbe, 0xf2, 0x1d, 0xe8}} return a, nil } -var __1702996953_add_communities_shards_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcc\xcd\x8a\x83\x30\x14\xc5\xf1\xbd\xe0\x3b\x9c\xe5\x0c\xcc\x62\xf6\xb3\x8a\x99\x2b\x84\xde\x26\x12\x23\xd4\x95\x94\x28\x34\xd4\x0f\x30\x0a\xed\xdb\x17\x14\x0a\x2e\xba\x3e\xff\xf3\x93\x96\x84\x23\x38\x91\x31\x41\xe5\xd0\xc6\x81\x2e\xaa\x74\x25\xfc\x34\x0c\xeb\x18\x96\xd0\xc5\x26\xde\xae\x73\x1b\xf1\x95\x26\x00\xde\xcb\xb3\x09\x2d\x32\x36\xd9\x76\xd3\x15\x33\x0a\xab\xce\xc2\xd6\x38\x51\x0d\xa3\x21\x8d\xce\x59\x49\x07\x4b\x05\x0b\x49\x3f\x3b\xb0\x71\x8d\xef\xd7\xb8\x74\x33\x94\x76\xf8\xa7\x5c\x54\xbc\x23\x87\x28\x8c\x6d\xf7\xf8\x94\xf8\x7e\xf2\xf7\xc3\xf8\x9b\x26\xdf\x7f\xaf\x00\x00\x00\xff\xff\x80\xa2\xef\x50\xd5\x00\x00\x00") +var __1702996953_add_communities_shards_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8c\xbb\x0a\xc2\x30\x14\x86\xf7\x3e\xc5\x3f\x2a\x38\xb8\x3b\xa5\xf1\x14\x82\xc7\xa4\xa4\x29\xd8\xa9\x48\x5a\x30\xd8\x0b\x34\x2d\xe8\xdb\x0b\x15\x44\x07\xe7\xef\x22\x2d\x09\x47\x70\x22\x65\x82\xca\xa0\x8d\x03\x5d\x54\xe1\x0a\xf8\xb1\xef\x97\x21\xcc\xa1\x8d\x75\xbc\x5d\xa7\x26\x62\x93\x00\xf8\x80\x67\x1d\x1a\xa4\x6c\xd2\xb5\xd2\x25\x33\x72\xab\xce\xc2\x56\x38\x51\x05\xa3\x21\x8d\xce\x58\x49\x07\x4b\x39\x0b\x49\xbb\xb5\x5f\x67\xb5\xef\x96\x38\xb7\x13\x94\x76\x38\x52\x26\x4a\x7e\x3f\xbe\x9d\x30\x34\xed\xe3\x8f\xe1\xbb\xd1\xdf\x7f\xd8\x3e\xd9\x1e\x5e\x01\x00\x00\xff\xff\xad\x2a\x0e\x0a\xd0\x00\x00\x00") func _1702996953_add_communities_shards_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2489,8 +2489,8 @@ func _1702996953_add_communities_shards_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1702996953_add_communities_shards_table.up.sql", size: 213, mode: os.FileMode(0666), modTime: time.Unix(1704198211, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb8, 0xc6, 0xc5, 0x70, 0x2b, 0xf9, 0xfb, 0x58, 0xd, 0x17, 0x3b, 0x18, 0x94, 0xec, 0x3d, 0xc8, 0x80, 0xea, 0xab, 0x64, 0xeb, 0x5e, 0xa6, 0xec, 0xf1, 0x1e, 0x2d, 0x99, 0xb3, 0x66, 0x47, 0xd8}} + info := bindataFileInfo{name: "1702996953_add_communities_shards_table.up.sql", size: 208, mode: os.FileMode(0644), modTime: time.Unix(1704442577, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x40, 0x38, 0xcb, 0x1e, 0x85, 0x1, 0x6b, 0xe6, 0xe9, 0xf0, 0xf9, 0xe6, 0x6d, 0x23, 0x4d, 0xe6, 0x12, 0x61, 0xc8, 0x12, 0x25, 0x31, 0x39, 0x7d, 0x40, 0xad, 0x64, 0xfa, 0xf1, 0x87, 0x86}} return a, nil } @@ -2509,12 +2509,12 @@ func _1704489636_add_album_imagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1704489636_add_album_images.up.sql", size: 66, mode: os.FileMode(0666), modTime: time.Unix(1706092601, 0)} + info := bindataFileInfo{name: "1704489636_add_album_images.up.sql", size: 66, mode: os.FileMode(0644), modTime: time.Unix(1704819069, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x82, 0xf2, 0x12, 0x94, 0xb, 0x1b, 0x9f, 0x3f, 0xbf, 0x41, 0x96, 0x29, 0x63, 0x5e, 0x28, 0x4c, 0x9d, 0xd2, 0x26, 0xc9, 0x52, 0x4a, 0x19, 0x80, 0x10, 0xac, 0x1a, 0x51, 0x96, 0xe6, 0xa2}} return a, nil } -var __1704821941_add_joined_at_for_communityUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\x64\xe5\x67\xe6\xa5\xa6\xc4\x27\x96\x28\x84\xfa\x05\x7b\xba\xfb\xb9\xba\x28\x38\x79\xba\x7b\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x58\xf3\x72\x01\x02\x00\x00\xff\xff\x13\x27\x6e\x34\x55\x00\x00\x00") +var __1704821941_add_joined_at_for_communityUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\x64\xe5\x67\xe6\xa5\xa6\xc4\x27\x96\x28\x84\xfa\x05\x7b\xba\xfb\xb9\xba\x28\x38\x79\xba\x7b\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x58\x73\x01\x02\x00\x00\xff\xff\xe6\x0a\xf0\x91\x54\x00\x00\x00") func _1704821941_add_joined_at_for_communityUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2529,12 +2529,12 @@ func _1704821941_add_joined_at_for_communityUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1704821941_add_joined_at_for_community.up.sql", size: 85, mode: os.FileMode(0666), modTime: time.Unix(1706092601, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xcf, 0xf4, 0x43, 0xa2, 0x39, 0x56, 0xd3, 0xbe, 0x7b, 0xd3, 0xc9, 0x1d, 0x52, 0xe3, 0xbe, 0x41, 0x9a, 0x6f, 0x4a, 0xd2, 0xc7, 0xff, 0x8c, 0x26, 0xa3, 0x39, 0x87, 0x3d, 0x80, 0x17, 0x7f}} + info := bindataFileInfo{name: "1704821941_add_joined_at_for_community.up.sql", size: 84, mode: os.FileMode(0644), modTime: time.Unix(1704993573, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xa1, 0xca, 0xbe, 0x8e, 0xd1, 0xd5, 0xf, 0xe3, 0x4, 0x7, 0xdd, 0x62, 0x47, 0xc3, 0x90, 0xfb, 0x3, 0xb8, 0x48, 0x35, 0xc9, 0xc9, 0xe0, 0xe3, 0xb7, 0x36, 0x9f, 0xb8, 0x61, 0x1e, 0x18}} return a, nil } -var __1704832511_add_last_opened_at_for_communitiesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\xe4\x24\x16\x97\xc4\xe7\x17\xa4\xe6\xa5\xa6\xc4\x27\x96\x28\x84\xfa\x05\x7b\xba\xfb\xb9\xba\x28\x38\x79\xba\x7b\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x58\xf3\x72\x01\x02\x00\x00\xff\xff\x9d\x6b\xd9\x4f\x5a\x00\x00\x00") +var __1704832511_add_last_opened_at_for_communitiesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xc9\x4c\x2d\x8e\x47\x62\x2b\x38\xba\xb8\x28\x38\xfb\xfb\x84\xfa\xfa\x29\xe4\x24\x16\x97\xc4\xe7\x17\xa4\xe6\xa5\xa6\xc4\x27\x96\x28\x84\xfa\x05\x7b\xba\xfb\xb9\xba\x28\x38\x79\xba\x7b\xfa\x85\x28\xb8\xb8\xba\x39\x86\xfa\x84\x28\x18\x58\x73\x01\x02\x00\x00\xff\xff\x2c\x2a\x97\x97\x59\x00\x00\x00") func _1704832511_add_last_opened_at_for_communitiesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2549,12 +2549,12 @@ func _1704832511_add_last_opened_at_for_communitiesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1704832511_add_last_opened_at_for_communities.up.sql", size: 90, mode: os.FileMode(0666), modTime: time.Unix(1706092601, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xe5, 0x6d, 0x53, 0x8d, 0xa4, 0xdb, 0xb2, 0xa2, 0x3, 0xde, 0x2e, 0x16, 0xa9, 0x70, 0x7a, 0xd3, 0x1a, 0x46, 0x75, 0x3e, 0x3a, 0xa0, 0xe9, 0xc3, 0xbb, 0x69, 0x2b, 0xc4, 0x5, 0x5a, 0x2}} + info := bindataFileInfo{name: "1704832511_add_last_opened_at_for_communities.up.sql", size: 89, mode: os.FileMode(0644), modTime: time.Unix(1706093882, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0x73, 0x6, 0x6f, 0xa5, 0xc5, 0x5b, 0x5a, 0xf7, 0xf3, 0xb3, 0x28, 0x27, 0x61, 0x28, 0x2c, 0x6a, 0x1, 0x93, 0x14, 0x5b, 0xc0, 0xe8, 0xb5, 0xf6, 0xbf, 0x9f, 0xfb, 0x20, 0x7c, 0xd9, 0x54}} return a, nil } -var __1704832512_add_peersyncingUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x8a\x83\x30\x14\x45\xf7\x81\xfc\xc3\x5d\x3a\xe0\x1f\xcc\x2a\x66\x32\x4c\x98\x4c\x22\x21\x53\xea\x4a\x42\x0d\x22\x54\x0d\xc6\x2e\xfc\xfb\x62\x69\xb1\x82\xdb\x77\xef\x3b\xef\x1d\x6e\x05\x73\x02\x8e\x15\x4a\x20\x86\x30\xa5\x65\xb8\x74\x43\x5b\xf7\x21\x25\xdf\x86\x84\x8c\x12\xa0\x6b\x70\x62\x96\xff\x30\x8b\xd2\xca\x3f\x66\x2b\xfc\x8a\x0a\x46\x83\x1b\xfd\xad\x24\x77\xb0\xa2\x54\x8c\x8b\x7c\xad\xcf\x4b\x0c\x90\xda\x41\x1b\x07\xfd\xaf\xd4\x63\xda\x4e\xe3\x2d\xd6\x6f\xa8\x5d\x1a\xfd\x72\x1d\x7d\x83\x42\x99\x62\x9f\xcc\x5d\x1f\xd2\xec\xfb\xb8\x43\x52\xf2\xf1\x49\x09\x25\x4f\x03\xa9\xbf\xc4\xf9\xd0\xa0\xde\xf6\x8d\x3e\x6c\x64\xaf\xcf\xf2\xed\xd6\x0a\xbf\x07\x00\x00\xff\xff\xf1\xe2\xf6\xd2\x1d\x01\x00\x00") +var __1704832512_add_peersyncingUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\xca\x83\x30\x10\x46\xf7\x39\xc5\xb7\x54\xf0\x06\xae\x62\xfe\xfc\x34\x34\x4d\x24\xa4\xa5\xae\x24\xd4\x20\x42\xd5\x60\xec\xc2\xdb\x97\x42\x8b\x0a\x6e\xe7\xcd\xbc\x79\xcc\x70\x6a\x39\x2c\x2d\x24\x47\xf0\x7e\x8a\xcb\xf0\xe8\x86\xb6\xee\x7d\x8c\xae\xf5\x11\x09\x01\xba\x06\x37\x6a\xd8\x89\x1a\x94\x46\x5c\xa8\xa9\x70\xe6\x15\xb4\x02\xd3\xea\x5f\x0a\x66\x61\x78\x29\x29\xe3\x19\x01\xe6\x25\x78\x08\x65\xa1\xb4\x85\xba\x4a\xf9\x19\xb6\xd3\xf8\x0a\xf5\x46\xb4\x85\xc1\x2d\xcf\xd1\x35\x28\xa4\x2e\x76\x60\xee\x7a\x1f\x67\xd7\x87\x9d\x8f\xa4\x39\x21\xdf\x72\xa1\xfe\xf8\xfd\xb0\xbc\x5e\x8f\xb5\x3a\xdc\x48\x7e\x51\xd9\xfa\x28\xcd\xc9\x3b\x00\x00\xff\xff\xdf\xad\x3d\xa9\x14\x01\x00\x00") func _1704832512_add_peersyncingUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2569,12 +2569,12 @@ func _1704832512_add_peersyncingUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1704832512_add_peersyncing.up.sql", size: 285, mode: os.FileMode(0666), modTime: time.Unix(1706785499, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0xbe, 0xc, 0xe5, 0x3c, 0x4c, 0xa9, 0x95, 0x7c, 0xbf, 0xe9, 0x78, 0x90, 0x39, 0x70, 0xb, 0xfd, 0x54, 0x62, 0x76, 0xb, 0x87, 0xe, 0x22, 0x18, 0x4f, 0xe7, 0x47, 0x5f, 0xe5, 0xac, 0xa7}} + info := bindataFileInfo{name: "1704832512_add_peersyncing.up.sql", size: 276, mode: os.FileMode(0644), modTime: time.Unix(1706283142, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0xfc, 0x4c, 0x13, 0x67, 0xfb, 0x26, 0x58, 0xd3, 0x7f, 0x72, 0xd0, 0xe7, 0xd7, 0x28, 0x41, 0xa8, 0xa3, 0xf3, 0x9f, 0x1, 0x4c, 0xdd, 0xb6, 0x7b, 0xa4, 0x2a, 0x27, 0xb2, 0x31, 0xb1, 0x30}} return a, nil } -var __1706028033_profile_showcase_address_and_communityUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x4d\x6f\xa3\x30\x14\xbc\x23\xf1\x1f\x9e\x7a\x58\x35\x12\x95\xf6\x9e\x13\x4d\xdc\x0a\x2d\x4b\x22\x96\x48\xed\xc9\x72\xcc\xcb\xc6\x5a\x62\x57\xb6\xe9\x2a\xff\x7e\x55\xe2\x10\x42\x0b\x85\x55\x1b\xf5\xec\x19\xbf\x8f\x99\x37\x37\x37\x90\x22\xd7\xc8\x2c\x82\x65\xeb\x02\x0d\x6c\x94\x06\x63\x95\x16\xf2\x37\xf0\x52\x6b\x94\x16\x4a\x83\x1a\x9e\xb4\xda\x88\x02\xc1\x6c\xd5\x5f\xce\x0c\x02\x57\x45\x81\xdc\x8a\x8a\xf6\x0d\x98\x31\x68\x0d\x3c\x69\xdc\xa0\x46\xc9\xd1\xf8\xde\x3c\x5d\x2c\x21\x0b\x6f\x63\x72\xa4\xd3\x23\x9d\x36\xe9\xb4\xc1\x9a\xfa\xde\x2c\x25\x61\x46\xc6\x12\xe1\xda\xf7\x00\x00\xb8\x92\x56\x33\x6e\x29\xcb\x73\x8d\xc6\x40\x46\x1e\x32\x58\xa6\xd1\xcf\x30\x7d\x84\x1f\xe4\x11\x16\x09\xcc\x16\xc9\x5d\x1c\xcd\x32\x48\xc9\x32\x0e\x67\x24\x70\xdc\x2d\x13\x92\x8a\x1c\x56\xc9\xaf\xe8\x3e\x21\x73\xb8\x8d\xee\xa3\x24\x83\x64\x91\x41\xb2\x8a\x63\x87\xb3\xea\x0f\x56\xb8\xea\xef\xd6\x23\x57\xbb\x5d\x29\x85\xdd\xd7\x80\x39\xb9\x0b\x57\x71\x06\x57\x57\x0e\xc2\x38\x57\xa5\x6c\xb5\xf8\x0a\xf5\x2c\x8c\x58\x8b\x42\xd8\x3d\x34\x7b\xa8\x81\xdf\x1d\xce\x28\x6d\xa9\xd2\x39\xea\x0a\x57\x3f\xfb\xde\x64\xea\x7b\xfd\x32\x1c\x64\x1b\x25\xc0\x33\x6a\xb1\x11\x98\xd3\x6a\x0b\x6f\x6a\x60\xf6\xbb\xb5\x2a\xc6\x6c\xfe\x63\x66\xed\x6f\xbc\x94\x03\x5a\xbf\x84\x7d\x06\x38\xe4\xa3\xb4\x7f\xe7\xc4\x07\x5e\xf5\x0b\x05\x19\xdf\x56\xdb\x61\xdc\x3a\x4f\x45\xc9\x9c\x3c\xbc\x73\xa1\x8e\x41\x45\x3e\x1d\x11\x08\x8e\x35\x32\x0d\x8e\xac\x7e\x2d\xdb\x62\x7c\xa9\x9b\xef\xd2\x33\x38\x4d\x74\xd8\xe6\x9b\x6d\x34\x6d\x7a\x7d\xc2\x06\xf5\x90\xc1\xab\x9d\x04\xf5\x60\x93\xb3\x1b\x1a\xa7\xed\xcb\x51\x0c\xd5\xe6\xc4\x6a\xc4\x53\x47\x39\x17\x4f\x83\x4d\x74\x8e\x1f\x9f\x65\x6d\x07\x35\x83\xec\x52\x5a\x1d\x6a\x4e\xfe\x2f\xd1\x3e\xf5\x04\x06\xb8\xfc\xb3\xfc\xdb\x1a\x63\x90\x57\x3b\x76\xd3\x65\xd7\xee\x55\x9e\x3b\xb6\xbf\x68\xa7\x24\x5d\x65\xfb\x34\x3c\x2f\xfc\x2f\x00\x00\xff\xff\xf7\x28\xbe\xf2\xaf\x09\x00\x00") +var __1706028033_profile_showcase_address_and_communityUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x5d\x6f\x9b\x30\x14\x7d\xe7\x57\x5c\xf5\x61\x6a\x24\x2a\xed\x3d\x4f\x34\x71\x2b\x34\x46\x22\x46\xa4\xf6\xc9\x72\xcc\xcd\x62\x8d\xd8\x95\x6d\x3a\xe5\xdf\x4f\xc5\x09\x05\x56\xbe\xa6\x64\xea\x33\xe7\x70\x7d\xcf\xc7\xbd\xbb\x83\x04\xb9\x46\x66\x11\x2c\xdb\xe6\x68\x60\xa7\x34\x18\xab\xb4\x90\x3f\x81\x17\x5a\xa3\xb4\x50\x18\xd4\xf0\xa2\xd5\x4e\xe4\x08\x66\xaf\x7e\x73\x66\x10\xb8\xca\x73\xe4\x56\x94\xb4\x2f\xc0\x8c\x41\x6b\xe0\x45\xe3\x0e\x35\x4a\x8e\xc6\x5b\x26\xab\x35\xa4\xc1\x7d\x44\xce\x6c\x7a\x66\xd3\x3a\x9b\xd6\x48\x73\x6f\x91\x90\x20\x25\x53\x79\x70\xeb\x01\x00\x70\x25\xad\x66\xdc\x52\x96\x65\x1a\x8d\x81\x94\x3c\xa5\xb0\x4e\xc2\xef\x41\xf2\x0c\xdf\xc8\x33\xac\x62\x58\xac\xe2\x87\x28\x5c\xa4\x90\x90\x75\x14\x2c\x88\xef\xa8\x7b\x26\x24\x15\x19\x6c\xe2\x1f\xe1\x63\x4c\x96\x70\x1f\x3e\x86\x71\x0a\xf1\x2a\x85\x78\x13\x45\x0e\x66\xd5\x2f\x2c\x61\xe5\x9f\x9b\xdf\xb8\x3a\x1c\x0a\x29\xec\xb1\xfa\xbe\x24\x0f\xc1\x26\x4a\xe1\xe6\xc6\x21\x18\xe7\xaa\x90\xad\xe7\xb5\x41\xaf\xc2\x88\xad\xc8\x85\x3d\x42\x7d\x7e\x85\xfb\xea\x60\x46\x69\x4b\x95\xce\x50\x97\xb0\xea\xab\x37\x9b\x7b\xbd\xda\x3b\xab\xa6\xa8\xfe\x8a\x5a\xec\x04\x66\xb4\xdc\xfe\x23\xe1\xcd\xf1\xb0\x55\xf9\x04\xb9\x2f\xb0\x64\xff\x9b\x0b\x39\xfc\xea\xeb\xc7\x65\x38\x12\x97\x70\x7b\xa0\xc8\x23\xbb\xfb\x46\x41\xc6\xf7\xa5\x2c\x8c\x5b\x17\xa2\x30\x5e\x92\xa7\x81\x22\x9e\x08\x54\x64\xf3\xf1\xad\x3f\x91\xa6\x55\xfe\x4c\xea\x35\xb0\x65\xc1\xa7\x29\x76\x97\x87\x7e\xb5\x8b\x13\xf1\xa3\x27\xd4\x43\x79\xfb\x0e\xf5\xab\xf5\xfc\xbf\xc4\xf0\xab\x9d\x66\xb5\xba\x4c\xf3\xf3\xad\x00\x63\x1d\x79\x67\x55\x17\xa8\x63\xd8\xe9\x02\x8d\x8d\x4d\x13\x3e\xf9\x5a\xb5\x32\x53\x3f\x55\xff\xc5\x21\x37\x70\xf6\x2f\x27\xeb\x7a\x71\x1f\x8e\xf4\x75\xd2\xda\xda\x60\x44\x32\x3b\x34\xe9\x0a\x67\xb7\x84\x8d\x7c\xf6\xcf\xec\x74\xa2\x6b\x6a\x9f\x75\x8d\xb9\x7f\x02\x00\x00\xff\xff\xb9\x0a\x88\x1b\x74\x09\x00\x00") func _1706028033_profile_showcase_address_and_communityUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2589,12 +2589,12 @@ func _1706028033_profile_showcase_address_and_communityUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1706028033_profile_showcase_address_and_community.up.sql", size: 2479, mode: os.FileMode(0666), modTime: time.Unix(1706785499, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xc9, 0x51, 0x8e, 0x64, 0xd0, 0xb7, 0x61, 0x7e, 0xc7, 0xf1, 0x7d, 0x23, 0xaf, 0x4e, 0xb7, 0x9f, 0x56, 0x27, 0x2f, 0x75, 0xf5, 0xa0, 0x2d, 0xbc, 0x23, 0x42, 0x4e, 0x43, 0x25, 0x24, 0x37}} + info := bindataFileInfo{name: "1706028033_profile_showcase_address_and_community.up.sql", size: 2420, mode: os.FileMode(0644), modTime: time.Unix(1706283142, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0x8e, 0xc2, 0xbf, 0x32, 0x2d, 0x27, 0x4a, 0x83, 0xfc, 0x4c, 0xb5, 0x9b, 0x45, 0x12, 0xf0, 0xfc, 0x65, 0x36, 0xe0, 0x3c, 0x78, 0xd1, 0xdd, 0xd3, 0xfb, 0x44, 0x14, 0x20, 0x3, 0x3e, 0xcf}} return a, nil } -var __1706520870_add_bridge_messages_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcd\x6a\xc4\x20\x14\x46\xf7\x82\xef\x70\xc9\xaa\x85\xbe\x41\x57\xb6\xb9\x01\xa9\x35\x25\x31\x90\xac\xc4\x36\x12\xb2\x88\x2d\x6a\x4b\x1f\x7f\xc8\xcf\xcc\x30\xce\x64\xb6\x9e\xcf\xa3\x9c\xd7\x0a\x99\x42\x50\xec\x45\x20\xf0\x02\x64\xa9\x00\x5b\x5e\xab\x1a\x3e\xfd\xd8\x0f\x56\x4f\x36\x04\x33\xd8\x00\x0f\x94\x00\xfc\x06\xeb\x4f\x47\x7a\xec\x41\x61\xab\xe0\xa3\xe2\xef\xac\xea\xe0\x0d\xbb\xc5\x20\x1b\x21\x9e\xe6\xf9\xe6\x70\x66\xb2\xeb\xf2\x82\x2e\xb2\x7b\xcc\xfc\x99\x68\xfc\x4a\x73\x2c\x58\x23\x14\x64\xd9\x99\x1f\xdf\x4f\xd8\xd7\xb7\x8b\xd6\xc5\x1b\xd6\xed\xe7\x7b\x17\x7f\x8c\xb7\x2e\xea\xfd\x15\x25\x8f\xcf\x94\x50\xb2\x65\xe3\x32\xc7\x16\xc6\xfe\x5f\x27\xb1\x74\xda\x89\x92\x52\x5e\x17\x4d\x57\xb3\xfc\x10\x00\x00\xff\xff\x3f\x74\x24\xcb\x92\x01\x00\x00") +var __1706520870_add_bridge_messages_tableUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcd\x8a\x83\x30\x14\x46\xf7\x79\x8a\x8b\xab\x11\xe6\x0d\x5c\x65\xc6\x2b\x84\xc9\xc4\x41\x23\xe8\x2a\x64\x6a\x10\x17\xa6\x25\x49\x4b\x1f\xbf\xe0\x1f\xad\x62\xb7\x39\x5f\x4e\xc2\xf9\x2e\x90\x4a\x04\x49\xbf\x38\x02\xcb\x40\xe4\x12\xb0\x66\xa5\x2c\xe1\xdf\xf5\x6d\x67\xd4\x60\xbc\xd7\x9d\xf1\xf0\x41\x00\xae\xde\xb8\xf5\x44\xf5\x2d\x48\xac\x25\xfc\x15\xec\x97\x16\x0d\xfc\x60\x33\x0a\x44\xc5\xf9\x27\x81\xc5\x60\xf5\x60\xa6\xe1\x33\x1c\x55\x6f\x90\xbe\xe9\xa0\xdd\x04\x53\xcc\x68\xc5\x25\x44\xd1\x8a\x97\xb7\x5f\xd1\xe9\x6c\x83\xb1\x61\xaf\x9c\xff\x7c\x70\xed\xa2\x9d\xb1\x41\x1d\x8f\x48\x9c\x10\x32\xb7\x62\x22\xc5\x1a\xfa\xf6\xae\x36\x85\xd4\xb6\x0e\xc9\xc5\xbe\xe2\x76\x14\x27\xe4\x11\x00\x00\xff\xff\xb8\xaf\x0c\x1b\x85\x01\x00\x00") func _1706520870_add_bridge_messages_tableUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2609,12 +2609,12 @@ func _1706520870_add_bridge_messages_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1706520870_add_bridge_messages_table.up.sql", size: 402, mode: os.FileMode(0666), modTime: time.Unix(1706785499, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xb9, 0xec, 0x84, 0x1c, 0x1, 0xf, 0x6c, 0x9a, 0x49, 0x5, 0x25, 0x0, 0xf5, 0xf3, 0x23, 0x7, 0xaa, 0xd8, 0xb9, 0x6f, 0x66, 0x66, 0x99, 0x88, 0x60, 0xc, 0x16, 0x7a, 0x71, 0xd6, 0x33}} + info := bindataFileInfo{name: "1706520870_add_bridge_messages_table.up.sql", size: 389, mode: os.FileMode(0644), modTime: time.Unix(1706697770, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xd8, 0xaa, 0x58, 0x51, 0xae, 0x28, 0x95, 0x4, 0x3e, 0xd, 0x9c, 0x73, 0xec, 0xe8, 0x84, 0xd, 0x77, 0xdf, 0x8f, 0xb0, 0x1a, 0xfe, 0xef, 0xfc, 0x5b, 0xe1, 0xe9, 0xc2, 0xc1, 0xe7, 0x73}} return a, nil } -var __1707749393_add_community_grantsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\x08\x71\x74\xf2\x71\x55\xf0\x74\x53\xf0\xf3\x0f\x51\x70\x8d\xf0\x0c\x0e\x09\x56\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x4f\x2f\x4a\xcc\x2b\x29\x56\xd0\xe0\xe5\x52\x40\x12\xcd\x4c\x51\x08\x71\x8d\x08\x51\x08\x08\xf2\xf4\x75\x0c\x8a\x54\xf0\x76\x8d\x04\x6b\xf7\x0b\xf5\xf1\xd1\x01\x29\x05\x6b\x83\xa8\x71\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\x02\xcb\x24\xe7\xe4\x27\x67\x2b\x78\xfa\x85\xc0\x35\xc0\x55\x18\xf0\x72\x69\x5a\xf3\x72\x01\x02\x00\x00\xff\xff\x28\x72\x61\x7d\x98\x00\x00\x00") +var __1707749393_add_community_grantsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\x08\x71\x74\xf2\x71\x55\xf0\x74\x53\xf0\xf3\x0f\x51\x70\x8d\xf0\x0c\x0e\x09\x56\x48\xce\xcf\xcd\x2d\xcd\xcb\x2c\xa9\x8c\x4f\x2f\x4a\xcc\x2b\x29\x56\xd0\xe0\x52\x40\x12\xcc\x4c\x51\x08\x71\x8d\x08\x51\x08\x08\xf2\xf4\x75\x0c\x8a\x54\xf0\x76\x8d\x04\xeb\xf6\x0b\xf5\xf1\xd1\xe1\x52\x50\x00\x6b\x82\x28\x71\x71\x75\x73\x0c\xf5\x09\x51\x50\x52\x02\x49\x24\xe7\xe4\x27\x67\x2b\x78\xfa\x85\xc0\x95\xc3\x15\x18\x70\x69\x5a\x73\x01\x02\x00\x00\xff\xff\x3e\x6f\x1c\xa5\x93\x00\x00\x00") func _1707749393_add_community_grantsUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2629,12 +2629,12 @@ func _1707749393_add_community_grantsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1707749393_add_community_grants.up.sql", size: 152, mode: os.FileMode(0666), modTime: time.Unix(1708339462, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x15, 0x9b, 0xc1, 0xbd, 0x7b, 0x5c, 0x54, 0xb8, 0x89, 0x83, 0x3, 0x89, 0x2, 0x56, 0x13, 0x1c, 0x23, 0x1b, 0xfd, 0x16, 0x57, 0xfb, 0xd5, 0x53, 0x83, 0xbf, 0xb7, 0x3a, 0x63, 0x69, 0xa3}} + info := bindataFileInfo{name: "1707749393_add_community_grants.up.sql", size: 147, mode: os.FileMode(0644), modTime: time.Unix(1708365610, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0xd9, 0xbb, 0x31, 0xf4, 0xb7, 0xbd, 0x1f, 0x57, 0x5b, 0x40, 0x28, 0xed, 0xf7, 0x2c, 0xb3, 0xf, 0xcc, 0x50, 0x7f, 0x2c, 0x74, 0xe1, 0x19, 0x7c, 0xa0, 0xec, 0xfc, 0xb7, 0xbe, 0x1e, 0xbc}} return a, nil } -var __1707841194_add_profile_showcase_preferencesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\x08\x71\x74\xf2\x71\x55\x28\x28\xca\x4f\xcb\xcc\x49\x8d\x2f\xce\xc8\x2f\x4f\x4e\x2c\x4e\x8d\x2f\x28\x4a\x4d\x4b\x2d\x4a\xcd\x4b\x4e\x2d\x56\xd0\xe0\xe5\x52\x50\x50\x50\x48\xce\xc9\x4f\xce\x56\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xe0\xe5\xd2\xb4\xe6\xe5\xe2\xe5\xf2\xf4\x0b\x76\x0d\x0a\x01\xc9\xf9\x13\x30\x0a\x6c\x88\xa6\x42\x98\xa3\x4f\xa8\x6b\xb0\x82\x86\x81\xa6\x35\x20\x00\x00\xff\xff\xb4\x41\xbe\x2b\x88\x00\x00\x00") +var __1707841194_add_profile_showcase_preferencesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\x72\x75\x0c\x71\x55\x08\x71\x74\xf2\x71\x55\x28\x28\xca\x4f\xcb\xcc\x49\x8d\x2f\xce\xc8\x2f\x4f\x4e\x2c\x4e\x8d\x2f\x28\x4a\x4d\x4b\x2d\x4a\xcd\x4b\x4e\x2d\x56\xd0\xe0\x52\x50\x50\x50\x48\xce\xc9\x4f\xce\x56\xf0\xf4\x0b\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x30\xe0\xd2\xb4\xe6\xe2\xf2\xf4\x0b\x76\x0d\x0a\x01\x49\xf8\x13\x30\x06\x6c\x82\xa6\x42\x98\xa3\x4f\xa8\x6b\xb0\x82\x86\x81\xa6\x35\x20\x00\x00\xff\xff\x2d\x8d\x56\xab\x84\x00\x00\x00") func _1707841194_add_profile_showcase_preferencesUpSqlBytes() ([]byte, error) { return bindataRead( @@ -2649,8 +2649,8 @@ func _1707841194_add_profile_showcase_preferencesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1707841194_add_profile_showcase_preferences.up.sql", size: 136, mode: os.FileMode(0666), modTime: time.Unix(1708339466, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x39, 0xb4, 0xed, 0x60, 0x76, 0x65, 0x4e, 0x81, 0xb2, 0x7d, 0xf8, 0xd4, 0xc6, 0xfc, 0x58, 0xe7, 0x54, 0x4d, 0xdc, 0xe2, 0xf, 0xb9, 0x38, 0x3e, 0xd, 0xc0, 0x23, 0xbb, 0x66, 0x35, 0x54}} + info := bindataFileInfo{name: "1707841194_add_profile_showcase_preferences.up.sql", size: 132, mode: os.FileMode(0644), modTime: time.Unix(1708365610, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x3b, 0x28, 0x2f, 0xd9, 0x3f, 0xe6, 0xe6, 0x22, 0xc7, 0x3, 0xcc, 0x4a, 0xc8, 0xc1, 0x8c, 0x32, 0xd5, 0x15, 0xc2, 0xaf, 0xf9, 0x2f, 0x2c, 0xaf, 0xab, 0xc4, 0xaf, 0x29, 0x8a, 0x33, 0x69}} return a, nil } @@ -2669,12 +2669,32 @@ func _1708062699_activity_dataUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1708062699_activity_data.up.sql", size: 82, mode: os.FileMode(0666), modTime: time.Unix(1708339467, 0)} + info := bindataFileInfo{name: "1708062699_activity_data.up.sql", size: 82, mode: os.FileMode(0644), modTime: time.Unix(1708413450, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xfa, 0x24, 0x80, 0xea, 0xb0, 0xb, 0x50, 0xce, 0x10, 0xc9, 0x6c, 0x6f, 0xd4, 0x29, 0xe, 0xb, 0xe2, 0xa1, 0x70, 0x46, 0x2, 0x66, 0x40, 0x33, 0xb3, 0x4c, 0x6d, 0x82, 0x1f, 0xdf, 0x9}} return a, nil } -var _readmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\xef\xd3\x30\x0c\xc5\xef\x95\xfa\x1d\x9e\xb4\x0b\x48\xd3\xf8\x08\xdc\x10\x27\x38\x80\xc4\x91\x7a\xcd\xdb\x1a\x29\x8d\x4b\xec\xb4\xeb\xb7\x47\x29\x03\xf6\x57\x2e\x89\xed\xd8\xbf\xf7\x7c\x3a\x9d\xf0\x59\x37\xb8\x62\x2b\xd1\x89\x39\xde\x8b\x78\xd4\x6c\x1f\xfb\xae\xef\x7e\x10\x9a\xd3\xfe\x4c\x0e\x75\x19\x5e\x2a\xce\x18\x82\x6e\xf9\x35\x04\x29\x44\x56\x87\xa4\x4d\x76\xc3\xa2\x66\xf1\x9a\x88\x98\x61\xbf\x52\x6b\xa2\x05\x7d\xe7\xaa\x18\x75\x5e\x12\x1f\x1f\xda\x9d\x8f\x85\xd9\xe2\xca\x0b\x3e\x69\x01\x1f\xd2\x72\x0d\xab\x70\xd6\x95\x10\x8c\x9a\xea\x9c\xb1\x6b\xc5\xa6\x35\x05\x4c\xb2\x1e\x15\xa1\x2e\x29\x8e\xe2\xec\x3b\x9f\x08\x97\x6b\xe2\x19\xa3\x2e\x3b\x74\x65\x41\x0b\x06\x71\x39\x23\x30\xd1\x09\xc9\x01\x85\x63\xa1\x38\xc3\xa5\xef\xbe\x4f\xd1\x30\x4a\xc6\x95\x58\x59\xf6\xff\x34\xb8\x69\x81\xe9\xfc\xec\x6a\x78\x57\x8d\xe5\xe7\x4c\x33\xb9\xd3\x8e\xf4\x93\xf5\xfd\x19\xa6\xb0\xe9\x40\x6b\x0e\x5c\x09\x71\xe7\xbc\xfc\x19\xd2\x4e\x73\xfb\x8b\x3a\xad\x3d\xbe\x66\x22\x9a\x55\x62\x23\x6e\x32\x32\x60\xae\xc9\xe3\xa1\x3b\xce\x34\x44\x83\x4f\xe2\xa8\x4b\x10\xa7\x35\xad\xc3\x9b\xf9\xc3\x1b\xea\xbe\xfb\xc7\x7d\x46\xa2\x84\x98\xef\xed\x8f\x25\xdd\x50\x97\x7b\x91\xf0\xb7\x73\x73\x20\x66\x67\x29\xb5\xe1\xbd\x2c\xf0\x82\x6f\x0a\x59\x35\x86\xbe\x3b\x96\x6e\x88\xb7\x43\x4f\xe6\xd8\xc6\x96\xfd\xd2\x77\xbf\x03\x00\x00\xff\xff\x09\xac\x99\x58\x37\x02\x00\x00") +var __1708423707_applied_community_eventsUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xcd\x0a\x83\x30\x10\x04\xe0\xbb\x4f\x31\x47\x05\xdf\xa0\xa7\x34\x5d\x41\xba\x8d\x12\x56\xa8\x27\x29\x9a\x43\xa8\x3f\x81\xa6\x05\xdf\xbe\xe0\xa1\xb5\xbd\xee\x7e\x33\xa3\x2d\x29\x21\x88\x3a\x32\xe1\x16\xc2\xe8\xdd\xd0\xf5\xcb\x34\x3d\x67\x1f\xd7\xce\xbd\xdc\x1c\x1f\x48\x13\x00\xf8\x9e\xfd\x00\xa1\xab\xc0\x54\x02\xd3\x30\xe7\xdb\x7f\xc3\x5d\x5c\x83\xfb\x80\x13\x15\xaa\xe1\x3d\xea\xc7\xa5\xbf\xa3\x34\xff\xe1\xda\x96\x17\x65\x5b\x9c\xa9\x45\xba\x5f\xca\x7f\x7b\x33\x54\x06\xba\x32\x05\x97\x5a\x60\xa9\x66\xa5\x29\xc9\x0e\xef\x00\x00\x00\xff\xff\x3c\x32\x66\x2a\xc9\x00\x00\x00") + +func _1708423707_applied_community_eventsUpSqlBytes() ([]byte, error) { + return bindataRead( + __1708423707_applied_community_eventsUpSql, + "1708423707_applied_community_events.up.sql", + ) +} + +func _1708423707_applied_community_eventsUpSql() (*asset, error) { + bytes, err := _1708423707_applied_community_eventsUpSqlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "1708423707_applied_community_events.up.sql", size: 201, mode: os.FileMode(0644), modTime: time.Unix(1708428925, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x5b, 0x9b, 0xed, 0x69, 0x1b, 0xf9, 0x11, 0xb8, 0xa3, 0x85, 0x97, 0xd, 0xe7, 0x2d, 0x44, 0xf2, 0x61, 0x51, 0x92, 0x1b, 0x13, 0x64, 0xb6, 0x75, 0x4c, 0x2b, 0x2f, 0xd4, 0x97, 0x39, 0x29}} + return a, nil +} + +var _readmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xc1\xce\xd3\x30\x10\x84\xef\x7e\x8a\x91\x7a\x01\xa9\x2a\x8f\xc0\x0d\x71\x82\x03\x48\x1c\xc9\x36\x9e\x36\x96\x1c\x6f\xf0\xae\x93\xe6\xed\x91\xa3\xc2\xdf\xff\x66\xed\xd8\x33\xdf\x78\x4f\xa7\x13\xbe\xea\x06\x57\x6c\x35\x39\x31\xa7\x7b\x15\x4f\x5a\xec\x73\x08\xbf\x08\x2d\x79\x7f\x4a\x43\x5b\x86\x17\xfd\x8c\x21\xea\x56\x5e\x47\x90\x4a\x14\x75\x48\xde\x64\x37\x2c\x6a\x96\xae\x99\x48\x05\xf6\x27\x77\x13\xad\x08\xae\x8a\x51\xe7\x25\xf3\xf1\xa9\x9f\xf9\x58\x58\x2c\xad\xbc\xe0\x8b\x56\xf0\x21\x5d\xeb\x4c\x95\xb3\xae\x84\x60\xd4\xdc\xe6\x82\x5d\x1b\x36\x6d\x39\x62\x92\xf5\xb8\x11\xdb\x92\xd3\x28\xce\xe0\x13\xe1\x72\xcd\x3c\x63\xd4\x65\x87\xae\xac\xe8\xc3\x28\x2e\x67\x44\x66\x3a\x21\x25\xa2\x72\xac\x14\x67\xbc\x84\x9f\x53\x32\x8c\x52\x70\x25\x56\xd6\xfd\x8d\x05\x37\xad\x30\x9d\x9f\xa6\x86\x0f\xcd\x58\x7f\xcf\x34\x93\x3b\xed\x90\x9f\xa4\x1f\xcf\x30\x85\x4d\x07\x58\xaf\x7f\x25\xc4\x9d\xf3\x72\x64\x84\xd0\x7f\xf9\x9b\x3a\x2d\x84\xef\x85\x48\x66\x8d\xd8\x88\x9b\x8c\x8c\x98\x5b\xf6\x74\x14\x4e\x33\x0d\xc9\xe0\x93\x38\xda\x12\xc5\x69\xbd\xe4\xf0\x2e\x7a\x78\x07\x1c\xfe\x13\x9f\x91\x29\x31\x95\x7b\x7f\x62\x59\x37\xb4\xe5\x5e\x25\xfe\x33\xee\xd5\x53\x71\xd6\xda\x3a\xd8\xcb\xde\x2e\xf8\xa1\x90\x55\x53\x0c\xc7\xaa\x0d\xe9\x76\x14\x29\x1c\x7b\x68\xdd\x2f\xe1\x6f\x00\x00\x00\xff\xff\x3c\x0a\xc2\xfe\x2a\x02\x00\x00") func readmeMdBytes() ([]byte, error) { return bindataRead( @@ -2689,12 +2709,12 @@ func readmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "README.md", size: 567, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xd3, 0x95, 0x55, 0x6f, 0xc6, 0x23, 0x53, 0x33, 0x42, 0x2b, 0xa9, 0x78, 0x6d, 0xa5, 0x41, 0x67, 0x7c, 0xe8, 0xc0, 0xc3, 0x73, 0x6b, 0x97, 0x30, 0x3a, 0xab, 0x14, 0xb0, 0xa9, 0x2c, 0xf2}} + info := bindataFileInfo{name: "README.md", size: 554, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x6e, 0xfb, 0xcc, 0x81, 0x94, 0x4d, 0x8c, 0xa0, 0x3b, 0x5, 0xb0, 0x18, 0xd6, 0xbb, 0xb3, 0x79, 0xc8, 0x8f, 0xff, 0xc1, 0x10, 0xf9, 0xf, 0x20, 0x1b, 0x4a, 0x74, 0x96, 0x42, 0xd7, 0xa8}} return a, nil } -var _docGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x3d\x6f\xdb\x30\x10\xdd\x03\xe4\x3f\x3c\x64\xc9\x12\x4b\x06\xda\x29\x5b\x87\x0e\x5d\xda\xc5\x7b\x71\xa6\x4e\xd2\xc1\xd4\x51\xe5\x9d\x2c\xfb\xdf\x17\xa4\xe3\x5a\x28\x0a\x74\x7d\x24\x1f\xdf\x57\xdb\xe2\x30\x8a\xa1\x97\xc8\x10\x83\x72\x60\x33\xca\x57\x1c\x39\xd0\x62\x8c\x97\x41\x7c\x5c\x8e\x4d\x48\x53\x6b\x4e\xbe\xd8\x4e\xa6\x76\x92\x21\x93\x73\x7b\xfe\xfc\xf2\xfc\xd4\xb6\x08\xa4\xaf\x8e\x91\xb4\x8b\x5c\xc9\x0c\xe6\x94\x5d\x74\xc0\x2a\x3e\x82\x30\x67\xee\xe5\xd2\xe0\x8b\x23\x32\x99\xc3\x47\xf2\x57\x83\x8f\x8c\x40\xc6\x95\xa7\x4f\x19\x43\xda\x1d\x45\x3b\x72\x6a\x2a\xf6\xad\xdf\x40\x45\x64\xa0\x18\xb9\x43\x9f\xd3\x54\x5f\x1b\x4d\x8c\x4e\x32\x07\x4f\xf9\xfa\x06\x32\x63\x87\xd2\xc4\x56\x09\x46\x3a\x33\x34\x7d\x28\x00\x69\xf7\x7f\x57\x58\x53\x3e\x19\xc8\xc0\x97\x99\x83\x73\xd7\x3c\x3f\x55\xb6\xef\x3f\x0e\x5f\xdf\x71\x18\xb9\xfc\x50\xfc\xa5\xbe\xaa\xa8\x11\x2a\x73\x67\xf0\x84\x3e\xc5\x98\xd6\x7a\xb0\xa8\x5c\xe0\x32\xb1\x39\x4d\x33\x42\xd2\x33\xab\x4b\xd2\x4a\xb7\x68\x94\x13\xd7\x8b\xbe\x26\x88\x8a\x0b\xc5\x5b\x86\x37\xff\x87\x5b\x4e\xf7\x42\xc2\x92\x33\xab\xc7\x6b\x7d\xc3\x1a\xf2\x75\x2e\x6c\xb8\xa9\x97\xa4\x56\x2d\xce\x39\x79\x0a\x29\x6e\xf0\x4a\x67\x23\x65\x7e\xe4\xe6\x74\x8c\xfc\x86\x75\x94\x30\x62\x62\x52\xab\xc5\xd4\x0b\x91\x9c\xcd\x1f\x04\x10\x85\x73\x9e\xac\x78\x2e\x0a\x4b\xc6\x95\xb4\x4c\xe8\x5e\xc7\x46\x52\xed\x60\xa6\xf0\xb1\x89\xfb\x37\x8b\xb1\x81\xfe\x0a\xe6\x4f\xd9\x2b\x83\xba\x0e\xfb\xfd\x7e\xff\xe9\x67\xd3\x34\x75\x14\x7c\xa1\x69\x2e\x42\xbd\xcc\x75\x95\x18\x71\x64\xc8\xa0\x29\x73\x57\x74\xf1\x45\xac\xce\x2d\x44\x61\xf5\x52\x5d\x25\x4c\xb1\xe3\x5c\x2c\xe9\xd6\xd2\xbf\x62\xab\x05\xcf\x14\x4e\x34\x30\xec\x57\x14\xe7\x5b\xe5\x43\x7a\x1f\x58\xb9\x4c\x63\xbb\xc4\xdd\x7c\x1a\xb6\xa1\xef\x12\x9a\xa6\x7d\x00\xcd\x90\xd0\x3c\x3f\xfd\x0e\x00\x00\xff\xff\xd1\x22\x92\xfd\x63\x03\x00\x00") +var _docGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x3f\x8f\xdb\x3e\x0c\xdd\xf3\x29\x1e\x6e\xb9\xe5\x22\x07\xf8\xfd\xa6\xdb\x3a\x74\xe8\xd2\x2e\xd9\x0b\x46\xa6\x6d\x22\x32\xe5\x8a\xf4\x39\xf9\xf6\x85\x74\x17\x9c\x51\x14\xe8\x4a\x89\x8f\xef\x5f\xd7\xe1\x3c\x89\x61\x90\xc4\x10\x83\x72\x64\x33\x2a\x77\x5c\x38\xd2\x6a\x8c\xa7\x51\x7c\x5a\x2f\x21\xe6\xb9\x33\x27\x5f\xed\x28\x73\x37\xcb\x58\xc8\xb9\x7b\xfb\xff\xe9\xd0\x75\x88\xa4\xcf\x8e\x89\xb4\x4f\xdc\xb0\x0c\xe6\x54\x5c\x74\xc4\x26\x3e\x81\xb0\x14\x1e\xe4\x16\xf0\xc5\x91\x98\xcc\xe1\x13\xf9\xb3\xc1\x27\x46\x24\xe3\x0a\x33\xe4\x82\x31\x1f\x2f\xa2\x3d\x39\x85\x3a\xfa\x36\xec\x26\x95\x61\xa4\x94\xb8\xc7\x50\xf2\xdc\x76\x8d\x66\x46\x2f\x85\xa3\xe7\x72\x7f\x01\x99\xb1\x43\x69\x66\xab\xfb\x13\xbd\x31\x34\x7f\x9c\x07\x69\xff\x6f\x45\xd8\x72\xb9\x1a\xc8\xc0\xb7\x85\xa3\x73\x1f\x0e\x15\xeb\xfb\x8f\xf3\xd7\x57\x9c\x27\xae\xf0\x55\x5a\x1e\x1a\x85\x66\x9e\x32\xf7\x06\xcf\x18\x72\x4a\x79\x6b\x0f\xab\xca\x0d\x2e\x33\x9b\xd3\xbc\x20\x66\x7d\x63\x75\xc9\x5a\xd1\x56\x4d\x72\xe5\xf6\xcf\xb7\x0c\x51\x71\xa1\xf4\xee\x5e\x93\x7e\x7e\x37\xe8\x11\x44\x5c\x4b\x61\xf5\x74\x6f\x2b\xac\xb1\xdc\x97\x8a\x85\x77\xe6\x92\xd5\x9a\xbc\xa5\x64\xcf\x31\xa7\xdd\xbc\xa2\xd9\x44\x85\x3f\x1d\x73\xba\x24\x7e\xc1\x36\x49\x9c\x30\x33\xa9\xb5\x40\xda\x87\x44\xce\xe6\x9f\xfb\x10\x85\x73\x99\xad\x0a\xae\xfc\xaa\xbb\x15\xb3\x16\xe7\x91\xc3\x8e\x50\x33\x7f\xa1\xf8\x51\x85\xc7\x95\xd5\xd8\x40\x7f\x98\xf2\x08\x79\x63\x50\xdf\xe3\x74\x3a\x9d\xfe\xfb\x19\x42\x68\x5d\xe0\x1b\xcd\x4b\xa5\xe9\xb5\xa3\x9b\xa4\x84\x0b\x43\x46\xcd\x85\xfb\xca\x8a\x6f\x62\xad\x64\x31\x09\xab\xd7\xcc\x2a\x5e\x4e\x3d\x97\xaa\x47\xf7\x7a\xfe\x66\x59\x38\x1c\x16\x8a\x57\x1a\x19\xf6\x2b\x89\x73\x0d\x7a\xcc\xaf\x23\x2b\xd7\x3a\xec\xcb\x77\x5c\xae\xe3\xde\xec\x63\x46\x08\xdd\xe7\x20\x8c\x19\xe1\xf0\x3b\x00\x00\xff\xff\x12\xcd\x7f\xc4\x52\x03\x00\x00") func docGoBytes() ([]byte, error) { return bindataRead( @@ -2709,8 +2729,8 @@ func docGo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "doc.go", size: 867, mode: os.FileMode(0666), modTime: time.Unix(1702977676, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0x29, 0xc4, 0x3d, 0xfd, 0x84, 0x88, 0x1f, 0x68, 0x7d, 0xe9, 0xdd, 0xf6, 0x8a, 0xe0, 0xa4, 0x9d, 0x4e, 0xf6, 0x5e, 0xfb, 0xa9, 0x73, 0xed, 0xab, 0x1b, 0xb2, 0x4c, 0xf2, 0x6b, 0x9f, 0x16}} + info := bindataFileInfo{name: "doc.go", size: 850, mode: os.FileMode(0644), modTime: time.Unix(1683894533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xcc, 0x41, 0xe1, 0x61, 0x12, 0x97, 0xe, 0x36, 0x8c, 0xa7, 0x9e, 0xe0, 0x6e, 0x59, 0x9e, 0xee, 0xd5, 0x4a, 0xcf, 0x1e, 0x60, 0xd6, 0xc3, 0x3a, 0xc9, 0x6c, 0xf2, 0x86, 0x5a, 0xb4, 0x1e}} return a, nil } @@ -2805,268 +2825,149 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "000001_init.down.db.sql": _000001_initDownDbSql, - - "000001_init.up.db.sql": _000001_initUpDbSql, - - "000002_add_last_ens_clock_value.up.sql": _000002_add_last_ens_clock_valueUpSql, - - "1586358095_add_replace.up.sql": _1586358095_add_replaceUpSql, - - "1588665364_add_image_data.up.sql": _1588665364_add_image_dataUpSql, - - "1589365189_add_pow_target.up.sql": _1589365189_add_pow_targetUpSql, - - "1591277220_add_index_messages.up.sql": _1591277220_add_index_messagesUpSql, - - "1593087212_add_mute_chat_and_raw_message_fields.up.sql": _1593087212_add_mute_chat_and_raw_message_fieldsUpSql, - - "1595862781_add_audio_data.up.sql": _1595862781_add_audio_dataUpSql, - - "1595865249_create_emoji_reactions_table.up.sql": _1595865249_create_emoji_reactions_tableUpSql, - - "1596805115_create_group_chat_invitations_table.up.sql": _1596805115_create_group_chat_invitations_tableUpSql, - - "1597322655_add_invitation_admin_chat_field.up.sql": _1597322655_add_invitation_admin_chat_fieldUpSql, - - "1597757544_add_nickname.up.sql": _1597757544_add_nicknameUpSql, - - "1598955122_add_mentions.up.sql": _1598955122_add_mentionsUpSql, - - "1599641390_add_emoji_reactions_index.up.sql": _1599641390_add_emoji_reactions_indexUpSql, - - "1599720851_add_seen_index_remove_long_messages.up.sql": _1599720851_add_seen_index_remove_long_messagesUpSql, - - "1603198582_add_profile_chat_field.up.sql": _1603198582_add_profile_chat_fieldUpSql, - - "1603816533_add_links.up.sql": _1603816533_add_linksUpSql, - - "1603888149_create_chat_identity_last_published_table.up.sql": _1603888149_create_chat_identity_last_published_tableUpSql, - - "1605075346_add_communities.up.sql": _1605075346_add_communitiesUpSql, - - "1610117927_add_message_cache.up.sql": _1610117927_add_message_cacheUpSql, - - "1610959908_add_dont_wrap_to_raw_messages.up.sql": _1610959908_add_dont_wrap_to_raw_messagesUpSql, - - "1610960912_add_send_on_personal_topic.up.sql": _1610960912_add_send_on_personal_topicUpSql, - - "1612870480_add_datasync_id.up.sql": _1612870480_add_datasync_idUpSql, - - "1614152139_add_communities_request_to_join.up.sql": _1614152139_add_communities_request_to_joinUpSql, - - "1615374373_add_confirmations.up.sql": _1615374373_add_confirmationsUpSql, - - "1617694931_add_notification_center.up.sql": _1617694931_add_notification_centerUpSql, - - "1618923660_create_pin_messages.up.sql": _1618923660_create_pin_messagesUpSql, - - "1619094007_add_joined_chat_field.up.sql": _1619094007_add_joined_chat_fieldUpSql, - - "1619099821_add_last_synced_field.up.sql": _1619099821_add_last_synced_fieldUpSql, - - "1621933219_add_mentioned.up.sql": _1621933219_add_mentionedUpSql, - - "1622010048_add_unviewed_mentions_count.up.sql": _1622010048_add_unviewed_mentions_countUpSql, - - "1622061278_add_message_activity_center_notification_field.up.sql": _1622061278_add_message_activity_center_notification_fieldUpSql, - - "1622464518_set_synced_to_from.up.sql": _1622464518_set_synced_to_fromUpSql, - - "1622464519_add_chat_description.up.sql": _1622464519_add_chat_descriptionUpSql, - - "1622622253_add_pinned_by_to_pin_messages.up.sql": _1622622253_add_pinned_by_to_pin_messagesUpSql, - - "1623938329_add_author_activity_center_notification_field.up.sql": _1623938329_add_author_activity_center_notification_fieldUpSql, - - "1623938330_add_edit_messages.up.sql": _1623938330_add_edit_messagesUpSql, - - "1624978434_add_muted_community.up.sql": _1624978434_add_muted_communityUpSql, - - "1625018910_add_repply_message_activity_center_notification_field.up.sql": _1625018910_add_repply_message_activity_center_notification_fieldUpSql, - - "1625762506_add_deleted_messages.up.sql": _1625762506_add_deleted_messagesUpSql, - - "1627388946_add_communities_synced_at.up.sql": _1627388946_add_communities_synced_atUpSql, - - "1628280060_create-usermessages-index.sql": _1628280060_createUsermessagesIndexSql, - - "1632303896_modify_contacts_table.up.sql": _1632303896_modify_contacts_tableUpSql, - - "1633349838_add_emoji_column_in_chats.up.sql": _1633349838_add_emoji_column_in_chatsUpSql, - - "1634831235_add_highlight_column_in_chats.up.sql": _1634831235_add_highlight_column_in_chatsUpSql, - - "1634896007_add_last_updated_locally_and_removed.up.sql": _1634896007_add_last_updated_locally_and_removedUpSql, - - "1635840039_add_clock_read_at_column_in_chats.up.sql": _1635840039_add_clock_read_at_column_in_chatsUpSql, - - "1637852321_add_received_invitation_admin_column_in_chats.up.sql": _1637852321_add_received_invitation_admin_column_in_chatsUpSql, - - "1645034601_display_name.up.sql": _1645034601_display_nameUpSql, - - "1645034602_add_mutual_contact_request.up.sql": _1645034602_add_mutual_contact_requestUpSql, - - "1650373957_add_contact_request_state.up.sql": _1650373957_add_contact_request_stateUpSql, - - "1656958989_contact_verification.up.sql": _1656958989_contact_verificationUpSql, - - "1658236268_add_discord_message_authors_table.up.sql": _1658236268_add_discord_message_authors_tableUpSql, - - "1659619997_add_discord_messages_table.up.sql": _1659619997_add_discord_messages_tableUpSql, - - "1660226788_create_chat_identity_social_links.up.sql": _1660226788_create_chat_identity_social_linksUpSql, - - "1660226789_add_walletconnectsessions_table.up.sql": _1660226789_add_walletconnectsessions_tableUpSql, - - "1661242854_add_communities_requests_to_leave.up.sql": _1661242854_add_communities_requests_to_leaveUpSql, - - "1662044232_add_chat_image.up.sql": _1662044232_add_chat_imageUpSql, - - "1662106895_add_chat_first_message_timestamp.up.sql": _1662106895_add_chat_first_message_timestampUpSql, - - "1662723928_add_discord_author_image_fields.up.sql": _1662723928_add_discord_author_image_fieldsUpSql, - - "1664195977_add_deleted_for_mes.up.sql": _1664195977_add_deleted_for_mesUpSql, - - "1664367420_add_discord_attachments_table.up.sql": _1664367420_add_discord_attachments_tableUpSql, - - "1665079662_add_spectated_column_in_communities.up.sql": _1665079662_add_spectated_column_in_communitiesUpSql, - - "1665479047_add_community_id_in_notifications.up.sql": _1665479047_add_community_id_in_notificationsUpSql, - - "1665484435_add_encrypted_messages.up.sql": _1665484435_add_encrypted_messagesUpSql, - - "1665560200_add_contact_verification_individual.up.sql": _1665560200_add_contact_verification_individualUpSql, - - "1670921937_add_album_id.up.sql": _1670921937_add_album_idUpSql, - - "1673373000_add_replied.up.sql": _1673373000_add_repliedUpSql, - - "1673428910_add_image_width_height.up.sql": _1673428910_add_image_width_heightUpSql, - - "1674210659_add_contact_request_local_clock.up.sql": _1674210659_add_contact_request_local_clockUpSql, - - "1675212323_add_deleted_by.up.sql": _1675212323_add_deleted_byUpSql, - - "1675247084_add_activity_center_states.up.sql": _1675247084_add_activity_center_statesUpSql, - - "1675272329_fix_protocol_migration.up.sql": _1675272329_fix_protocol_migrationUpSql, - - "1676998418_fix_activity_center_migration.up.sql": _1676998418_fix_activity_center_migrationUpSql, - + "000001_init.down.db.sql": _000001_initDownDbSql, + "000001_init.up.db.sql": _000001_initUpDbSql, + "000002_add_last_ens_clock_value.up.sql": _000002_add_last_ens_clock_valueUpSql, + "1586358095_add_replace.up.sql": _1586358095_add_replaceUpSql, + "1588665364_add_image_data.up.sql": _1588665364_add_image_dataUpSql, + "1589365189_add_pow_target.up.sql": _1589365189_add_pow_targetUpSql, + "1591277220_add_index_messages.up.sql": _1591277220_add_index_messagesUpSql, + "1593087212_add_mute_chat_and_raw_message_fields.up.sql": _1593087212_add_mute_chat_and_raw_message_fieldsUpSql, + "1595862781_add_audio_data.up.sql": _1595862781_add_audio_dataUpSql, + "1595865249_create_emoji_reactions_table.up.sql": _1595865249_create_emoji_reactions_tableUpSql, + "1596805115_create_group_chat_invitations_table.up.sql": _1596805115_create_group_chat_invitations_tableUpSql, + "1597322655_add_invitation_admin_chat_field.up.sql": _1597322655_add_invitation_admin_chat_fieldUpSql, + "1597757544_add_nickname.up.sql": _1597757544_add_nicknameUpSql, + "1598955122_add_mentions.up.sql": _1598955122_add_mentionsUpSql, + "1599641390_add_emoji_reactions_index.up.sql": _1599641390_add_emoji_reactions_indexUpSql, + "1599720851_add_seen_index_remove_long_messages.up.sql": _1599720851_add_seen_index_remove_long_messagesUpSql, + "1603198582_add_profile_chat_field.up.sql": _1603198582_add_profile_chat_fieldUpSql, + "1603816533_add_links.up.sql": _1603816533_add_linksUpSql, + "1603888149_create_chat_identity_last_published_table.up.sql": _1603888149_create_chat_identity_last_published_tableUpSql, + "1605075346_add_communities.up.sql": _1605075346_add_communitiesUpSql, + "1610117927_add_message_cache.up.sql": _1610117927_add_message_cacheUpSql, + "1610959908_add_dont_wrap_to_raw_messages.up.sql": _1610959908_add_dont_wrap_to_raw_messagesUpSql, + "1610960912_add_send_on_personal_topic.up.sql": _1610960912_add_send_on_personal_topicUpSql, + "1612870480_add_datasync_id.up.sql": _1612870480_add_datasync_idUpSql, + "1614152139_add_communities_request_to_join.up.sql": _1614152139_add_communities_request_to_joinUpSql, + "1615374373_add_confirmations.up.sql": _1615374373_add_confirmationsUpSql, + "1617694931_add_notification_center.up.sql": _1617694931_add_notification_centerUpSql, + "1618923660_create_pin_messages.up.sql": _1618923660_create_pin_messagesUpSql, + "1619094007_add_joined_chat_field.up.sql": _1619094007_add_joined_chat_fieldUpSql, + "1619099821_add_last_synced_field.up.sql": _1619099821_add_last_synced_fieldUpSql, + "1621933219_add_mentioned.up.sql": _1621933219_add_mentionedUpSql, + "1622010048_add_unviewed_mentions_count.up.sql": _1622010048_add_unviewed_mentions_countUpSql, + "1622061278_add_message_activity_center_notification_field.up.sql": _1622061278_add_message_activity_center_notification_fieldUpSql, + "1622464518_set_synced_to_from.up.sql": _1622464518_set_synced_to_fromUpSql, + "1622464519_add_chat_description.up.sql": _1622464519_add_chat_descriptionUpSql, + "1622622253_add_pinned_by_to_pin_messages.up.sql": _1622622253_add_pinned_by_to_pin_messagesUpSql, + "1623938329_add_author_activity_center_notification_field.up.sql": _1623938329_add_author_activity_center_notification_fieldUpSql, + "1623938330_add_edit_messages.up.sql": _1623938330_add_edit_messagesUpSql, + "1624978434_add_muted_community.up.sql": _1624978434_add_muted_communityUpSql, + "1625018910_add_repply_message_activity_center_notification_field.up.sql": _1625018910_add_repply_message_activity_center_notification_fieldUpSql, + "1625762506_add_deleted_messages.up.sql": _1625762506_add_deleted_messagesUpSql, + "1627388946_add_communities_synced_at.up.sql": _1627388946_add_communities_synced_atUpSql, + "1628280060_create-usermessages-index.sql": _1628280060_createUsermessagesIndexSql, + "1632303896_modify_contacts_table.up.sql": _1632303896_modify_contacts_tableUpSql, + "1633349838_add_emoji_column_in_chats.up.sql": _1633349838_add_emoji_column_in_chatsUpSql, + "1634831235_add_highlight_column_in_chats.up.sql": _1634831235_add_highlight_column_in_chatsUpSql, + "1634896007_add_last_updated_locally_and_removed.up.sql": _1634896007_add_last_updated_locally_and_removedUpSql, + "1635840039_add_clock_read_at_column_in_chats.up.sql": _1635840039_add_clock_read_at_column_in_chatsUpSql, + "1637852321_add_received_invitation_admin_column_in_chats.up.sql": _1637852321_add_received_invitation_admin_column_in_chatsUpSql, + "1645034601_display_name.up.sql": _1645034601_display_nameUpSql, + "1645034602_add_mutual_contact_request.up.sql": _1645034602_add_mutual_contact_requestUpSql, + "1650373957_add_contact_request_state.up.sql": _1650373957_add_contact_request_stateUpSql, + "1656958989_contact_verification.up.sql": _1656958989_contact_verificationUpSql, + "1658236268_add_discord_message_authors_table.up.sql": _1658236268_add_discord_message_authors_tableUpSql, + "1659619997_add_discord_messages_table.up.sql": _1659619997_add_discord_messages_tableUpSql, + "1660226788_create_chat_identity_social_links.up.sql": _1660226788_create_chat_identity_social_linksUpSql, + "1660226789_add_walletconnectsessions_table.up.sql": _1660226789_add_walletconnectsessions_tableUpSql, + "1661242854_add_communities_requests_to_leave.up.sql": _1661242854_add_communities_requests_to_leaveUpSql, + "1662044232_add_chat_image.up.sql": _1662044232_add_chat_imageUpSql, + "1662106895_add_chat_first_message_timestamp.up.sql": _1662106895_add_chat_first_message_timestampUpSql, + "1662723928_add_discord_author_image_fields.up.sql": _1662723928_add_discord_author_image_fieldsUpSql, + "1664195977_add_deleted_for_mes.up.sql": _1664195977_add_deleted_for_mesUpSql, + "1664367420_add_discord_attachments_table.up.sql": _1664367420_add_discord_attachments_tableUpSql, + "1665079662_add_spectated_column_in_communities.up.sql": _1665079662_add_spectated_column_in_communitiesUpSql, + "1665479047_add_community_id_in_notifications.up.sql": _1665479047_add_community_id_in_notificationsUpSql, + "1665484435_add_encrypted_messages.up.sql": _1665484435_add_encrypted_messagesUpSql, + "1665560200_add_contact_verification_individual.up.sql": _1665560200_add_contact_verification_individualUpSql, + "1670921937_add_album_id.up.sql": _1670921937_add_album_idUpSql, + "1673373000_add_replied.up.sql": _1673373000_add_repliedUpSql, + "1673428910_add_image_width_height.up.sql": _1673428910_add_image_width_heightUpSql, + "1674210659_add_contact_request_local_clock.up.sql": _1674210659_add_contact_request_local_clockUpSql, + "1675212323_add_deleted_by.up.sql": _1675212323_add_deleted_byUpSql, + "1675247084_add_activity_center_states.up.sql": _1675247084_add_activity_center_statesUpSql, + "1675272329_fix_protocol_migration.up.sql": _1675272329_fix_protocol_migrationUpSql, + "1676998418_fix_activity_center_migration.up.sql": _1676998418_fix_activity_center_migrationUpSql, "1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql": _1677278861_add_deleted_column_to_activity_center_notifications_tableUpSql, - - "1677486338_add_community_tokens_table.up.sql": _1677486338_add_community_tokens_tableUpSql, - - "1678292329_add_collapsed_categories.up.sql": _1678292329_add_collapsed_categoriesUpSql, - - "1678800760_add_index_to_raw_messages.up.sql": _1678800760_add_index_to_raw_messagesUpSql, - + "1677486338_add_community_tokens_table.up.sql": _1677486338_add_community_tokens_tableUpSql, + "1678292329_add_collapsed_categories.up.sql": _1678292329_add_collapsed_categoriesUpSql, + "1678800760_add_index_to_raw_messages.up.sql": _1678800760_add_index_to_raw_messagesUpSql, "1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql": _1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSql, - - "1679326850_add_community_token_owners.up.sql": _1679326850_add_community_token_ownersUpSql, - - "1680011500_add_album_images_count.up.sql": _1680011500_add_album_images_countUpSql, - - "1680114896_add_index_on_album_id.up.sql": _1680114896_add_index_on_album_idUpSql, - - "1681655289_add_mute_till.up.sql": _1681655289_add_mute_tillUpSql, - - "1681934966_add_index_response_to.up.sql": _1681934966_add_index_response_toUpSql, - - "1682528339_add_index_user_messages_unseen.up.sql": _1682528339_add_index_user_messages_unseenUpSql, - - "1683707289_recreate_deleted_for_mes.up.sql": _1683707289_recreate_deleted_for_mesUpSql, - - "1683725607_mark_discord_messages_as_seen.up.sql": _1683725607_mark_discord_messages_as_seenUpSql, - - "1684174617_add_url_previews_to_user_messages.up.sql": _1684174617_add_url_previews_to_user_messagesUpSql, - - "1684175608_add_token_balances.up.sql": _1684175608_add_token_balancesUpSql, - - "1684979808_sync_activity_center_notifications.up.sql": _1684979808_sync_activity_center_notificationsUpSql, - - "1685383829_add_communities_mute_till.up.sql": _1685383829_add_communities_mute_tillUpSql, - - "1685964183_add_chainids_to_revealed_addresses.up.sql": _1685964183_add_chainids_to_revealed_addressesUpSql, - - "1687370421_add_communities_muted_till_new.up.sql": _1687370421_add_communities_muted_till_newUpSql, - - "1687416607_add_communities_check_channel_permission_responses_table.up.sql": _1687416607_add_communities_check_channel_permission_responses_tableUpSql, - - "1687856939_add_community_tokens_decimals.up.sql": _1687856939_add_community_tokens_decimalsUpSql, - - "1687959987_modify_community_tokens_supply_as_string.up.sql": _1687959987_modify_community_tokens_supply_as_stringUpSql, - - "1689258900_add_airdrop_address_to_revealed_addresses.up.sql": _1689258900_add_airdrop_address_to_revealed_addressesUpSql, - - "1689266326_create_communities_events_table.up.sql": _1689266326_create_communities_events_tableUpSql, - - "1689931300_add_community_tokens_deployer_and_priv_level.up.sql": _1689931300_add_community_tokens_deployer_and_priv_levelUpSql, - - "1693311881_add_unfurled_links_to_message_edits.up.sql": _1693311881_add_unfurled_links_to_message_editsUpSql, - - "1693311981_community_shard.up.sql": _1693311981_community_shardUpSql, - - "1695331492_add_status_link_previews.up.sql": _1695331492_add_status_link_previewsUpSql, - - "1695918296_add_validated_at.up.sql": _1695918296_add_validated_atUpSql, - - "1697699419_community_control_node_sync.up.sql": _1697699419_community_control_node_syncUpSql, - - "1698137561_add_profile_showcase_tables.up.sql": _1698137561_add_profile_showcase_tablesUpSql, - - "1698137562_fix_encryption_key_id.up.sql": _1698137562_fix_encryption_key_idUpSql, - - "1698414646_add_padding.up.sql": _1698414646_add_paddingUpSql, - - "1698746210_add_signature_to_revealed_addresses.up.sql": _1698746210_add_signature_to_revealed_addressesUpSql, - - "1699041816_profile_showcase_contacts.up.sql": _1699041816_profile_showcase_contactsUpSql, - - "1699554099_message_segments.up.sql": _1699554099_message_segmentsUpSql, - - "1700044186_message_segments_timestamp.up.sql": _1700044186_message_segments_timestampUpSql, - - "1700044187_curated_communities.up.sql": _1700044187_curated_communitiesUpSql, - - "1700820989_add_resend_automatically_index.up.sql": _1700820989_add_resend_automatically_indexUpSql, - - "1702996953_add_communities_shards_table.up.sql": _1702996953_add_communities_shards_tableUpSql, - - "1704489636_add_album_images.up.sql": _1704489636_add_album_imagesUpSql, - - "1704821941_add_joined_at_for_community.up.sql": _1704821941_add_joined_at_for_communityUpSql, - - "1704832511_add_last_opened_at_for_communities.up.sql": _1704832511_add_last_opened_at_for_communitiesUpSql, - - "1704832512_add_peersyncing.up.sql": _1704832512_add_peersyncingUpSql, - - "1706028033_profile_showcase_address_and_community.up.sql": _1706028033_profile_showcase_address_and_communityUpSql, - - "1706520870_add_bridge_messages_table.up.sql": _1706520870_add_bridge_messages_tableUpSql, - - "1707749393_add_community_grants.up.sql": _1707749393_add_community_grantsUpSql, - - "1707841194_add_profile_showcase_preferences.up.sql": _1707841194_add_profile_showcase_preferencesUpSql, - - "1708062699_activity_data.up.sql": _1708062699_activity_dataUpSql, - + "1679326850_add_community_token_owners.up.sql": _1679326850_add_community_token_ownersUpSql, + "1680011500_add_album_images_count.up.sql": _1680011500_add_album_images_countUpSql, + "1680114896_add_index_on_album_id.up.sql": _1680114896_add_index_on_album_idUpSql, + "1681655289_add_mute_till.up.sql": _1681655289_add_mute_tillUpSql, + "1681934966_add_index_response_to.up.sql": _1681934966_add_index_response_toUpSql, + "1682528339_add_index_user_messages_unseen.up.sql": _1682528339_add_index_user_messages_unseenUpSql, + "1683707289_recreate_deleted_for_mes.up.sql": _1683707289_recreate_deleted_for_mesUpSql, + "1683725607_mark_discord_messages_as_seen.up.sql": _1683725607_mark_discord_messages_as_seenUpSql, + "1684174617_add_url_previews_to_user_messages.up.sql": _1684174617_add_url_previews_to_user_messagesUpSql, + "1684175608_add_token_balances.up.sql": _1684175608_add_token_balancesUpSql, + "1684979808_sync_activity_center_notifications.up.sql": _1684979808_sync_activity_center_notificationsUpSql, + "1685383829_add_communities_mute_till.up.sql": _1685383829_add_communities_mute_tillUpSql, + "1685964183_add_chainids_to_revealed_addresses.up.sql": _1685964183_add_chainids_to_revealed_addressesUpSql, + "1687370421_add_communities_muted_till_new.up.sql": _1687370421_add_communities_muted_till_newUpSql, + "1687416607_add_communities_check_channel_permission_responses_table.up.sql": _1687416607_add_communities_check_channel_permission_responses_tableUpSql, + "1687856939_add_community_tokens_decimals.up.sql": _1687856939_add_community_tokens_decimalsUpSql, + "1687959987_modify_community_tokens_supply_as_string.up.sql": _1687959987_modify_community_tokens_supply_as_stringUpSql, + "1689258900_add_airdrop_address_to_revealed_addresses.up.sql": _1689258900_add_airdrop_address_to_revealed_addressesUpSql, + "1689266326_create_communities_events_table.up.sql": _1689266326_create_communities_events_tableUpSql, + "1689931300_add_community_tokens_deployer_and_priv_level.up.sql": _1689931300_add_community_tokens_deployer_and_priv_levelUpSql, + "1693311881_add_unfurled_links_to_message_edits.up.sql": _1693311881_add_unfurled_links_to_message_editsUpSql, + "1693311981_community_shard.up.sql": _1693311981_community_shardUpSql, + "1695331492_add_status_link_previews.up.sql": _1695331492_add_status_link_previewsUpSql, + "1695918296_add_validated_at.up.sql": _1695918296_add_validated_atUpSql, + "1697699419_community_control_node_sync.up.sql": _1697699419_community_control_node_syncUpSql, + "1698137561_add_profile_showcase_tables.up.sql": _1698137561_add_profile_showcase_tablesUpSql, + "1698137562_fix_encryption_key_id.up.sql": _1698137562_fix_encryption_key_idUpSql, + "1698414646_add_padding.up.sql": _1698414646_add_paddingUpSql, + "1698746210_add_signature_to_revealed_addresses.up.sql": _1698746210_add_signature_to_revealed_addressesUpSql, + "1699041816_profile_showcase_contacts.up.sql": _1699041816_profile_showcase_contactsUpSql, + "1699554099_message_segments.up.sql": _1699554099_message_segmentsUpSql, + "1700044186_message_segments_timestamp.up.sql": _1700044186_message_segments_timestampUpSql, + "1700044187_curated_communities.up.sql": _1700044187_curated_communitiesUpSql, + "1700820989_add_resend_automatically_index.up.sql": _1700820989_add_resend_automatically_indexUpSql, + "1702996953_add_communities_shards_table.up.sql": _1702996953_add_communities_shards_tableUpSql, + "1704489636_add_album_images.up.sql": _1704489636_add_album_imagesUpSql, + "1704821941_add_joined_at_for_community.up.sql": _1704821941_add_joined_at_for_communityUpSql, + "1704832511_add_last_opened_at_for_communities.up.sql": _1704832511_add_last_opened_at_for_communitiesUpSql, + "1704832512_add_peersyncing.up.sql": _1704832512_add_peersyncingUpSql, + "1706028033_profile_showcase_address_and_community.up.sql": _1706028033_profile_showcase_address_and_communityUpSql, + "1706520870_add_bridge_messages_table.up.sql": _1706520870_add_bridge_messages_tableUpSql, + "1707749393_add_community_grants.up.sql": _1707749393_add_community_grantsUpSql, + "1707841194_add_profile_showcase_preferences.up.sql": _1707841194_add_profile_showcase_preferencesUpSql, + "1708062699_activity_data.up.sql": _1708062699_activity_dataUpSql, + "1708423707_applied_community_events.up.sql": _1708423707_applied_community_eventsUpSql, "README.md": readmeMd, - - "doc.go": docGo, + "doc.go": docGo, } +// AssetDebug is true if the assets were built with the debug flag enabled. +const AssetDebug = false + // AssetDir returns the file names below a certain // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png +// +// data/ +// foo.txt +// img/ +// a.png +// b.png +// // then AssetDir("data") would return []string{"foo.txt", "img"}, // AssetDir("data/img") would return []string{"a.png", "b.png"}, // AssetDir("foo.txt") and AssetDir("notexist") would return an error, and @@ -3099,132 +3000,133 @@ type bintree struct { } var _bintree = &bintree{nil, map[string]*bintree{ - "000001_init.down.db.sql": &bintree{_000001_initDownDbSql, map[string]*bintree{}}, - "000001_init.up.db.sql": &bintree{_000001_initUpDbSql, map[string]*bintree{}}, - "000002_add_last_ens_clock_value.up.sql": &bintree{_000002_add_last_ens_clock_valueUpSql, map[string]*bintree{}}, - "1586358095_add_replace.up.sql": &bintree{_1586358095_add_replaceUpSql, map[string]*bintree{}}, - "1588665364_add_image_data.up.sql": &bintree{_1588665364_add_image_dataUpSql, map[string]*bintree{}}, - "1589365189_add_pow_target.up.sql": &bintree{_1589365189_add_pow_targetUpSql, map[string]*bintree{}}, - "1591277220_add_index_messages.up.sql": &bintree{_1591277220_add_index_messagesUpSql, map[string]*bintree{}}, - "1593087212_add_mute_chat_and_raw_message_fields.up.sql": &bintree{_1593087212_add_mute_chat_and_raw_message_fieldsUpSql, map[string]*bintree{}}, - "1595862781_add_audio_data.up.sql": &bintree{_1595862781_add_audio_dataUpSql, map[string]*bintree{}}, - "1595865249_create_emoji_reactions_table.up.sql": &bintree{_1595865249_create_emoji_reactions_tableUpSql, map[string]*bintree{}}, - "1596805115_create_group_chat_invitations_table.up.sql": &bintree{_1596805115_create_group_chat_invitations_tableUpSql, map[string]*bintree{}}, - "1597322655_add_invitation_admin_chat_field.up.sql": &bintree{_1597322655_add_invitation_admin_chat_fieldUpSql, map[string]*bintree{}}, - "1597757544_add_nickname.up.sql": &bintree{_1597757544_add_nicknameUpSql, map[string]*bintree{}}, - "1598955122_add_mentions.up.sql": &bintree{_1598955122_add_mentionsUpSql, map[string]*bintree{}}, - "1599641390_add_emoji_reactions_index.up.sql": &bintree{_1599641390_add_emoji_reactions_indexUpSql, map[string]*bintree{}}, - "1599720851_add_seen_index_remove_long_messages.up.sql": &bintree{_1599720851_add_seen_index_remove_long_messagesUpSql, map[string]*bintree{}}, - "1603198582_add_profile_chat_field.up.sql": &bintree{_1603198582_add_profile_chat_fieldUpSql, map[string]*bintree{}}, - "1603816533_add_links.up.sql": &bintree{_1603816533_add_linksUpSql, map[string]*bintree{}}, - "1603888149_create_chat_identity_last_published_table.up.sql": &bintree{_1603888149_create_chat_identity_last_published_tableUpSql, map[string]*bintree{}}, - "1605075346_add_communities.up.sql": &bintree{_1605075346_add_communitiesUpSql, map[string]*bintree{}}, - "1610117927_add_message_cache.up.sql": &bintree{_1610117927_add_message_cacheUpSql, map[string]*bintree{}}, - "1610959908_add_dont_wrap_to_raw_messages.up.sql": &bintree{_1610959908_add_dont_wrap_to_raw_messagesUpSql, map[string]*bintree{}}, - "1610960912_add_send_on_personal_topic.up.sql": &bintree{_1610960912_add_send_on_personal_topicUpSql, map[string]*bintree{}}, - "1612870480_add_datasync_id.up.sql": &bintree{_1612870480_add_datasync_idUpSql, map[string]*bintree{}}, - "1614152139_add_communities_request_to_join.up.sql": &bintree{_1614152139_add_communities_request_to_joinUpSql, map[string]*bintree{}}, - "1615374373_add_confirmations.up.sql": &bintree{_1615374373_add_confirmationsUpSql, map[string]*bintree{}}, - "1617694931_add_notification_center.up.sql": &bintree{_1617694931_add_notification_centerUpSql, map[string]*bintree{}}, - "1618923660_create_pin_messages.up.sql": &bintree{_1618923660_create_pin_messagesUpSql, map[string]*bintree{}}, - "1619094007_add_joined_chat_field.up.sql": &bintree{_1619094007_add_joined_chat_fieldUpSql, map[string]*bintree{}}, - "1619099821_add_last_synced_field.up.sql": &bintree{_1619099821_add_last_synced_fieldUpSql, map[string]*bintree{}}, - "1621933219_add_mentioned.up.sql": &bintree{_1621933219_add_mentionedUpSql, map[string]*bintree{}}, - "1622010048_add_unviewed_mentions_count.up.sql": &bintree{_1622010048_add_unviewed_mentions_countUpSql, map[string]*bintree{}}, - "1622061278_add_message_activity_center_notification_field.up.sql": &bintree{_1622061278_add_message_activity_center_notification_fieldUpSql, map[string]*bintree{}}, - "1622464518_set_synced_to_from.up.sql": &bintree{_1622464518_set_synced_to_fromUpSql, map[string]*bintree{}}, - "1622464519_add_chat_description.up.sql": &bintree{_1622464519_add_chat_descriptionUpSql, map[string]*bintree{}}, - "1622622253_add_pinned_by_to_pin_messages.up.sql": &bintree{_1622622253_add_pinned_by_to_pin_messagesUpSql, map[string]*bintree{}}, - "1623938329_add_author_activity_center_notification_field.up.sql": &bintree{_1623938329_add_author_activity_center_notification_fieldUpSql, map[string]*bintree{}}, - "1623938330_add_edit_messages.up.sql": &bintree{_1623938330_add_edit_messagesUpSql, map[string]*bintree{}}, - "1624978434_add_muted_community.up.sql": &bintree{_1624978434_add_muted_communityUpSql, map[string]*bintree{}}, - "1625018910_add_repply_message_activity_center_notification_field.up.sql": &bintree{_1625018910_add_repply_message_activity_center_notification_fieldUpSql, map[string]*bintree{}}, - "1625762506_add_deleted_messages.up.sql": &bintree{_1625762506_add_deleted_messagesUpSql, map[string]*bintree{}}, - "1627388946_add_communities_synced_at.up.sql": &bintree{_1627388946_add_communities_synced_atUpSql, map[string]*bintree{}}, - "1628280060_create-usermessages-index.sql": &bintree{_1628280060_createUsermessagesIndexSql, map[string]*bintree{}}, - "1632303896_modify_contacts_table.up.sql": &bintree{_1632303896_modify_contacts_tableUpSql, map[string]*bintree{}}, - "1633349838_add_emoji_column_in_chats.up.sql": &bintree{_1633349838_add_emoji_column_in_chatsUpSql, map[string]*bintree{}}, - "1634831235_add_highlight_column_in_chats.up.sql": &bintree{_1634831235_add_highlight_column_in_chatsUpSql, map[string]*bintree{}}, - "1634896007_add_last_updated_locally_and_removed.up.sql": &bintree{_1634896007_add_last_updated_locally_and_removedUpSql, map[string]*bintree{}}, - "1635840039_add_clock_read_at_column_in_chats.up.sql": &bintree{_1635840039_add_clock_read_at_column_in_chatsUpSql, map[string]*bintree{}}, - "1637852321_add_received_invitation_admin_column_in_chats.up.sql": &bintree{_1637852321_add_received_invitation_admin_column_in_chatsUpSql, map[string]*bintree{}}, - "1645034601_display_name.up.sql": &bintree{_1645034601_display_nameUpSql, map[string]*bintree{}}, - "1645034602_add_mutual_contact_request.up.sql": &bintree{_1645034602_add_mutual_contact_requestUpSql, map[string]*bintree{}}, - "1650373957_add_contact_request_state.up.sql": &bintree{_1650373957_add_contact_request_stateUpSql, map[string]*bintree{}}, - "1656958989_contact_verification.up.sql": &bintree{_1656958989_contact_verificationUpSql, map[string]*bintree{}}, - "1658236268_add_discord_message_authors_table.up.sql": &bintree{_1658236268_add_discord_message_authors_tableUpSql, map[string]*bintree{}}, - "1659619997_add_discord_messages_table.up.sql": &bintree{_1659619997_add_discord_messages_tableUpSql, map[string]*bintree{}}, - "1660226788_create_chat_identity_social_links.up.sql": &bintree{_1660226788_create_chat_identity_social_linksUpSql, map[string]*bintree{}}, - "1660226789_add_walletconnectsessions_table.up.sql": &bintree{_1660226789_add_walletconnectsessions_tableUpSql, map[string]*bintree{}}, - "1661242854_add_communities_requests_to_leave.up.sql": &bintree{_1661242854_add_communities_requests_to_leaveUpSql, map[string]*bintree{}}, - "1662044232_add_chat_image.up.sql": &bintree{_1662044232_add_chat_imageUpSql, map[string]*bintree{}}, - "1662106895_add_chat_first_message_timestamp.up.sql": &bintree{_1662106895_add_chat_first_message_timestampUpSql, map[string]*bintree{}}, - "1662723928_add_discord_author_image_fields.up.sql": &bintree{_1662723928_add_discord_author_image_fieldsUpSql, map[string]*bintree{}}, - "1664195977_add_deleted_for_mes.up.sql": &bintree{_1664195977_add_deleted_for_mesUpSql, map[string]*bintree{}}, - "1664367420_add_discord_attachments_table.up.sql": &bintree{_1664367420_add_discord_attachments_tableUpSql, map[string]*bintree{}}, - "1665079662_add_spectated_column_in_communities.up.sql": &bintree{_1665079662_add_spectated_column_in_communitiesUpSql, map[string]*bintree{}}, - "1665479047_add_community_id_in_notifications.up.sql": &bintree{_1665479047_add_community_id_in_notificationsUpSql, map[string]*bintree{}}, - "1665484435_add_encrypted_messages.up.sql": &bintree{_1665484435_add_encrypted_messagesUpSql, map[string]*bintree{}}, - "1665560200_add_contact_verification_individual.up.sql": &bintree{_1665560200_add_contact_verification_individualUpSql, map[string]*bintree{}}, - "1670921937_add_album_id.up.sql": &bintree{_1670921937_add_album_idUpSql, map[string]*bintree{}}, - "1673373000_add_replied.up.sql": &bintree{_1673373000_add_repliedUpSql, map[string]*bintree{}}, - "1673428910_add_image_width_height.up.sql": &bintree{_1673428910_add_image_width_heightUpSql, map[string]*bintree{}}, - "1674210659_add_contact_request_local_clock.up.sql": &bintree{_1674210659_add_contact_request_local_clockUpSql, map[string]*bintree{}}, - "1675212323_add_deleted_by.up.sql": &bintree{_1675212323_add_deleted_byUpSql, map[string]*bintree{}}, - "1675247084_add_activity_center_states.up.sql": &bintree{_1675247084_add_activity_center_statesUpSql, map[string]*bintree{}}, - "1675272329_fix_protocol_migration.up.sql": &bintree{_1675272329_fix_protocol_migrationUpSql, map[string]*bintree{}}, - "1676998418_fix_activity_center_migration.up.sql": &bintree{_1676998418_fix_activity_center_migrationUpSql, map[string]*bintree{}}, - "1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql": &bintree{_1677278861_add_deleted_column_to_activity_center_notifications_tableUpSql, map[string]*bintree{}}, - "1677486338_add_community_tokens_table.up.sql": &bintree{_1677486338_add_community_tokens_tableUpSql, map[string]*bintree{}}, - "1678292329_add_collapsed_categories.up.sql": &bintree{_1678292329_add_collapsed_categoriesUpSql, map[string]*bintree{}}, - "1678800760_add_index_to_raw_messages.up.sql": &bintree{_1678800760_add_index_to_raw_messagesUpSql, map[string]*bintree{}}, - "1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql": &bintree{_1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSql, map[string]*bintree{}}, - "1679326850_add_community_token_owners.up.sql": &bintree{_1679326850_add_community_token_ownersUpSql, map[string]*bintree{}}, - "1680011500_add_album_images_count.up.sql": &bintree{_1680011500_add_album_images_countUpSql, map[string]*bintree{}}, - "1680114896_add_index_on_album_id.up.sql": &bintree{_1680114896_add_index_on_album_idUpSql, map[string]*bintree{}}, - "1681655289_add_mute_till.up.sql": &bintree{_1681655289_add_mute_tillUpSql, map[string]*bintree{}}, - "1681934966_add_index_response_to.up.sql": &bintree{_1681934966_add_index_response_toUpSql, map[string]*bintree{}}, - "1682528339_add_index_user_messages_unseen.up.sql": &bintree{_1682528339_add_index_user_messages_unseenUpSql, map[string]*bintree{}}, - "1683707289_recreate_deleted_for_mes.up.sql": &bintree{_1683707289_recreate_deleted_for_mesUpSql, map[string]*bintree{}}, - "1683725607_mark_discord_messages_as_seen.up.sql": &bintree{_1683725607_mark_discord_messages_as_seenUpSql, map[string]*bintree{}}, - "1684174617_add_url_previews_to_user_messages.up.sql": &bintree{_1684174617_add_url_previews_to_user_messagesUpSql, map[string]*bintree{}}, - "1684175608_add_token_balances.up.sql": &bintree{_1684175608_add_token_balancesUpSql, map[string]*bintree{}}, - "1684979808_sync_activity_center_notifications.up.sql": &bintree{_1684979808_sync_activity_center_notificationsUpSql, map[string]*bintree{}}, - "1685383829_add_communities_mute_till.up.sql": &bintree{_1685383829_add_communities_mute_tillUpSql, map[string]*bintree{}}, - "1685964183_add_chainids_to_revealed_addresses.up.sql": &bintree{_1685964183_add_chainids_to_revealed_addressesUpSql, map[string]*bintree{}}, - "1687370421_add_communities_muted_till_new.up.sql": &bintree{_1687370421_add_communities_muted_till_newUpSql, map[string]*bintree{}}, - "1687416607_add_communities_check_channel_permission_responses_table.up.sql": &bintree{_1687416607_add_communities_check_channel_permission_responses_tableUpSql, map[string]*bintree{}}, - "1687856939_add_community_tokens_decimals.up.sql": &bintree{_1687856939_add_community_tokens_decimalsUpSql, map[string]*bintree{}}, - "1687959987_modify_community_tokens_supply_as_string.up.sql": &bintree{_1687959987_modify_community_tokens_supply_as_stringUpSql, map[string]*bintree{}}, - "1689258900_add_airdrop_address_to_revealed_addresses.up.sql": &bintree{_1689258900_add_airdrop_address_to_revealed_addressesUpSql, map[string]*bintree{}}, - "1689266326_create_communities_events_table.up.sql": &bintree{_1689266326_create_communities_events_tableUpSql, map[string]*bintree{}}, - "1689931300_add_community_tokens_deployer_and_priv_level.up.sql": &bintree{_1689931300_add_community_tokens_deployer_and_priv_levelUpSql, map[string]*bintree{}}, - "1693311881_add_unfurled_links_to_message_edits.up.sql": &bintree{_1693311881_add_unfurled_links_to_message_editsUpSql, map[string]*bintree{}}, - "1693311981_community_shard.up.sql": &bintree{_1693311981_community_shardUpSql, map[string]*bintree{}}, - "1695331492_add_status_link_previews.up.sql": &bintree{_1695331492_add_status_link_previewsUpSql, map[string]*bintree{}}, - "1695918296_add_validated_at.up.sql": &bintree{_1695918296_add_validated_atUpSql, map[string]*bintree{}}, - "1697699419_community_control_node_sync.up.sql": &bintree{_1697699419_community_control_node_syncUpSql, map[string]*bintree{}}, - "1698137561_add_profile_showcase_tables.up.sql": &bintree{_1698137561_add_profile_showcase_tablesUpSql, map[string]*bintree{}}, - "1698137562_fix_encryption_key_id.up.sql": &bintree{_1698137562_fix_encryption_key_idUpSql, map[string]*bintree{}}, - "1698414646_add_padding.up.sql": &bintree{_1698414646_add_paddingUpSql, map[string]*bintree{}}, - "1698746210_add_signature_to_revealed_addresses.up.sql": &bintree{_1698746210_add_signature_to_revealed_addressesUpSql, map[string]*bintree{}}, - "1699041816_profile_showcase_contacts.up.sql": &bintree{_1699041816_profile_showcase_contactsUpSql, map[string]*bintree{}}, - "1699554099_message_segments.up.sql": &bintree{_1699554099_message_segmentsUpSql, map[string]*bintree{}}, - "1700044186_message_segments_timestamp.up.sql": &bintree{_1700044186_message_segments_timestampUpSql, map[string]*bintree{}}, - "1700044187_curated_communities.up.sql": &bintree{_1700044187_curated_communitiesUpSql, map[string]*bintree{}}, - "1700820989_add_resend_automatically_index.up.sql": &bintree{_1700820989_add_resend_automatically_indexUpSql, map[string]*bintree{}}, - "1702996953_add_communities_shards_table.up.sql": &bintree{_1702996953_add_communities_shards_tableUpSql, map[string]*bintree{}}, - "1704489636_add_album_images.up.sql": &bintree{_1704489636_add_album_imagesUpSql, map[string]*bintree{}}, - "1704821941_add_joined_at_for_community.up.sql": &bintree{_1704821941_add_joined_at_for_communityUpSql, map[string]*bintree{}}, - "1704832511_add_last_opened_at_for_communities.up.sql": &bintree{_1704832511_add_last_opened_at_for_communitiesUpSql, map[string]*bintree{}}, - "1704832512_add_peersyncing.up.sql": &bintree{_1704832512_add_peersyncingUpSql, map[string]*bintree{}}, - "1706028033_profile_showcase_address_and_community.up.sql": &bintree{_1706028033_profile_showcase_address_and_communityUpSql, map[string]*bintree{}}, - "1706520870_add_bridge_messages_table.up.sql": &bintree{_1706520870_add_bridge_messages_tableUpSql, map[string]*bintree{}}, - "1707749393_add_community_grants.up.sql": &bintree{_1707749393_add_community_grantsUpSql, map[string]*bintree{}}, - "1707841194_add_profile_showcase_preferences.up.sql": &bintree{_1707841194_add_profile_showcase_preferencesUpSql, map[string]*bintree{}}, - "1708062699_activity_data.up.sql": &bintree{_1708062699_activity_dataUpSql, map[string]*bintree{}}, - "README.md": &bintree{readmeMd, map[string]*bintree{}}, - "doc.go": &bintree{docGo, map[string]*bintree{}}, + "000001_init.down.db.sql": {_000001_initDownDbSql, map[string]*bintree{}}, + "000001_init.up.db.sql": {_000001_initUpDbSql, map[string]*bintree{}}, + "000002_add_last_ens_clock_value.up.sql": {_000002_add_last_ens_clock_valueUpSql, map[string]*bintree{}}, + "1586358095_add_replace.up.sql": {_1586358095_add_replaceUpSql, map[string]*bintree{}}, + "1588665364_add_image_data.up.sql": {_1588665364_add_image_dataUpSql, map[string]*bintree{}}, + "1589365189_add_pow_target.up.sql": {_1589365189_add_pow_targetUpSql, map[string]*bintree{}}, + "1591277220_add_index_messages.up.sql": {_1591277220_add_index_messagesUpSql, map[string]*bintree{}}, + "1593087212_add_mute_chat_and_raw_message_fields.up.sql": {_1593087212_add_mute_chat_and_raw_message_fieldsUpSql, map[string]*bintree{}}, + "1595862781_add_audio_data.up.sql": {_1595862781_add_audio_dataUpSql, map[string]*bintree{}}, + "1595865249_create_emoji_reactions_table.up.sql": {_1595865249_create_emoji_reactions_tableUpSql, map[string]*bintree{}}, + "1596805115_create_group_chat_invitations_table.up.sql": {_1596805115_create_group_chat_invitations_tableUpSql, map[string]*bintree{}}, + "1597322655_add_invitation_admin_chat_field.up.sql": {_1597322655_add_invitation_admin_chat_fieldUpSql, map[string]*bintree{}}, + "1597757544_add_nickname.up.sql": {_1597757544_add_nicknameUpSql, map[string]*bintree{}}, + "1598955122_add_mentions.up.sql": {_1598955122_add_mentionsUpSql, map[string]*bintree{}}, + "1599641390_add_emoji_reactions_index.up.sql": {_1599641390_add_emoji_reactions_indexUpSql, map[string]*bintree{}}, + "1599720851_add_seen_index_remove_long_messages.up.sql": {_1599720851_add_seen_index_remove_long_messagesUpSql, map[string]*bintree{}}, + "1603198582_add_profile_chat_field.up.sql": {_1603198582_add_profile_chat_fieldUpSql, map[string]*bintree{}}, + "1603816533_add_links.up.sql": {_1603816533_add_linksUpSql, map[string]*bintree{}}, + "1603888149_create_chat_identity_last_published_table.up.sql": {_1603888149_create_chat_identity_last_published_tableUpSql, map[string]*bintree{}}, + "1605075346_add_communities.up.sql": {_1605075346_add_communitiesUpSql, map[string]*bintree{}}, + "1610117927_add_message_cache.up.sql": {_1610117927_add_message_cacheUpSql, map[string]*bintree{}}, + "1610959908_add_dont_wrap_to_raw_messages.up.sql": {_1610959908_add_dont_wrap_to_raw_messagesUpSql, map[string]*bintree{}}, + "1610960912_add_send_on_personal_topic.up.sql": {_1610960912_add_send_on_personal_topicUpSql, map[string]*bintree{}}, + "1612870480_add_datasync_id.up.sql": {_1612870480_add_datasync_idUpSql, map[string]*bintree{}}, + "1614152139_add_communities_request_to_join.up.sql": {_1614152139_add_communities_request_to_joinUpSql, map[string]*bintree{}}, + "1615374373_add_confirmations.up.sql": {_1615374373_add_confirmationsUpSql, map[string]*bintree{}}, + "1617694931_add_notification_center.up.sql": {_1617694931_add_notification_centerUpSql, map[string]*bintree{}}, + "1618923660_create_pin_messages.up.sql": {_1618923660_create_pin_messagesUpSql, map[string]*bintree{}}, + "1619094007_add_joined_chat_field.up.sql": {_1619094007_add_joined_chat_fieldUpSql, map[string]*bintree{}}, + "1619099821_add_last_synced_field.up.sql": {_1619099821_add_last_synced_fieldUpSql, map[string]*bintree{}}, + "1621933219_add_mentioned.up.sql": {_1621933219_add_mentionedUpSql, map[string]*bintree{}}, + "1622010048_add_unviewed_mentions_count.up.sql": {_1622010048_add_unviewed_mentions_countUpSql, map[string]*bintree{}}, + "1622061278_add_message_activity_center_notification_field.up.sql": {_1622061278_add_message_activity_center_notification_fieldUpSql, map[string]*bintree{}}, + "1622464518_set_synced_to_from.up.sql": {_1622464518_set_synced_to_fromUpSql, map[string]*bintree{}}, + "1622464519_add_chat_description.up.sql": {_1622464519_add_chat_descriptionUpSql, map[string]*bintree{}}, + "1622622253_add_pinned_by_to_pin_messages.up.sql": {_1622622253_add_pinned_by_to_pin_messagesUpSql, map[string]*bintree{}}, + "1623938329_add_author_activity_center_notification_field.up.sql": {_1623938329_add_author_activity_center_notification_fieldUpSql, map[string]*bintree{}}, + "1623938330_add_edit_messages.up.sql": {_1623938330_add_edit_messagesUpSql, map[string]*bintree{}}, + "1624978434_add_muted_community.up.sql": {_1624978434_add_muted_communityUpSql, map[string]*bintree{}}, + "1625018910_add_repply_message_activity_center_notification_field.up.sql": {_1625018910_add_repply_message_activity_center_notification_fieldUpSql, map[string]*bintree{}}, + "1625762506_add_deleted_messages.up.sql": {_1625762506_add_deleted_messagesUpSql, map[string]*bintree{}}, + "1627388946_add_communities_synced_at.up.sql": {_1627388946_add_communities_synced_atUpSql, map[string]*bintree{}}, + "1628280060_create-usermessages-index.sql": {_1628280060_createUsermessagesIndexSql, map[string]*bintree{}}, + "1632303896_modify_contacts_table.up.sql": {_1632303896_modify_contacts_tableUpSql, map[string]*bintree{}}, + "1633349838_add_emoji_column_in_chats.up.sql": {_1633349838_add_emoji_column_in_chatsUpSql, map[string]*bintree{}}, + "1634831235_add_highlight_column_in_chats.up.sql": {_1634831235_add_highlight_column_in_chatsUpSql, map[string]*bintree{}}, + "1634896007_add_last_updated_locally_and_removed.up.sql": {_1634896007_add_last_updated_locally_and_removedUpSql, map[string]*bintree{}}, + "1635840039_add_clock_read_at_column_in_chats.up.sql": {_1635840039_add_clock_read_at_column_in_chatsUpSql, map[string]*bintree{}}, + "1637852321_add_received_invitation_admin_column_in_chats.up.sql": {_1637852321_add_received_invitation_admin_column_in_chatsUpSql, map[string]*bintree{}}, + "1645034601_display_name.up.sql": {_1645034601_display_nameUpSql, map[string]*bintree{}}, + "1645034602_add_mutual_contact_request.up.sql": {_1645034602_add_mutual_contact_requestUpSql, map[string]*bintree{}}, + "1650373957_add_contact_request_state.up.sql": {_1650373957_add_contact_request_stateUpSql, map[string]*bintree{}}, + "1656958989_contact_verification.up.sql": {_1656958989_contact_verificationUpSql, map[string]*bintree{}}, + "1658236268_add_discord_message_authors_table.up.sql": {_1658236268_add_discord_message_authors_tableUpSql, map[string]*bintree{}}, + "1659619997_add_discord_messages_table.up.sql": {_1659619997_add_discord_messages_tableUpSql, map[string]*bintree{}}, + "1660226788_create_chat_identity_social_links.up.sql": {_1660226788_create_chat_identity_social_linksUpSql, map[string]*bintree{}}, + "1660226789_add_walletconnectsessions_table.up.sql": {_1660226789_add_walletconnectsessions_tableUpSql, map[string]*bintree{}}, + "1661242854_add_communities_requests_to_leave.up.sql": {_1661242854_add_communities_requests_to_leaveUpSql, map[string]*bintree{}}, + "1662044232_add_chat_image.up.sql": {_1662044232_add_chat_imageUpSql, map[string]*bintree{}}, + "1662106895_add_chat_first_message_timestamp.up.sql": {_1662106895_add_chat_first_message_timestampUpSql, map[string]*bintree{}}, + "1662723928_add_discord_author_image_fields.up.sql": {_1662723928_add_discord_author_image_fieldsUpSql, map[string]*bintree{}}, + "1664195977_add_deleted_for_mes.up.sql": {_1664195977_add_deleted_for_mesUpSql, map[string]*bintree{}}, + "1664367420_add_discord_attachments_table.up.sql": {_1664367420_add_discord_attachments_tableUpSql, map[string]*bintree{}}, + "1665079662_add_spectated_column_in_communities.up.sql": {_1665079662_add_spectated_column_in_communitiesUpSql, map[string]*bintree{}}, + "1665479047_add_community_id_in_notifications.up.sql": {_1665479047_add_community_id_in_notificationsUpSql, map[string]*bintree{}}, + "1665484435_add_encrypted_messages.up.sql": {_1665484435_add_encrypted_messagesUpSql, map[string]*bintree{}}, + "1665560200_add_contact_verification_individual.up.sql": {_1665560200_add_contact_verification_individualUpSql, map[string]*bintree{}}, + "1670921937_add_album_id.up.sql": {_1670921937_add_album_idUpSql, map[string]*bintree{}}, + "1673373000_add_replied.up.sql": {_1673373000_add_repliedUpSql, map[string]*bintree{}}, + "1673428910_add_image_width_height.up.sql": {_1673428910_add_image_width_heightUpSql, map[string]*bintree{}}, + "1674210659_add_contact_request_local_clock.up.sql": {_1674210659_add_contact_request_local_clockUpSql, map[string]*bintree{}}, + "1675212323_add_deleted_by.up.sql": {_1675212323_add_deleted_byUpSql, map[string]*bintree{}}, + "1675247084_add_activity_center_states.up.sql": {_1675247084_add_activity_center_statesUpSql, map[string]*bintree{}}, + "1675272329_fix_protocol_migration.up.sql": {_1675272329_fix_protocol_migrationUpSql, map[string]*bintree{}}, + "1676998418_fix_activity_center_migration.up.sql": {_1676998418_fix_activity_center_migrationUpSql, map[string]*bintree{}}, + "1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql": {_1677278861_add_deleted_column_to_activity_center_notifications_tableUpSql, map[string]*bintree{}}, + "1677486338_add_community_tokens_table.up.sql": {_1677486338_add_community_tokens_tableUpSql, map[string]*bintree{}}, + "1678292329_add_collapsed_categories.up.sql": {_1678292329_add_collapsed_categoriesUpSql, map[string]*bintree{}}, + "1678800760_add_index_to_raw_messages.up.sql": {_1678800760_add_index_to_raw_messagesUpSql, map[string]*bintree{}}, + "1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql": {_1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSql, map[string]*bintree{}}, + "1679326850_add_community_token_owners.up.sql": {_1679326850_add_community_token_ownersUpSql, map[string]*bintree{}}, + "1680011500_add_album_images_count.up.sql": {_1680011500_add_album_images_countUpSql, map[string]*bintree{}}, + "1680114896_add_index_on_album_id.up.sql": {_1680114896_add_index_on_album_idUpSql, map[string]*bintree{}}, + "1681655289_add_mute_till.up.sql": {_1681655289_add_mute_tillUpSql, map[string]*bintree{}}, + "1681934966_add_index_response_to.up.sql": {_1681934966_add_index_response_toUpSql, map[string]*bintree{}}, + "1682528339_add_index_user_messages_unseen.up.sql": {_1682528339_add_index_user_messages_unseenUpSql, map[string]*bintree{}}, + "1683707289_recreate_deleted_for_mes.up.sql": {_1683707289_recreate_deleted_for_mesUpSql, map[string]*bintree{}}, + "1683725607_mark_discord_messages_as_seen.up.sql": {_1683725607_mark_discord_messages_as_seenUpSql, map[string]*bintree{}}, + "1684174617_add_url_previews_to_user_messages.up.sql": {_1684174617_add_url_previews_to_user_messagesUpSql, map[string]*bintree{}}, + "1684175608_add_token_balances.up.sql": {_1684175608_add_token_balancesUpSql, map[string]*bintree{}}, + "1684979808_sync_activity_center_notifications.up.sql": {_1684979808_sync_activity_center_notificationsUpSql, map[string]*bintree{}}, + "1685383829_add_communities_mute_till.up.sql": {_1685383829_add_communities_mute_tillUpSql, map[string]*bintree{}}, + "1685964183_add_chainids_to_revealed_addresses.up.sql": {_1685964183_add_chainids_to_revealed_addressesUpSql, map[string]*bintree{}}, + "1687370421_add_communities_muted_till_new.up.sql": {_1687370421_add_communities_muted_till_newUpSql, map[string]*bintree{}}, + "1687416607_add_communities_check_channel_permission_responses_table.up.sql": {_1687416607_add_communities_check_channel_permission_responses_tableUpSql, map[string]*bintree{}}, + "1687856939_add_community_tokens_decimals.up.sql": {_1687856939_add_community_tokens_decimalsUpSql, map[string]*bintree{}}, + "1687959987_modify_community_tokens_supply_as_string.up.sql": {_1687959987_modify_community_tokens_supply_as_stringUpSql, map[string]*bintree{}}, + "1689258900_add_airdrop_address_to_revealed_addresses.up.sql": {_1689258900_add_airdrop_address_to_revealed_addressesUpSql, map[string]*bintree{}}, + "1689266326_create_communities_events_table.up.sql": {_1689266326_create_communities_events_tableUpSql, map[string]*bintree{}}, + "1689931300_add_community_tokens_deployer_and_priv_level.up.sql": {_1689931300_add_community_tokens_deployer_and_priv_levelUpSql, map[string]*bintree{}}, + "1693311881_add_unfurled_links_to_message_edits.up.sql": {_1693311881_add_unfurled_links_to_message_editsUpSql, map[string]*bintree{}}, + "1693311981_community_shard.up.sql": {_1693311981_community_shardUpSql, map[string]*bintree{}}, + "1695331492_add_status_link_previews.up.sql": {_1695331492_add_status_link_previewsUpSql, map[string]*bintree{}}, + "1695918296_add_validated_at.up.sql": {_1695918296_add_validated_atUpSql, map[string]*bintree{}}, + "1697699419_community_control_node_sync.up.sql": {_1697699419_community_control_node_syncUpSql, map[string]*bintree{}}, + "1698137561_add_profile_showcase_tables.up.sql": {_1698137561_add_profile_showcase_tablesUpSql, map[string]*bintree{}}, + "1698137562_fix_encryption_key_id.up.sql": {_1698137562_fix_encryption_key_idUpSql, map[string]*bintree{}}, + "1698414646_add_padding.up.sql": {_1698414646_add_paddingUpSql, map[string]*bintree{}}, + "1698746210_add_signature_to_revealed_addresses.up.sql": {_1698746210_add_signature_to_revealed_addressesUpSql, map[string]*bintree{}}, + "1699041816_profile_showcase_contacts.up.sql": {_1699041816_profile_showcase_contactsUpSql, map[string]*bintree{}}, + "1699554099_message_segments.up.sql": {_1699554099_message_segmentsUpSql, map[string]*bintree{}}, + "1700044186_message_segments_timestamp.up.sql": {_1700044186_message_segments_timestampUpSql, map[string]*bintree{}}, + "1700044187_curated_communities.up.sql": {_1700044187_curated_communitiesUpSql, map[string]*bintree{}}, + "1700820989_add_resend_automatically_index.up.sql": {_1700820989_add_resend_automatically_indexUpSql, map[string]*bintree{}}, + "1702996953_add_communities_shards_table.up.sql": {_1702996953_add_communities_shards_tableUpSql, map[string]*bintree{}}, + "1704489636_add_album_images.up.sql": {_1704489636_add_album_imagesUpSql, map[string]*bintree{}}, + "1704821941_add_joined_at_for_community.up.sql": {_1704821941_add_joined_at_for_communityUpSql, map[string]*bintree{}}, + "1704832511_add_last_opened_at_for_communities.up.sql": {_1704832511_add_last_opened_at_for_communitiesUpSql, map[string]*bintree{}}, + "1704832512_add_peersyncing.up.sql": {_1704832512_add_peersyncingUpSql, map[string]*bintree{}}, + "1706028033_profile_showcase_address_and_community.up.sql": {_1706028033_profile_showcase_address_and_communityUpSql, map[string]*bintree{}}, + "1706520870_add_bridge_messages_table.up.sql": {_1706520870_add_bridge_messages_tableUpSql, map[string]*bintree{}}, + "1707749393_add_community_grants.up.sql": {_1707749393_add_community_grantsUpSql, map[string]*bintree{}}, + "1707841194_add_profile_showcase_preferences.up.sql": {_1707841194_add_profile_showcase_preferencesUpSql, map[string]*bintree{}}, + "1708062699_activity_data.up.sql": {_1708062699_activity_dataUpSql, map[string]*bintree{}}, + "1708423707_applied_community_events.up.sql": {_1708423707_applied_community_eventsUpSql, map[string]*bintree{}}, + "README.md": {readmeMd, map[string]*bintree{}}, + "doc.go": {docGo, map[string]*bintree{}}, }} // RestoreAsset restores an asset under the given directory. @@ -3241,7 +3143,7 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + err = os.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } diff --git a/protocol/migrations/sqlite/1708423707_applied_community_events.up.sql b/protocol/migrations/sqlite/1708423707_applied_community_events.up.sql new file mode 100644 index 000000000..4b7472b59 --- /dev/null +++ b/protocol/migrations/sqlite/1708423707_applied_community_events.up.sql @@ -0,0 +1,6 @@ +CREATE TABLE applied_community_events ( + community_id TEXT NOT NULL, + event_type_id TEXT DEFAULT NULL, + clock INT NOT NULL, + PRIMARY KEY (community_id, event_type_id) ON CONFLICT REPLACE +); \ No newline at end of file