From 340edf5c301ca7369dbcc9a080bb2cb31c238a1e Mon Sep 17 00:00:00 2001 From: mcrakhman Date: Tue, 13 Jun 2023 17:17:04 +0200 Subject: [PATCH 1/3] Update any-sync: yamux, clientVersion and retry timeout --- core/account.go | 6 +- core/anytype/bootstrap.go | 10 +- core/block/source/service.go | 10 +- core/core.go | 5 +- core/metrics.go | 1 + docs/proto.md | 8133 +++++++++++++++++----------------- go.mod | 23 +- go.sum | 64 +- pb/commands.pb.go | 1718 +++---- pb/protos/commands.proto | 1 + 10 files changed, 4994 insertions(+), 4977 deletions(-) diff --git a/core/account.go b/core/account.go index d20761db39..e707f00903 100644 --- a/core/account.go +++ b/core/account.go @@ -154,7 +154,7 @@ func (mw *Middleware) AccountCreate(cctx context.Context, req *pb.RpcAccountCrea mw.EventSender, } - if mw.app, err = anytype.StartNewApp(context.WithValue(context.Background(), metrics.CtxKeyRequest, "account_create"), comps...); err != nil { + if mw.app, err = anytype.StartNewApp(context.WithValue(context.Background(), metrics.CtxKeyRequest, "account_create"), mw.clientVersion, comps...); err != nil { return response(newAcc, pb.RpcAccountCreateResponseError_ACCOUNT_CREATED_BUT_FAILED_TO_START_NODE, err) } @@ -303,7 +303,7 @@ func (mw *Middleware) AccountSelect(cctx context.Context, req *pb.RpcAccountSele // if we have created the repo, we need to highlight that we are recovering the account request = request + "_recover" } - if mw.app, err = anytype.StartNewApp(context.WithValue(context.Background(), metrics.CtxKeyRequest, request), comps...); err != nil { + if mw.app, err = anytype.StartNewApp(context.WithValue(context.Background(), metrics.CtxKeyRequest, request), mw.clientVersion, comps...); err != nil { if errors.Is(err, spacesyncproto.ErrSpaceMissing) { return response(nil, pb.RpcAccountSelectResponseError_FAILED_TO_FIND_ACCOUNT_INFO, err) } @@ -655,7 +655,7 @@ func (mw *Middleware) startApp(cfg *config.Config, derivationResult crypto.Deriv ctxWithValue := context.WithValue(context.Background(), metrics.CtxKeyRequest, "account_create") var err error - if mw.app, err = anytype.StartNewApp(ctxWithValue, comps...); err != nil { + if mw.app, err = anytype.StartNewApp(ctxWithValue, mw.clientVersion, comps...); err != nil { return err } return nil diff --git a/core/anytype/bootstrap.go b/core/anytype/bootstrap.go index c9e7162a51..add8152bc4 100644 --- a/core/anytype/bootstrap.go +++ b/core/anytype/bootstrap.go @@ -72,6 +72,7 @@ import ( "github.com/anyproto/anytype-heart/util/builtintemplate" "github.com/anyproto/anytype-heart/util/linkpreview" "github.com/anyproto/anytype-heart/util/unsplash" + "github.com/anyproto/anytype-heart/util/vcs" ) func BootstrapConfig(newAccount bool, isStaging bool, createBuiltinTemplates bool) *config.Config { @@ -86,8 +87,9 @@ func BootstrapWallet(rootPath string, derivationResult crypto.DerivationResult) return wallet.NewWithAccountRepo(rootPath, derivationResult) } -func StartNewApp(ctx context.Context, components ...app.Component) (a *app.App, err error) { +func StartNewApp(ctx context.Context, clientVersion string, components ...app.Component) (a *app.App, err error) { a = new(app.App) + a.SetVersionName(appVersion(a, clientVersion)) Bootstrap(a, components...) metrics.SharedClient.SetAppVersion(a.Version()) metrics.SharedClient.Run() @@ -100,6 +102,12 @@ func StartNewApp(ctx context.Context, components ...app.Component) (a *app.App, return } +func appVersion(a *app.App, clientVersion string) string { + middleVersion := vcs.GetVCSInfo().Version() + anySyncVersion := a.AnySyncVersion() + return "client:" + clientVersion + "/middle:" + middleVersion + "/any-sync:" + anySyncVersion +} + func Bootstrap(a *app.App, components ...app.Component) { for _, c := range components { a.Register(c) diff --git a/core/block/source/service.go b/core/block/source/service.go index f839e3eed9..272bcd1f18 100644 --- a/core/block/source/service.go +++ b/core/block/source/service.go @@ -5,6 +5,7 @@ import ( "fmt" "strings" "sync" + "time" "github.com/anyproto/any-sync/accountservice" "github.com/anyproto/any-sync/app" @@ -75,9 +76,14 @@ type BuildOptions struct { } func (b *BuildOptions) BuildTreeOpts() objecttreebuilder.BuildTreeOpts { + var retryTimeout time.Duration + // we will try to reconnect during the ctx timeout if RetryRemoteLoad is set + if b.RetryRemoteLoad { + retryTimeout = time.Minute + } return objecttreebuilder.BuildTreeOpts{ - Listener: b.Listener, - WaitTreeRemoteSync: b.RetryRemoteLoad, + Listener: b.Listener, + RetryTimeout: retryTimeout, } } diff --git a/core/core.go b/core/core.go index 458f467a56..de83d07a44 100644 --- a/core/core.go +++ b/core/core.go @@ -35,8 +35,9 @@ type Middleware struct { accountSearchCancel context.CancelFunc EventSender event.Sender - sessions session.Service - app *app.App + sessions session.Service + clientVersion string + app *app.App m sync.RWMutex } diff --git a/core/metrics.go b/core/metrics.go index eddd6dab12..6010409c85 100644 --- a/core/metrics.go +++ b/core/metrics.go @@ -16,6 +16,7 @@ func (mw *Middleware) MetricsSetParameters(cctx context.Context, req *pb.RpcMetr return m } + mw.clientVersion = req.Version metrics.SharedClient.SetPlatform(req.Platform) return response(pb.RpcMetricsSetParametersResponseError_NULL, nil) diff --git a/docs/proto.md b/docs/proto.md index 994eeb190c..1f8ae5ccf6 100644 --- a/docs/proto.md +++ b/docs/proto.md @@ -3,1431 +3,1431 @@ ## Table of Contents -- [pb/protos/service/service.proto](#pb/protos/service/service.proto) - - [ClientCommands](#anytype.ClientCommands) +- [pb/protos/service/service.proto](#pb_protos_service_service-proto) + - [ClientCommands](#anytype-ClientCommands) -- [pb/protos/changes.proto](#pb/protos/changes.proto) - - [Change](#anytype.Change) - - [Change.BlockCreate](#anytype.Change.BlockCreate) - - [Change.BlockDuplicate](#anytype.Change.BlockDuplicate) - - [Change.BlockMove](#anytype.Change.BlockMove) - - [Change.BlockRemove](#anytype.Change.BlockRemove) - - [Change.BlockUpdate](#anytype.Change.BlockUpdate) - - [Change.Content](#anytype.Change.Content) - - [Change.DetailsSet](#anytype.Change.DetailsSet) - - [Change.DetailsUnset](#anytype.Change.DetailsUnset) - - [Change.FileKeys](#anytype.Change.FileKeys) - - [Change.FileKeys.KeysEntry](#anytype.Change.FileKeys.KeysEntry) - - [Change.ObjectTypeAdd](#anytype.Change.ObjectTypeAdd) - - [Change.ObjectTypeRemove](#anytype.Change.ObjectTypeRemove) - - [Change.RelationAdd](#anytype.Change.RelationAdd) - - [Change.RelationRemove](#anytype.Change.RelationRemove) - - [Change.Snapshot](#anytype.Change.Snapshot) - - [Change.Snapshot.LogHeadsEntry](#anytype.Change.Snapshot.LogHeadsEntry) - - [Change.StoreKeySet](#anytype.Change.StoreKeySet) - - [Change.StoreKeyUnset](#anytype.Change.StoreKeyUnset) - - [Change.StoreSliceUpdate](#anytype.Change.StoreSliceUpdate) - - [Change.StoreSliceUpdate.Add](#anytype.Change.StoreSliceUpdate.Add) - - [Change.StoreSliceUpdate.Move](#anytype.Change.StoreSliceUpdate.Move) - - [Change.StoreSliceUpdate.Remove](#anytype.Change.StoreSliceUpdate.Remove) - - [Change._RelationAdd](#anytype.Change._RelationAdd) - - [Change._RelationRemove](#anytype.Change._RelationRemove) - - [Change._RelationUpdate](#anytype.Change._RelationUpdate) - - [Change._RelationUpdate.Dict](#anytype.Change._RelationUpdate.Dict) - - [Change._RelationUpdate.ObjectTypes](#anytype.Change._RelationUpdate.ObjectTypes) +- [pb/protos/changes.proto](#pb_protos_changes-proto) + - [Change](#anytype-Change) + - [Change.BlockCreate](#anytype-Change-BlockCreate) + - [Change.BlockDuplicate](#anytype-Change-BlockDuplicate) + - [Change.BlockMove](#anytype-Change-BlockMove) + - [Change.BlockRemove](#anytype-Change-BlockRemove) + - [Change.BlockUpdate](#anytype-Change-BlockUpdate) + - [Change.Content](#anytype-Change-Content) + - [Change.DetailsSet](#anytype-Change-DetailsSet) + - [Change.DetailsUnset](#anytype-Change-DetailsUnset) + - [Change.FileKeys](#anytype-Change-FileKeys) + - [Change.FileKeys.KeysEntry](#anytype-Change-FileKeys-KeysEntry) + - [Change.ObjectTypeAdd](#anytype-Change-ObjectTypeAdd) + - [Change.ObjectTypeRemove](#anytype-Change-ObjectTypeRemove) + - [Change.RelationAdd](#anytype-Change-RelationAdd) + - [Change.RelationRemove](#anytype-Change-RelationRemove) + - [Change.Snapshot](#anytype-Change-Snapshot) + - [Change.Snapshot.LogHeadsEntry](#anytype-Change-Snapshot-LogHeadsEntry) + - [Change.StoreKeySet](#anytype-Change-StoreKeySet) + - [Change.StoreKeyUnset](#anytype-Change-StoreKeyUnset) + - [Change.StoreSliceUpdate](#anytype-Change-StoreSliceUpdate) + - [Change.StoreSliceUpdate.Add](#anytype-Change-StoreSliceUpdate-Add) + - [Change.StoreSliceUpdate.Move](#anytype-Change-StoreSliceUpdate-Move) + - [Change.StoreSliceUpdate.Remove](#anytype-Change-StoreSliceUpdate-Remove) + - [Change._RelationAdd](#anytype-Change-_RelationAdd) + - [Change._RelationRemove](#anytype-Change-_RelationRemove) + - [Change._RelationUpdate](#anytype-Change-_RelationUpdate) + - [Change._RelationUpdate.Dict](#anytype-Change-_RelationUpdate-Dict) + - [Change._RelationUpdate.ObjectTypes](#anytype-Change-_RelationUpdate-ObjectTypes) -- [pb/protos/commands.proto](#pb/protos/commands.proto) - - [Empty](#anytype.Empty) - - [Rpc](#anytype.Rpc) - - [Rpc.Account](#anytype.Rpc.Account) - - [Rpc.Account.Config](#anytype.Rpc.Account.Config) - - [Rpc.Account.ConfigUpdate](#anytype.Rpc.Account.ConfigUpdate) - - [Rpc.Account.ConfigUpdate.Request](#anytype.Rpc.Account.ConfigUpdate.Request) - - [Rpc.Account.ConfigUpdate.Response](#anytype.Rpc.Account.ConfigUpdate.Response) - - [Rpc.Account.ConfigUpdate.Response.Error](#anytype.Rpc.Account.ConfigUpdate.Response.Error) - - [Rpc.Account.Create](#anytype.Rpc.Account.Create) - - [Rpc.Account.Create.Request](#anytype.Rpc.Account.Create.Request) - - [Rpc.Account.Create.Response](#anytype.Rpc.Account.Create.Response) - - [Rpc.Account.Create.Response.Error](#anytype.Rpc.Account.Create.Response.Error) - - [Rpc.Account.Delete](#anytype.Rpc.Account.Delete) - - [Rpc.Account.Delete.Request](#anytype.Rpc.Account.Delete.Request) - - [Rpc.Account.Delete.Response](#anytype.Rpc.Account.Delete.Response) - - [Rpc.Account.Delete.Response.Error](#anytype.Rpc.Account.Delete.Response.Error) - - [Rpc.Account.GetConfig](#anytype.Rpc.Account.GetConfig) - - [Rpc.Account.GetConfig.Get](#anytype.Rpc.Account.GetConfig.Get) - - [Rpc.Account.GetConfig.Get.Request](#anytype.Rpc.Account.GetConfig.Get.Request) - - [Rpc.Account.Move](#anytype.Rpc.Account.Move) - - [Rpc.Account.Move.Request](#anytype.Rpc.Account.Move.Request) - - [Rpc.Account.Move.Response](#anytype.Rpc.Account.Move.Response) - - [Rpc.Account.Move.Response.Error](#anytype.Rpc.Account.Move.Response.Error) - - [Rpc.Account.Recover](#anytype.Rpc.Account.Recover) - - [Rpc.Account.Recover.Request](#anytype.Rpc.Account.Recover.Request) - - [Rpc.Account.Recover.Response](#anytype.Rpc.Account.Recover.Response) - - [Rpc.Account.Recover.Response.Error](#anytype.Rpc.Account.Recover.Response.Error) - - [Rpc.Account.RecoverFromLegacyExport](#anytype.Rpc.Account.RecoverFromLegacyExport) - - [Rpc.Account.RecoverFromLegacyExport.Request](#anytype.Rpc.Account.RecoverFromLegacyExport.Request) - - [Rpc.Account.RecoverFromLegacyExport.Response](#anytype.Rpc.Account.RecoverFromLegacyExport.Response) - - [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error) - - [Rpc.Account.Select](#anytype.Rpc.Account.Select) - - [Rpc.Account.Select.Request](#anytype.Rpc.Account.Select.Request) - - [Rpc.Account.Select.Response](#anytype.Rpc.Account.Select.Response) - - [Rpc.Account.Select.Response.Error](#anytype.Rpc.Account.Select.Response.Error) - - [Rpc.Account.Stop](#anytype.Rpc.Account.Stop) - - [Rpc.Account.Stop.Request](#anytype.Rpc.Account.Stop.Request) - - [Rpc.Account.Stop.Response](#anytype.Rpc.Account.Stop.Response) - - [Rpc.Account.Stop.Response.Error](#anytype.Rpc.Account.Stop.Response.Error) - - [Rpc.App](#anytype.Rpc.App) - - [Rpc.App.GetVersion](#anytype.Rpc.App.GetVersion) - - [Rpc.App.GetVersion.Request](#anytype.Rpc.App.GetVersion.Request) - - [Rpc.App.GetVersion.Response](#anytype.Rpc.App.GetVersion.Response) - - [Rpc.App.GetVersion.Response.Error](#anytype.Rpc.App.GetVersion.Response.Error) - - [Rpc.App.SetDeviceState](#anytype.Rpc.App.SetDeviceState) - - [Rpc.App.SetDeviceState.Request](#anytype.Rpc.App.SetDeviceState.Request) - - [Rpc.App.SetDeviceState.Response](#anytype.Rpc.App.SetDeviceState.Response) - - [Rpc.App.SetDeviceState.Response.Error](#anytype.Rpc.App.SetDeviceState.Response.Error) - - [Rpc.App.Shutdown](#anytype.Rpc.App.Shutdown) - - [Rpc.App.Shutdown.Request](#anytype.Rpc.App.Shutdown.Request) - - [Rpc.App.Shutdown.Response](#anytype.Rpc.App.Shutdown.Response) - - [Rpc.App.Shutdown.Response.Error](#anytype.Rpc.App.Shutdown.Response.Error) - - [Rpc.Block](#anytype.Rpc.Block) - - [Rpc.Block.Copy](#anytype.Rpc.Block.Copy) - - [Rpc.Block.Copy.Request](#anytype.Rpc.Block.Copy.Request) - - [Rpc.Block.Copy.Response](#anytype.Rpc.Block.Copy.Response) - - [Rpc.Block.Copy.Response.Error](#anytype.Rpc.Block.Copy.Response.Error) - - [Rpc.Block.Create](#anytype.Rpc.Block.Create) - - [Rpc.Block.Create.Request](#anytype.Rpc.Block.Create.Request) - - [Rpc.Block.Create.Response](#anytype.Rpc.Block.Create.Response) - - [Rpc.Block.Create.Response.Error](#anytype.Rpc.Block.Create.Response.Error) - - [Rpc.Block.CreateWidget](#anytype.Rpc.Block.CreateWidget) - - [Rpc.Block.CreateWidget.Request](#anytype.Rpc.Block.CreateWidget.Request) - - [Rpc.Block.CreateWidget.Response](#anytype.Rpc.Block.CreateWidget.Response) - - [Rpc.Block.CreateWidget.Response.Error](#anytype.Rpc.Block.CreateWidget.Response.Error) - - [Rpc.Block.Cut](#anytype.Rpc.Block.Cut) - - [Rpc.Block.Cut.Request](#anytype.Rpc.Block.Cut.Request) - - [Rpc.Block.Cut.Response](#anytype.Rpc.Block.Cut.Response) - - [Rpc.Block.Cut.Response.Error](#anytype.Rpc.Block.Cut.Response.Error) - - [Rpc.Block.Download](#anytype.Rpc.Block.Download) - - [Rpc.Block.Download.Request](#anytype.Rpc.Block.Download.Request) - - [Rpc.Block.Download.Response](#anytype.Rpc.Block.Download.Response) - - [Rpc.Block.Download.Response.Error](#anytype.Rpc.Block.Download.Response.Error) - - [Rpc.Block.Export](#anytype.Rpc.Block.Export) - - [Rpc.Block.Export.Request](#anytype.Rpc.Block.Export.Request) - - [Rpc.Block.Export.Response](#anytype.Rpc.Block.Export.Response) - - [Rpc.Block.Export.Response.Error](#anytype.Rpc.Block.Export.Response.Error) - - [Rpc.Block.ListConvertToObjects](#anytype.Rpc.Block.ListConvertToObjects) - - [Rpc.Block.ListConvertToObjects.Request](#anytype.Rpc.Block.ListConvertToObjects.Request) - - [Rpc.Block.ListConvertToObjects.Response](#anytype.Rpc.Block.ListConvertToObjects.Response) - - [Rpc.Block.ListConvertToObjects.Response.Error](#anytype.Rpc.Block.ListConvertToObjects.Response.Error) - - [Rpc.Block.ListDelete](#anytype.Rpc.Block.ListDelete) - - [Rpc.Block.ListDelete.Request](#anytype.Rpc.Block.ListDelete.Request) - - [Rpc.Block.ListDelete.Response](#anytype.Rpc.Block.ListDelete.Response) - - [Rpc.Block.ListDelete.Response.Error](#anytype.Rpc.Block.ListDelete.Response.Error) - - [Rpc.Block.ListDuplicate](#anytype.Rpc.Block.ListDuplicate) - - [Rpc.Block.ListDuplicate.Request](#anytype.Rpc.Block.ListDuplicate.Request) - - [Rpc.Block.ListDuplicate.Response](#anytype.Rpc.Block.ListDuplicate.Response) - - [Rpc.Block.ListDuplicate.Response.Error](#anytype.Rpc.Block.ListDuplicate.Response.Error) - - [Rpc.Block.ListMoveToExistingObject](#anytype.Rpc.Block.ListMoveToExistingObject) - - [Rpc.Block.ListMoveToExistingObject.Request](#anytype.Rpc.Block.ListMoveToExistingObject.Request) - - [Rpc.Block.ListMoveToExistingObject.Response](#anytype.Rpc.Block.ListMoveToExistingObject.Response) - - [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error) - - [Rpc.Block.ListMoveToNewObject](#anytype.Rpc.Block.ListMoveToNewObject) - - [Rpc.Block.ListMoveToNewObject.Request](#anytype.Rpc.Block.ListMoveToNewObject.Request) - - [Rpc.Block.ListMoveToNewObject.Response](#anytype.Rpc.Block.ListMoveToNewObject.Response) - - [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error) - - [Rpc.Block.ListSetAlign](#anytype.Rpc.Block.ListSetAlign) - - [Rpc.Block.ListSetAlign.Request](#anytype.Rpc.Block.ListSetAlign.Request) - - [Rpc.Block.ListSetAlign.Response](#anytype.Rpc.Block.ListSetAlign.Response) - - [Rpc.Block.ListSetAlign.Response.Error](#anytype.Rpc.Block.ListSetAlign.Response.Error) - - [Rpc.Block.ListSetBackgroundColor](#anytype.Rpc.Block.ListSetBackgroundColor) - - [Rpc.Block.ListSetBackgroundColor.Request](#anytype.Rpc.Block.ListSetBackgroundColor.Request) - - [Rpc.Block.ListSetBackgroundColor.Response](#anytype.Rpc.Block.ListSetBackgroundColor.Response) - - [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error) - - [Rpc.Block.ListSetFields](#anytype.Rpc.Block.ListSetFields) - - [Rpc.Block.ListSetFields.Request](#anytype.Rpc.Block.ListSetFields.Request) - - [Rpc.Block.ListSetFields.Request.BlockField](#anytype.Rpc.Block.ListSetFields.Request.BlockField) - - [Rpc.Block.ListSetFields.Response](#anytype.Rpc.Block.ListSetFields.Response) - - [Rpc.Block.ListSetFields.Response.Error](#anytype.Rpc.Block.ListSetFields.Response.Error) - - [Rpc.Block.ListSetVerticalAlign](#anytype.Rpc.Block.ListSetVerticalAlign) - - [Rpc.Block.ListSetVerticalAlign.Request](#anytype.Rpc.Block.ListSetVerticalAlign.Request) - - [Rpc.Block.ListSetVerticalAlign.Response](#anytype.Rpc.Block.ListSetVerticalAlign.Response) - - [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error) - - [Rpc.Block.ListTurnInto](#anytype.Rpc.Block.ListTurnInto) - - [Rpc.Block.ListTurnInto.Request](#anytype.Rpc.Block.ListTurnInto.Request) - - [Rpc.Block.ListTurnInto.Response](#anytype.Rpc.Block.ListTurnInto.Response) - - [Rpc.Block.ListTurnInto.Response.Error](#anytype.Rpc.Block.ListTurnInto.Response.Error) - - [Rpc.Block.ListUpdate](#anytype.Rpc.Block.ListUpdate) - - [Rpc.Block.ListUpdate.Request](#anytype.Rpc.Block.ListUpdate.Request) - - [Rpc.Block.ListUpdate.Request.Text](#anytype.Rpc.Block.ListUpdate.Request.Text) - - [Rpc.Block.Merge](#anytype.Rpc.Block.Merge) - - [Rpc.Block.Merge.Request](#anytype.Rpc.Block.Merge.Request) - - [Rpc.Block.Merge.Response](#anytype.Rpc.Block.Merge.Response) - - [Rpc.Block.Merge.Response.Error](#anytype.Rpc.Block.Merge.Response.Error) - - [Rpc.Block.Paste](#anytype.Rpc.Block.Paste) - - [Rpc.Block.Paste.Request](#anytype.Rpc.Block.Paste.Request) - - [Rpc.Block.Paste.Request.File](#anytype.Rpc.Block.Paste.Request.File) - - [Rpc.Block.Paste.Response](#anytype.Rpc.Block.Paste.Response) - - [Rpc.Block.Paste.Response.Error](#anytype.Rpc.Block.Paste.Response.Error) - - [Rpc.Block.Replace](#anytype.Rpc.Block.Replace) - - [Rpc.Block.Replace.Request](#anytype.Rpc.Block.Replace.Request) - - [Rpc.Block.Replace.Response](#anytype.Rpc.Block.Replace.Response) - - [Rpc.Block.Replace.Response.Error](#anytype.Rpc.Block.Replace.Response.Error) - - [Rpc.Block.SetFields](#anytype.Rpc.Block.SetFields) - - [Rpc.Block.SetFields.Request](#anytype.Rpc.Block.SetFields.Request) - - [Rpc.Block.SetFields.Response](#anytype.Rpc.Block.SetFields.Response) - - [Rpc.Block.SetFields.Response.Error](#anytype.Rpc.Block.SetFields.Response.Error) - - [Rpc.Block.Split](#anytype.Rpc.Block.Split) - - [Rpc.Block.Split.Request](#anytype.Rpc.Block.Split.Request) - - [Rpc.Block.Split.Response](#anytype.Rpc.Block.Split.Response) - - [Rpc.Block.Split.Response.Error](#anytype.Rpc.Block.Split.Response.Error) - - [Rpc.Block.Upload](#anytype.Rpc.Block.Upload) - - [Rpc.Block.Upload.Request](#anytype.Rpc.Block.Upload.Request) - - [Rpc.Block.Upload.Response](#anytype.Rpc.Block.Upload.Response) - - [Rpc.Block.Upload.Response.Error](#anytype.Rpc.Block.Upload.Response.Error) - - [Rpc.BlockBookmark](#anytype.Rpc.BlockBookmark) - - [Rpc.BlockBookmark.CreateAndFetch](#anytype.Rpc.BlockBookmark.CreateAndFetch) - - [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype.Rpc.BlockBookmark.CreateAndFetch.Request) - - [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response) - - [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error) - - [Rpc.BlockBookmark.Fetch](#anytype.Rpc.BlockBookmark.Fetch) - - [Rpc.BlockBookmark.Fetch.Request](#anytype.Rpc.BlockBookmark.Fetch.Request) - - [Rpc.BlockBookmark.Fetch.Response](#anytype.Rpc.BlockBookmark.Fetch.Response) - - [Rpc.BlockBookmark.Fetch.Response.Error](#anytype.Rpc.BlockBookmark.Fetch.Response.Error) - - [Rpc.BlockDataview](#anytype.Rpc.BlockDataview) - - [Rpc.BlockDataview.CreateBookmark](#anytype.Rpc.BlockDataview.CreateBookmark) - - [Rpc.BlockDataview.CreateBookmark.Request](#anytype.Rpc.BlockDataview.CreateBookmark.Request) - - [Rpc.BlockDataview.CreateBookmark.Response](#anytype.Rpc.BlockDataview.CreateBookmark.Response) - - [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error) - - [Rpc.BlockDataview.CreateFromExistingObject](#anytype.Rpc.BlockDataview.CreateFromExistingObject) - - [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Request) - - [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response) - - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error) - - [Rpc.BlockDataview.Filter](#anytype.Rpc.BlockDataview.Filter) - - [Rpc.BlockDataview.Filter.Add](#anytype.Rpc.BlockDataview.Filter.Add) - - [Rpc.BlockDataview.Filter.Add.Request](#anytype.Rpc.BlockDataview.Filter.Add.Request) - - [Rpc.BlockDataview.Filter.Add.Response](#anytype.Rpc.BlockDataview.Filter.Add.Response) - - [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error) - - [Rpc.BlockDataview.Filter.Remove](#anytype.Rpc.BlockDataview.Filter.Remove) - - [Rpc.BlockDataview.Filter.Remove.Request](#anytype.Rpc.BlockDataview.Filter.Remove.Request) - - [Rpc.BlockDataview.Filter.Remove.Response](#anytype.Rpc.BlockDataview.Filter.Remove.Response) - - [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error) - - [Rpc.BlockDataview.Filter.Replace](#anytype.Rpc.BlockDataview.Filter.Replace) - - [Rpc.BlockDataview.Filter.Replace.Request](#anytype.Rpc.BlockDataview.Filter.Replace.Request) - - [Rpc.BlockDataview.Filter.Replace.Response](#anytype.Rpc.BlockDataview.Filter.Replace.Response) - - [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error) - - [Rpc.BlockDataview.Filter.Sort](#anytype.Rpc.BlockDataview.Filter.Sort) - - [Rpc.BlockDataview.Filter.Sort.Request](#anytype.Rpc.BlockDataview.Filter.Sort.Request) - - [Rpc.BlockDataview.Filter.Sort.Response](#anytype.Rpc.BlockDataview.Filter.Sort.Response) - - [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error) - - [Rpc.BlockDataview.GroupOrder](#anytype.Rpc.BlockDataview.GroupOrder) - - [Rpc.BlockDataview.GroupOrder.Update](#anytype.Rpc.BlockDataview.GroupOrder.Update) - - [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype.Rpc.BlockDataview.GroupOrder.Update.Request) - - [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response) - - [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error) - - [Rpc.BlockDataview.ObjectOrder](#anytype.Rpc.BlockDataview.ObjectOrder) - - [Rpc.BlockDataview.ObjectOrder.Move](#anytype.Rpc.BlockDataview.ObjectOrder.Move) - - [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Request) - - [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response) - - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error) - - [Rpc.BlockDataview.ObjectOrder.Update](#anytype.Rpc.BlockDataview.ObjectOrder.Update) - - [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Request) - - [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response) - - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error) - - [Rpc.BlockDataview.Relation](#anytype.Rpc.BlockDataview.Relation) - - [Rpc.BlockDataview.Relation.Add](#anytype.Rpc.BlockDataview.Relation.Add) - - [Rpc.BlockDataview.Relation.Add.Request](#anytype.Rpc.BlockDataview.Relation.Add.Request) - - [Rpc.BlockDataview.Relation.Add.Response](#anytype.Rpc.BlockDataview.Relation.Add.Response) - - [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error) - - [Rpc.BlockDataview.Relation.Delete](#anytype.Rpc.BlockDataview.Relation.Delete) - - [Rpc.BlockDataview.Relation.Delete.Request](#anytype.Rpc.BlockDataview.Relation.Delete.Request) - - [Rpc.BlockDataview.Relation.Delete.Response](#anytype.Rpc.BlockDataview.Relation.Delete.Response) - - [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error) - - [Rpc.BlockDataview.Relation.ListAvailable](#anytype.Rpc.BlockDataview.Relation.ListAvailable) - - [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Request) - - [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response) - - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error) - - [Rpc.BlockDataview.SetSource](#anytype.Rpc.BlockDataview.SetSource) - - [Rpc.BlockDataview.SetSource.Request](#anytype.Rpc.BlockDataview.SetSource.Request) - - [Rpc.BlockDataview.SetSource.Response](#anytype.Rpc.BlockDataview.SetSource.Response) - - [Rpc.BlockDataview.SetSource.Response.Error](#anytype.Rpc.BlockDataview.SetSource.Response.Error) - - [Rpc.BlockDataview.Sort](#anytype.Rpc.BlockDataview.Sort) - - [Rpc.BlockDataview.Sort.Add](#anytype.Rpc.BlockDataview.Sort.Add) - - [Rpc.BlockDataview.Sort.Add.Request](#anytype.Rpc.BlockDataview.Sort.Add.Request) - - [Rpc.BlockDataview.Sort.Add.Response](#anytype.Rpc.BlockDataview.Sort.Add.Response) - - [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error) - - [Rpc.BlockDataview.Sort.Remove](#anytype.Rpc.BlockDataview.Sort.Remove) - - [Rpc.BlockDataview.Sort.Remove.Request](#anytype.Rpc.BlockDataview.Sort.Remove.Request) - - [Rpc.BlockDataview.Sort.Remove.Response](#anytype.Rpc.BlockDataview.Sort.Remove.Response) - - [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error) - - [Rpc.BlockDataview.Sort.Replace](#anytype.Rpc.BlockDataview.Sort.Replace) - - [Rpc.BlockDataview.Sort.Replace.Request](#anytype.Rpc.BlockDataview.Sort.Replace.Request) - - [Rpc.BlockDataview.Sort.Replace.Response](#anytype.Rpc.BlockDataview.Sort.Replace.Response) - - [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error) - - [Rpc.BlockDataview.Sort.Sort](#anytype.Rpc.BlockDataview.Sort.Sort) - - [Rpc.BlockDataview.Sort.Sort.Request](#anytype.Rpc.BlockDataview.Sort.Sort.Request) - - [Rpc.BlockDataview.Sort.Sort.Response](#anytype.Rpc.BlockDataview.Sort.Sort.Response) - - [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error) - - [Rpc.BlockDataview.View](#anytype.Rpc.BlockDataview.View) - - [Rpc.BlockDataview.View.Create](#anytype.Rpc.BlockDataview.View.Create) - - [Rpc.BlockDataview.View.Create.Request](#anytype.Rpc.BlockDataview.View.Create.Request) - - [Rpc.BlockDataview.View.Create.Response](#anytype.Rpc.BlockDataview.View.Create.Response) - - [Rpc.BlockDataview.View.Create.Response.Error](#anytype.Rpc.BlockDataview.View.Create.Response.Error) - - [Rpc.BlockDataview.View.Delete](#anytype.Rpc.BlockDataview.View.Delete) - - [Rpc.BlockDataview.View.Delete.Request](#anytype.Rpc.BlockDataview.View.Delete.Request) - - [Rpc.BlockDataview.View.Delete.Response](#anytype.Rpc.BlockDataview.View.Delete.Response) - - [Rpc.BlockDataview.View.Delete.Response.Error](#anytype.Rpc.BlockDataview.View.Delete.Response.Error) - - [Rpc.BlockDataview.View.SetActive](#anytype.Rpc.BlockDataview.View.SetActive) - - [Rpc.BlockDataview.View.SetActive.Request](#anytype.Rpc.BlockDataview.View.SetActive.Request) - - [Rpc.BlockDataview.View.SetActive.Response](#anytype.Rpc.BlockDataview.View.SetActive.Response) - - [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error) - - [Rpc.BlockDataview.View.SetPosition](#anytype.Rpc.BlockDataview.View.SetPosition) - - [Rpc.BlockDataview.View.SetPosition.Request](#anytype.Rpc.BlockDataview.View.SetPosition.Request) - - [Rpc.BlockDataview.View.SetPosition.Response](#anytype.Rpc.BlockDataview.View.SetPosition.Response) - - [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error) - - [Rpc.BlockDataview.View.Update](#anytype.Rpc.BlockDataview.View.Update) - - [Rpc.BlockDataview.View.Update.Request](#anytype.Rpc.BlockDataview.View.Update.Request) - - [Rpc.BlockDataview.View.Update.Response](#anytype.Rpc.BlockDataview.View.Update.Response) - - [Rpc.BlockDataview.View.Update.Response.Error](#anytype.Rpc.BlockDataview.View.Update.Response.Error) - - [Rpc.BlockDataview.ViewRelation](#anytype.Rpc.BlockDataview.ViewRelation) - - [Rpc.BlockDataview.ViewRelation.Add](#anytype.Rpc.BlockDataview.ViewRelation.Add) - - [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype.Rpc.BlockDataview.ViewRelation.Add.Request) - - [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response) - - [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error) - - [Rpc.BlockDataview.ViewRelation.Remove](#anytype.Rpc.BlockDataview.ViewRelation.Remove) - - [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Request) - - [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response) - - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error) - - [Rpc.BlockDataview.ViewRelation.Replace](#anytype.Rpc.BlockDataview.ViewRelation.Replace) - - [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Request) - - [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response) - - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error) - - [Rpc.BlockDataview.ViewRelation.Sort](#anytype.Rpc.BlockDataview.ViewRelation.Sort) - - [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Request) - - [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response) - - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error) - - [Rpc.BlockDiv](#anytype.Rpc.BlockDiv) - - [Rpc.BlockDiv.ListSetStyle](#anytype.Rpc.BlockDiv.ListSetStyle) - - [Rpc.BlockDiv.ListSetStyle.Request](#anytype.Rpc.BlockDiv.ListSetStyle.Request) - - [Rpc.BlockDiv.ListSetStyle.Response](#anytype.Rpc.BlockDiv.ListSetStyle.Response) - - [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error) - - [Rpc.BlockFile](#anytype.Rpc.BlockFile) - - [Rpc.BlockFile.CreateAndUpload](#anytype.Rpc.BlockFile.CreateAndUpload) - - [Rpc.BlockFile.CreateAndUpload.Request](#anytype.Rpc.BlockFile.CreateAndUpload.Request) - - [Rpc.BlockFile.CreateAndUpload.Response](#anytype.Rpc.BlockFile.CreateAndUpload.Response) - - [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error) - - [Rpc.BlockFile.ListSetStyle](#anytype.Rpc.BlockFile.ListSetStyle) - - [Rpc.BlockFile.ListSetStyle.Request](#anytype.Rpc.BlockFile.ListSetStyle.Request) - - [Rpc.BlockFile.ListSetStyle.Response](#anytype.Rpc.BlockFile.ListSetStyle.Response) - - [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error) - - [Rpc.BlockFile.SetName](#anytype.Rpc.BlockFile.SetName) - - [Rpc.BlockFile.SetName.Request](#anytype.Rpc.BlockFile.SetName.Request) - - [Rpc.BlockFile.SetName.Response](#anytype.Rpc.BlockFile.SetName.Response) - - [Rpc.BlockFile.SetName.Response.Error](#anytype.Rpc.BlockFile.SetName.Response.Error) - - [Rpc.BlockImage](#anytype.Rpc.BlockImage) - - [Rpc.BlockImage.SetName](#anytype.Rpc.BlockImage.SetName) - - [Rpc.BlockImage.SetName.Request](#anytype.Rpc.BlockImage.SetName.Request) - - [Rpc.BlockImage.SetName.Response](#anytype.Rpc.BlockImage.SetName.Response) - - [Rpc.BlockImage.SetName.Response.Error](#anytype.Rpc.BlockImage.SetName.Response.Error) - - [Rpc.BlockImage.SetWidth](#anytype.Rpc.BlockImage.SetWidth) - - [Rpc.BlockImage.SetWidth.Request](#anytype.Rpc.BlockImage.SetWidth.Request) - - [Rpc.BlockImage.SetWidth.Response](#anytype.Rpc.BlockImage.SetWidth.Response) - - [Rpc.BlockImage.SetWidth.Response.Error](#anytype.Rpc.BlockImage.SetWidth.Response.Error) - - [Rpc.BlockLatex](#anytype.Rpc.BlockLatex) - - [Rpc.BlockLatex.SetText](#anytype.Rpc.BlockLatex.SetText) - - [Rpc.BlockLatex.SetText.Request](#anytype.Rpc.BlockLatex.SetText.Request) - - [Rpc.BlockLatex.SetText.Response](#anytype.Rpc.BlockLatex.SetText.Response) - - [Rpc.BlockLatex.SetText.Response.Error](#anytype.Rpc.BlockLatex.SetText.Response.Error) - - [Rpc.BlockLink](#anytype.Rpc.BlockLink) - - [Rpc.BlockLink.CreateWithObject](#anytype.Rpc.BlockLink.CreateWithObject) - - [Rpc.BlockLink.CreateWithObject.Request](#anytype.Rpc.BlockLink.CreateWithObject.Request) - - [Rpc.BlockLink.CreateWithObject.Response](#anytype.Rpc.BlockLink.CreateWithObject.Response) - - [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error) - - [Rpc.BlockLink.ListSetAppearance](#anytype.Rpc.BlockLink.ListSetAppearance) - - [Rpc.BlockLink.ListSetAppearance.Request](#anytype.Rpc.BlockLink.ListSetAppearance.Request) - - [Rpc.BlockLink.ListSetAppearance.Response](#anytype.Rpc.BlockLink.ListSetAppearance.Response) - - [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error) - - [Rpc.BlockRelation](#anytype.Rpc.BlockRelation) - - [Rpc.BlockRelation.Add](#anytype.Rpc.BlockRelation.Add) - - [Rpc.BlockRelation.Add.Request](#anytype.Rpc.BlockRelation.Add.Request) - - [Rpc.BlockRelation.Add.Response](#anytype.Rpc.BlockRelation.Add.Response) - - [Rpc.BlockRelation.Add.Response.Error](#anytype.Rpc.BlockRelation.Add.Response.Error) - - [Rpc.BlockRelation.SetKey](#anytype.Rpc.BlockRelation.SetKey) - - [Rpc.BlockRelation.SetKey.Request](#anytype.Rpc.BlockRelation.SetKey.Request) - - [Rpc.BlockRelation.SetKey.Response](#anytype.Rpc.BlockRelation.SetKey.Response) - - [Rpc.BlockRelation.SetKey.Response.Error](#anytype.Rpc.BlockRelation.SetKey.Response.Error) - - [Rpc.BlockTable](#anytype.Rpc.BlockTable) - - [Rpc.BlockTable.ColumnCreate](#anytype.Rpc.BlockTable.ColumnCreate) - - [Rpc.BlockTable.ColumnCreate.Request](#anytype.Rpc.BlockTable.ColumnCreate.Request) - - [Rpc.BlockTable.ColumnCreate.Response](#anytype.Rpc.BlockTable.ColumnCreate.Response) - - [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error) - - [Rpc.BlockTable.ColumnDelete](#anytype.Rpc.BlockTable.ColumnDelete) - - [Rpc.BlockTable.ColumnDelete.Request](#anytype.Rpc.BlockTable.ColumnDelete.Request) - - [Rpc.BlockTable.ColumnDelete.Response](#anytype.Rpc.BlockTable.ColumnDelete.Response) - - [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error) - - [Rpc.BlockTable.ColumnDuplicate](#anytype.Rpc.BlockTable.ColumnDuplicate) - - [Rpc.BlockTable.ColumnDuplicate.Request](#anytype.Rpc.BlockTable.ColumnDuplicate.Request) - - [Rpc.BlockTable.ColumnDuplicate.Response](#anytype.Rpc.BlockTable.ColumnDuplicate.Response) - - [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error) - - [Rpc.BlockTable.ColumnListFill](#anytype.Rpc.BlockTable.ColumnListFill) - - [Rpc.BlockTable.ColumnListFill.Request](#anytype.Rpc.BlockTable.ColumnListFill.Request) - - [Rpc.BlockTable.ColumnListFill.Response](#anytype.Rpc.BlockTable.ColumnListFill.Response) - - [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error) - - [Rpc.BlockTable.ColumnMove](#anytype.Rpc.BlockTable.ColumnMove) - - [Rpc.BlockTable.ColumnMove.Request](#anytype.Rpc.BlockTable.ColumnMove.Request) - - [Rpc.BlockTable.ColumnMove.Response](#anytype.Rpc.BlockTable.ColumnMove.Response) - - [Rpc.BlockTable.ColumnMove.Response.Error](#anytype.Rpc.BlockTable.ColumnMove.Response.Error) - - [Rpc.BlockTable.Create](#anytype.Rpc.BlockTable.Create) - - [Rpc.BlockTable.Create.Request](#anytype.Rpc.BlockTable.Create.Request) - - [Rpc.BlockTable.Create.Response](#anytype.Rpc.BlockTable.Create.Response) - - [Rpc.BlockTable.Create.Response.Error](#anytype.Rpc.BlockTable.Create.Response.Error) - - [Rpc.BlockTable.Expand](#anytype.Rpc.BlockTable.Expand) - - [Rpc.BlockTable.Expand.Request](#anytype.Rpc.BlockTable.Expand.Request) - - [Rpc.BlockTable.Expand.Response](#anytype.Rpc.BlockTable.Expand.Response) - - [Rpc.BlockTable.Expand.Response.Error](#anytype.Rpc.BlockTable.Expand.Response.Error) - - [Rpc.BlockTable.RowCreate](#anytype.Rpc.BlockTable.RowCreate) - - [Rpc.BlockTable.RowCreate.Request](#anytype.Rpc.BlockTable.RowCreate.Request) - - [Rpc.BlockTable.RowCreate.Response](#anytype.Rpc.BlockTable.RowCreate.Response) - - [Rpc.BlockTable.RowCreate.Response.Error](#anytype.Rpc.BlockTable.RowCreate.Response.Error) - - [Rpc.BlockTable.RowDelete](#anytype.Rpc.BlockTable.RowDelete) - - [Rpc.BlockTable.RowDelete.Request](#anytype.Rpc.BlockTable.RowDelete.Request) - - [Rpc.BlockTable.RowDelete.Response](#anytype.Rpc.BlockTable.RowDelete.Response) - - [Rpc.BlockTable.RowDelete.Response.Error](#anytype.Rpc.BlockTable.RowDelete.Response.Error) - - [Rpc.BlockTable.RowDuplicate](#anytype.Rpc.BlockTable.RowDuplicate) - - [Rpc.BlockTable.RowDuplicate.Request](#anytype.Rpc.BlockTable.RowDuplicate.Request) - - [Rpc.BlockTable.RowDuplicate.Response](#anytype.Rpc.BlockTable.RowDuplicate.Response) - - [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error) - - [Rpc.BlockTable.RowListClean](#anytype.Rpc.BlockTable.RowListClean) - - [Rpc.BlockTable.RowListClean.Request](#anytype.Rpc.BlockTable.RowListClean.Request) - - [Rpc.BlockTable.RowListClean.Response](#anytype.Rpc.BlockTable.RowListClean.Response) - - [Rpc.BlockTable.RowListClean.Response.Error](#anytype.Rpc.BlockTable.RowListClean.Response.Error) - - [Rpc.BlockTable.RowListFill](#anytype.Rpc.BlockTable.RowListFill) - - [Rpc.BlockTable.RowListFill.Request](#anytype.Rpc.BlockTable.RowListFill.Request) - - [Rpc.BlockTable.RowListFill.Response](#anytype.Rpc.BlockTable.RowListFill.Response) - - [Rpc.BlockTable.RowListFill.Response.Error](#anytype.Rpc.BlockTable.RowListFill.Response.Error) - - [Rpc.BlockTable.RowSetHeader](#anytype.Rpc.BlockTable.RowSetHeader) - - [Rpc.BlockTable.RowSetHeader.Request](#anytype.Rpc.BlockTable.RowSetHeader.Request) - - [Rpc.BlockTable.RowSetHeader.Response](#anytype.Rpc.BlockTable.RowSetHeader.Response) - - [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error) - - [Rpc.BlockTable.Sort](#anytype.Rpc.BlockTable.Sort) - - [Rpc.BlockTable.Sort.Request](#anytype.Rpc.BlockTable.Sort.Request) - - [Rpc.BlockTable.Sort.Response](#anytype.Rpc.BlockTable.Sort.Response) - - [Rpc.BlockTable.Sort.Response.Error](#anytype.Rpc.BlockTable.Sort.Response.Error) - - [Rpc.BlockText](#anytype.Rpc.BlockText) - - [Rpc.BlockText.ListClearContent](#anytype.Rpc.BlockText.ListClearContent) - - [Rpc.BlockText.ListClearContent.Request](#anytype.Rpc.BlockText.ListClearContent.Request) - - [Rpc.BlockText.ListClearContent.Response](#anytype.Rpc.BlockText.ListClearContent.Response) - - [Rpc.BlockText.ListClearContent.Response.Error](#anytype.Rpc.BlockText.ListClearContent.Response.Error) - - [Rpc.BlockText.ListClearStyle](#anytype.Rpc.BlockText.ListClearStyle) - - [Rpc.BlockText.ListClearStyle.Request](#anytype.Rpc.BlockText.ListClearStyle.Request) - - [Rpc.BlockText.ListClearStyle.Response](#anytype.Rpc.BlockText.ListClearStyle.Response) - - [Rpc.BlockText.ListClearStyle.Response.Error](#anytype.Rpc.BlockText.ListClearStyle.Response.Error) - - [Rpc.BlockText.ListSetColor](#anytype.Rpc.BlockText.ListSetColor) - - [Rpc.BlockText.ListSetColor.Request](#anytype.Rpc.BlockText.ListSetColor.Request) - - [Rpc.BlockText.ListSetColor.Response](#anytype.Rpc.BlockText.ListSetColor.Response) - - [Rpc.BlockText.ListSetColor.Response.Error](#anytype.Rpc.BlockText.ListSetColor.Response.Error) - - [Rpc.BlockText.ListSetMark](#anytype.Rpc.BlockText.ListSetMark) - - [Rpc.BlockText.ListSetMark.Request](#anytype.Rpc.BlockText.ListSetMark.Request) - - [Rpc.BlockText.ListSetMark.Response](#anytype.Rpc.BlockText.ListSetMark.Response) - - [Rpc.BlockText.ListSetMark.Response.Error](#anytype.Rpc.BlockText.ListSetMark.Response.Error) - - [Rpc.BlockText.ListSetStyle](#anytype.Rpc.BlockText.ListSetStyle) - - [Rpc.BlockText.ListSetStyle.Request](#anytype.Rpc.BlockText.ListSetStyle.Request) - - [Rpc.BlockText.ListSetStyle.Response](#anytype.Rpc.BlockText.ListSetStyle.Response) - - [Rpc.BlockText.ListSetStyle.Response.Error](#anytype.Rpc.BlockText.ListSetStyle.Response.Error) - - [Rpc.BlockText.SetChecked](#anytype.Rpc.BlockText.SetChecked) - - [Rpc.BlockText.SetChecked.Request](#anytype.Rpc.BlockText.SetChecked.Request) - - [Rpc.BlockText.SetChecked.Response](#anytype.Rpc.BlockText.SetChecked.Response) - - [Rpc.BlockText.SetChecked.Response.Error](#anytype.Rpc.BlockText.SetChecked.Response.Error) - - [Rpc.BlockText.SetColor](#anytype.Rpc.BlockText.SetColor) - - [Rpc.BlockText.SetColor.Request](#anytype.Rpc.BlockText.SetColor.Request) - - [Rpc.BlockText.SetColor.Response](#anytype.Rpc.BlockText.SetColor.Response) - - [Rpc.BlockText.SetColor.Response.Error](#anytype.Rpc.BlockText.SetColor.Response.Error) - - [Rpc.BlockText.SetIcon](#anytype.Rpc.BlockText.SetIcon) - - [Rpc.BlockText.SetIcon.Request](#anytype.Rpc.BlockText.SetIcon.Request) - - [Rpc.BlockText.SetIcon.Response](#anytype.Rpc.BlockText.SetIcon.Response) - - [Rpc.BlockText.SetIcon.Response.Error](#anytype.Rpc.BlockText.SetIcon.Response.Error) - - [Rpc.BlockText.SetMarks](#anytype.Rpc.BlockText.SetMarks) - - [Rpc.BlockText.SetMarks.Get](#anytype.Rpc.BlockText.SetMarks.Get) - - [Rpc.BlockText.SetMarks.Get.Request](#anytype.Rpc.BlockText.SetMarks.Get.Request) - - [Rpc.BlockText.SetMarks.Get.Response](#anytype.Rpc.BlockText.SetMarks.Get.Response) - - [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error) - - [Rpc.BlockText.SetStyle](#anytype.Rpc.BlockText.SetStyle) - - [Rpc.BlockText.SetStyle.Request](#anytype.Rpc.BlockText.SetStyle.Request) - - [Rpc.BlockText.SetStyle.Response](#anytype.Rpc.BlockText.SetStyle.Response) - - [Rpc.BlockText.SetStyle.Response.Error](#anytype.Rpc.BlockText.SetStyle.Response.Error) - - [Rpc.BlockText.SetText](#anytype.Rpc.BlockText.SetText) - - [Rpc.BlockText.SetText.Request](#anytype.Rpc.BlockText.SetText.Request) - - [Rpc.BlockText.SetText.Response](#anytype.Rpc.BlockText.SetText.Response) - - [Rpc.BlockText.SetText.Response.Error](#anytype.Rpc.BlockText.SetText.Response.Error) - - [Rpc.BlockVideo](#anytype.Rpc.BlockVideo) - - [Rpc.BlockVideo.SetName](#anytype.Rpc.BlockVideo.SetName) - - [Rpc.BlockVideo.SetName.Request](#anytype.Rpc.BlockVideo.SetName.Request) - - [Rpc.BlockVideo.SetName.Response](#anytype.Rpc.BlockVideo.SetName.Response) - - [Rpc.BlockVideo.SetName.Response.Error](#anytype.Rpc.BlockVideo.SetName.Response.Error) - - [Rpc.BlockVideo.SetWidth](#anytype.Rpc.BlockVideo.SetWidth) - - [Rpc.BlockVideo.SetWidth.Request](#anytype.Rpc.BlockVideo.SetWidth.Request) - - [Rpc.BlockVideo.SetWidth.Response](#anytype.Rpc.BlockVideo.SetWidth.Response) - - [Rpc.BlockVideo.SetWidth.Response.Error](#anytype.Rpc.BlockVideo.SetWidth.Response.Error) - - [Rpc.BlockWidget](#anytype.Rpc.BlockWidget) - - [Rpc.BlockWidget.SetLayout](#anytype.Rpc.BlockWidget.SetLayout) - - [Rpc.BlockWidget.SetLayout.Request](#anytype.Rpc.BlockWidget.SetLayout.Request) - - [Rpc.BlockWidget.SetLayout.Response](#anytype.Rpc.BlockWidget.SetLayout.Response) - - [Rpc.BlockWidget.SetLayout.Response.Error](#anytype.Rpc.BlockWidget.SetLayout.Response.Error) - - [Rpc.BlockWidget.SetLimit](#anytype.Rpc.BlockWidget.SetLimit) - - [Rpc.BlockWidget.SetLimit.Request](#anytype.Rpc.BlockWidget.SetLimit.Request) - - [Rpc.BlockWidget.SetLimit.Response](#anytype.Rpc.BlockWidget.SetLimit.Response) - - [Rpc.BlockWidget.SetLimit.Response.Error](#anytype.Rpc.BlockWidget.SetLimit.Response.Error) - - [Rpc.BlockWidget.SetTargetId](#anytype.Rpc.BlockWidget.SetTargetId) - - [Rpc.BlockWidget.SetTargetId.Request](#anytype.Rpc.BlockWidget.SetTargetId.Request) - - [Rpc.BlockWidget.SetTargetId.Response](#anytype.Rpc.BlockWidget.SetTargetId.Response) - - [Rpc.BlockWidget.SetTargetId.Response.Error](#anytype.Rpc.BlockWidget.SetTargetId.Response.Error) - - [Rpc.BlockWidget.SetViewId](#anytype.Rpc.BlockWidget.SetViewId) - - [Rpc.BlockWidget.SetViewId.Request](#anytype.Rpc.BlockWidget.SetViewId.Request) - - [Rpc.BlockWidget.SetViewId.Response](#anytype.Rpc.BlockWidget.SetViewId.Response) - - [Rpc.BlockWidget.SetViewId.Response.Error](#anytype.Rpc.BlockWidget.SetViewId.Response.Error) - - [Rpc.Debug](#anytype.Rpc.Debug) - - [Rpc.Debug.ExportLocalstore](#anytype.Rpc.Debug.ExportLocalstore) - - [Rpc.Debug.ExportLocalstore.Request](#anytype.Rpc.Debug.ExportLocalstore.Request) - - [Rpc.Debug.ExportLocalstore.Response](#anytype.Rpc.Debug.ExportLocalstore.Response) - - [Rpc.Debug.ExportLocalstore.Response.Error](#anytype.Rpc.Debug.ExportLocalstore.Response.Error) - - [Rpc.Debug.Ping](#anytype.Rpc.Debug.Ping) - - [Rpc.Debug.Ping.Request](#anytype.Rpc.Debug.Ping.Request) - - [Rpc.Debug.Ping.Response](#anytype.Rpc.Debug.Ping.Response) - - [Rpc.Debug.Ping.Response.Error](#anytype.Rpc.Debug.Ping.Response.Error) - - [Rpc.Debug.SpaceSummary](#anytype.Rpc.Debug.SpaceSummary) - - [Rpc.Debug.SpaceSummary.Request](#anytype.Rpc.Debug.SpaceSummary.Request) - - [Rpc.Debug.SpaceSummary.Response](#anytype.Rpc.Debug.SpaceSummary.Response) - - [Rpc.Debug.SpaceSummary.Response.Error](#anytype.Rpc.Debug.SpaceSummary.Response.Error) - - [Rpc.Debug.Tree](#anytype.Rpc.Debug.Tree) - - [Rpc.Debug.Tree.Request](#anytype.Rpc.Debug.Tree.Request) - - [Rpc.Debug.Tree.Response](#anytype.Rpc.Debug.Tree.Response) - - [Rpc.Debug.Tree.Response.Error](#anytype.Rpc.Debug.Tree.Response.Error) - - [Rpc.Debug.TreeHeads](#anytype.Rpc.Debug.TreeHeads) - - [Rpc.Debug.TreeHeads.Request](#anytype.Rpc.Debug.TreeHeads.Request) - - [Rpc.Debug.TreeHeads.Response](#anytype.Rpc.Debug.TreeHeads.Response) - - [Rpc.Debug.TreeHeads.Response.Error](#anytype.Rpc.Debug.TreeHeads.Response.Error) - - [Rpc.Debug.TreeInfo](#anytype.Rpc.Debug.TreeInfo) - - [Rpc.File](#anytype.Rpc.File) - - [Rpc.File.Download](#anytype.Rpc.File.Download) - - [Rpc.File.Download.Request](#anytype.Rpc.File.Download.Request) - - [Rpc.File.Download.Response](#anytype.Rpc.File.Download.Response) - - [Rpc.File.Download.Response.Error](#anytype.Rpc.File.Download.Response.Error) - - [Rpc.File.Drop](#anytype.Rpc.File.Drop) - - [Rpc.File.Drop.Request](#anytype.Rpc.File.Drop.Request) - - [Rpc.File.Drop.Response](#anytype.Rpc.File.Drop.Response) - - [Rpc.File.Drop.Response.Error](#anytype.Rpc.File.Drop.Response.Error) - - [Rpc.File.ListOffload](#anytype.Rpc.File.ListOffload) - - [Rpc.File.ListOffload.Request](#anytype.Rpc.File.ListOffload.Request) - - [Rpc.File.ListOffload.Response](#anytype.Rpc.File.ListOffload.Response) - - [Rpc.File.ListOffload.Response.Error](#anytype.Rpc.File.ListOffload.Response.Error) - - [Rpc.File.Offload](#anytype.Rpc.File.Offload) - - [Rpc.File.Offload.Request](#anytype.Rpc.File.Offload.Request) - - [Rpc.File.Offload.Response](#anytype.Rpc.File.Offload.Response) - - [Rpc.File.Offload.Response.Error](#anytype.Rpc.File.Offload.Response.Error) - - [Rpc.File.SpaceUsage](#anytype.Rpc.File.SpaceUsage) - - [Rpc.File.SpaceUsage.Request](#anytype.Rpc.File.SpaceUsage.Request) - - [Rpc.File.SpaceUsage.Response](#anytype.Rpc.File.SpaceUsage.Response) - - [Rpc.File.SpaceUsage.Response.Error](#anytype.Rpc.File.SpaceUsage.Response.Error) - - [Rpc.File.SpaceUsage.Response.Usage](#anytype.Rpc.File.SpaceUsage.Response.Usage) - - [Rpc.File.Upload](#anytype.Rpc.File.Upload) - - [Rpc.File.Upload.Request](#anytype.Rpc.File.Upload.Request) - - [Rpc.File.Upload.Response](#anytype.Rpc.File.Upload.Response) - - [Rpc.File.Upload.Response.Error](#anytype.Rpc.File.Upload.Response.Error) - - [Rpc.GenericErrorResponse](#anytype.Rpc.GenericErrorResponse) - - [Rpc.GenericErrorResponse.Error](#anytype.Rpc.GenericErrorResponse.Error) - - [Rpc.History](#anytype.Rpc.History) - - [Rpc.History.GetVersions](#anytype.Rpc.History.GetVersions) - - [Rpc.History.GetVersions.Request](#anytype.Rpc.History.GetVersions.Request) - - [Rpc.History.GetVersions.Response](#anytype.Rpc.History.GetVersions.Response) - - [Rpc.History.GetVersions.Response.Error](#anytype.Rpc.History.GetVersions.Response.Error) - - [Rpc.History.SetVersion](#anytype.Rpc.History.SetVersion) - - [Rpc.History.SetVersion.Request](#anytype.Rpc.History.SetVersion.Request) - - [Rpc.History.SetVersion.Response](#anytype.Rpc.History.SetVersion.Response) - - [Rpc.History.SetVersion.Response.Error](#anytype.Rpc.History.SetVersion.Response.Error) - - [Rpc.History.ShowVersion](#anytype.Rpc.History.ShowVersion) - - [Rpc.History.ShowVersion.Request](#anytype.Rpc.History.ShowVersion.Request) - - [Rpc.History.ShowVersion.Response](#anytype.Rpc.History.ShowVersion.Response) - - [Rpc.History.ShowVersion.Response.Error](#anytype.Rpc.History.ShowVersion.Response.Error) - - [Rpc.History.Version](#anytype.Rpc.History.Version) - - [Rpc.LinkPreview](#anytype.Rpc.LinkPreview) - - [Rpc.LinkPreview.Request](#anytype.Rpc.LinkPreview.Request) - - [Rpc.LinkPreview.Response](#anytype.Rpc.LinkPreview.Response) - - [Rpc.LinkPreview.Response.Error](#anytype.Rpc.LinkPreview.Response.Error) - - [Rpc.Log](#anytype.Rpc.Log) - - [Rpc.Log.Send](#anytype.Rpc.Log.Send) - - [Rpc.Log.Send.Request](#anytype.Rpc.Log.Send.Request) - - [Rpc.Log.Send.Response](#anytype.Rpc.Log.Send.Response) - - [Rpc.Log.Send.Response.Error](#anytype.Rpc.Log.Send.Response.Error) - - [Rpc.Metrics](#anytype.Rpc.Metrics) - - [Rpc.Metrics.SetParameters](#anytype.Rpc.Metrics.SetParameters) - - [Rpc.Metrics.SetParameters.Request](#anytype.Rpc.Metrics.SetParameters.Request) - - [Rpc.Metrics.SetParameters.Response](#anytype.Rpc.Metrics.SetParameters.Response) - - [Rpc.Metrics.SetParameters.Response.Error](#anytype.Rpc.Metrics.SetParameters.Response.Error) - - [Rpc.Navigation](#anytype.Rpc.Navigation) - - [Rpc.Navigation.GetObjectInfoWithLinks](#anytype.Rpc.Navigation.GetObjectInfoWithLinks) - - [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Request) - - [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response) - - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error) - - [Rpc.Navigation.ListObjects](#anytype.Rpc.Navigation.ListObjects) - - [Rpc.Navigation.ListObjects.Request](#anytype.Rpc.Navigation.ListObjects.Request) - - [Rpc.Navigation.ListObjects.Response](#anytype.Rpc.Navigation.ListObjects.Response) - - [Rpc.Navigation.ListObjects.Response.Error](#anytype.Rpc.Navigation.ListObjects.Response.Error) - - [Rpc.Object](#anytype.Rpc.Object) - - [Rpc.Object.ApplyTemplate](#anytype.Rpc.Object.ApplyTemplate) - - [Rpc.Object.ApplyTemplate.Request](#anytype.Rpc.Object.ApplyTemplate.Request) - - [Rpc.Object.ApplyTemplate.Response](#anytype.Rpc.Object.ApplyTemplate.Response) - - [Rpc.Object.ApplyTemplate.Response.Error](#anytype.Rpc.Object.ApplyTemplate.Response.Error) - - [Rpc.Object.BookmarkFetch](#anytype.Rpc.Object.BookmarkFetch) - - [Rpc.Object.BookmarkFetch.Request](#anytype.Rpc.Object.BookmarkFetch.Request) - - [Rpc.Object.BookmarkFetch.Response](#anytype.Rpc.Object.BookmarkFetch.Response) - - [Rpc.Object.BookmarkFetch.Response.Error](#anytype.Rpc.Object.BookmarkFetch.Response.Error) - - [Rpc.Object.Close](#anytype.Rpc.Object.Close) - - [Rpc.Object.Close.Request](#anytype.Rpc.Object.Close.Request) - - [Rpc.Object.Close.Response](#anytype.Rpc.Object.Close.Response) - - [Rpc.Object.Close.Response.Error](#anytype.Rpc.Object.Close.Response.Error) - - [Rpc.Object.Create](#anytype.Rpc.Object.Create) - - [Rpc.Object.Create.Request](#anytype.Rpc.Object.Create.Request) - - [Rpc.Object.Create.Response](#anytype.Rpc.Object.Create.Response) - - [Rpc.Object.Create.Response.Error](#anytype.Rpc.Object.Create.Response.Error) - - [Rpc.Object.CreateBookmark](#anytype.Rpc.Object.CreateBookmark) - - [Rpc.Object.CreateBookmark.Request](#anytype.Rpc.Object.CreateBookmark.Request) - - [Rpc.Object.CreateBookmark.Response](#anytype.Rpc.Object.CreateBookmark.Response) - - [Rpc.Object.CreateBookmark.Response.Error](#anytype.Rpc.Object.CreateBookmark.Response.Error) - - [Rpc.Object.CreateObjectType](#anytype.Rpc.Object.CreateObjectType) - - [Rpc.Object.CreateObjectType.Request](#anytype.Rpc.Object.CreateObjectType.Request) - - [Rpc.Object.CreateObjectType.Response](#anytype.Rpc.Object.CreateObjectType.Response) - - [Rpc.Object.CreateObjectType.Response.Error](#anytype.Rpc.Object.CreateObjectType.Response.Error) - - [Rpc.Object.CreateRelation](#anytype.Rpc.Object.CreateRelation) - - [Rpc.Object.CreateRelation.Request](#anytype.Rpc.Object.CreateRelation.Request) - - [Rpc.Object.CreateRelation.Response](#anytype.Rpc.Object.CreateRelation.Response) - - [Rpc.Object.CreateRelation.Response.Error](#anytype.Rpc.Object.CreateRelation.Response.Error) - - [Rpc.Object.CreateRelationOption](#anytype.Rpc.Object.CreateRelationOption) - - [Rpc.Object.CreateRelationOption.Request](#anytype.Rpc.Object.CreateRelationOption.Request) - - [Rpc.Object.CreateRelationOption.Response](#anytype.Rpc.Object.CreateRelationOption.Response) - - [Rpc.Object.CreateRelationOption.Response.Error](#anytype.Rpc.Object.CreateRelationOption.Response.Error) - - [Rpc.Object.CreateSet](#anytype.Rpc.Object.CreateSet) - - [Rpc.Object.CreateSet.Request](#anytype.Rpc.Object.CreateSet.Request) - - [Rpc.Object.CreateSet.Response](#anytype.Rpc.Object.CreateSet.Response) - - [Rpc.Object.CreateSet.Response.Error](#anytype.Rpc.Object.CreateSet.Response.Error) - - [Rpc.Object.Duplicate](#anytype.Rpc.Object.Duplicate) - - [Rpc.Object.Duplicate.Request](#anytype.Rpc.Object.Duplicate.Request) - - [Rpc.Object.Duplicate.Response](#anytype.Rpc.Object.Duplicate.Response) - - [Rpc.Object.Duplicate.Response.Error](#anytype.Rpc.Object.Duplicate.Response.Error) - - [Rpc.Object.Graph](#anytype.Rpc.Object.Graph) - - [Rpc.Object.Graph.Edge](#anytype.Rpc.Object.Graph.Edge) - - [Rpc.Object.Graph.Request](#anytype.Rpc.Object.Graph.Request) - - [Rpc.Object.Graph.Response](#anytype.Rpc.Object.Graph.Response) - - [Rpc.Object.Graph.Response.Error](#anytype.Rpc.Object.Graph.Response.Error) - - [Rpc.Object.GroupsSubscribe](#anytype.Rpc.Object.GroupsSubscribe) - - [Rpc.Object.GroupsSubscribe.Request](#anytype.Rpc.Object.GroupsSubscribe.Request) - - [Rpc.Object.GroupsSubscribe.Response](#anytype.Rpc.Object.GroupsSubscribe.Response) - - [Rpc.Object.GroupsSubscribe.Response.Error](#anytype.Rpc.Object.GroupsSubscribe.Response.Error) - - [Rpc.Object.Import](#anytype.Rpc.Object.Import) - - [Rpc.Object.Import.Notion](#anytype.Rpc.Object.Import.Notion) - - [Rpc.Object.Import.Notion.ValidateToken](#anytype.Rpc.Object.Import.Notion.ValidateToken) - - [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype.Rpc.Object.Import.Notion.ValidateToken.Request) - - [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response) - - [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error) - - [Rpc.Object.Import.Request](#anytype.Rpc.Object.Import.Request) - - [Rpc.Object.Import.Request.BookmarksParams](#anytype.Rpc.Object.Import.Request.BookmarksParams) - - [Rpc.Object.Import.Request.CsvParams](#anytype.Rpc.Object.Import.Request.CsvParams) - - [Rpc.Object.Import.Request.HtmlParams](#anytype.Rpc.Object.Import.Request.HtmlParams) - - [Rpc.Object.Import.Request.MarkdownParams](#anytype.Rpc.Object.Import.Request.MarkdownParams) - - [Rpc.Object.Import.Request.NotionParams](#anytype.Rpc.Object.Import.Request.NotionParams) - - [Rpc.Object.Import.Request.PbParams](#anytype.Rpc.Object.Import.Request.PbParams) - - [Rpc.Object.Import.Request.Snapshot](#anytype.Rpc.Object.Import.Request.Snapshot) - - [Rpc.Object.Import.Request.TxtParams](#anytype.Rpc.Object.Import.Request.TxtParams) - - [Rpc.Object.Import.Response](#anytype.Rpc.Object.Import.Response) - - [Rpc.Object.Import.Response.Error](#anytype.Rpc.Object.Import.Response.Error) - - [Rpc.Object.ImportList](#anytype.Rpc.Object.ImportList) - - [Rpc.Object.ImportList.ImportResponse](#anytype.Rpc.Object.ImportList.ImportResponse) - - [Rpc.Object.ImportList.Request](#anytype.Rpc.Object.ImportList.Request) - - [Rpc.Object.ImportList.Response](#anytype.Rpc.Object.ImportList.Response) - - [Rpc.Object.ImportList.Response.Error](#anytype.Rpc.Object.ImportList.Response.Error) - - [Rpc.Object.ImportUseCase](#anytype.Rpc.Object.ImportUseCase) - - [Rpc.Object.ImportUseCase.Request](#anytype.Rpc.Object.ImportUseCase.Request) - - [Rpc.Object.ImportUseCase.Response](#anytype.Rpc.Object.ImportUseCase.Response) - - [Rpc.Object.ImportUseCase.Response.Error](#anytype.Rpc.Object.ImportUseCase.Response.Error) - - [Rpc.Object.ListDelete](#anytype.Rpc.Object.ListDelete) - - [Rpc.Object.ListDelete.Request](#anytype.Rpc.Object.ListDelete.Request) - - [Rpc.Object.ListDelete.Response](#anytype.Rpc.Object.ListDelete.Response) - - [Rpc.Object.ListDelete.Response.Error](#anytype.Rpc.Object.ListDelete.Response.Error) - - [Rpc.Object.ListDuplicate](#anytype.Rpc.Object.ListDuplicate) - - [Rpc.Object.ListDuplicate.Request](#anytype.Rpc.Object.ListDuplicate.Request) - - [Rpc.Object.ListDuplicate.Response](#anytype.Rpc.Object.ListDuplicate.Response) - - [Rpc.Object.ListDuplicate.Response.Error](#anytype.Rpc.Object.ListDuplicate.Response.Error) - - [Rpc.Object.ListExport](#anytype.Rpc.Object.ListExport) - - [Rpc.Object.ListExport.Request](#anytype.Rpc.Object.ListExport.Request) - - [Rpc.Object.ListExport.Response](#anytype.Rpc.Object.ListExport.Response) - - [Rpc.Object.ListExport.Response.Error](#anytype.Rpc.Object.ListExport.Response.Error) - - [Rpc.Object.ListSetIsArchived](#anytype.Rpc.Object.ListSetIsArchived) - - [Rpc.Object.ListSetIsArchived.Request](#anytype.Rpc.Object.ListSetIsArchived.Request) - - [Rpc.Object.ListSetIsArchived.Response](#anytype.Rpc.Object.ListSetIsArchived.Response) - - [Rpc.Object.ListSetIsArchived.Response.Error](#anytype.Rpc.Object.ListSetIsArchived.Response.Error) - - [Rpc.Object.ListSetIsFavorite](#anytype.Rpc.Object.ListSetIsFavorite) - - [Rpc.Object.ListSetIsFavorite.Request](#anytype.Rpc.Object.ListSetIsFavorite.Request) - - [Rpc.Object.ListSetIsFavorite.Response](#anytype.Rpc.Object.ListSetIsFavorite.Response) - - [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error) - - [Rpc.Object.Open](#anytype.Rpc.Object.Open) - - [Rpc.Object.Open.Request](#anytype.Rpc.Object.Open.Request) - - [Rpc.Object.Open.Response](#anytype.Rpc.Object.Open.Response) - - [Rpc.Object.Open.Response.Error](#anytype.Rpc.Object.Open.Response.Error) - - [Rpc.Object.OpenBreadcrumbs](#anytype.Rpc.Object.OpenBreadcrumbs) - - [Rpc.Object.OpenBreadcrumbs.Request](#anytype.Rpc.Object.OpenBreadcrumbs.Request) - - [Rpc.Object.OpenBreadcrumbs.Response](#anytype.Rpc.Object.OpenBreadcrumbs.Response) - - [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error) - - [Rpc.Object.Redo](#anytype.Rpc.Object.Redo) - - [Rpc.Object.Redo.Request](#anytype.Rpc.Object.Redo.Request) - - [Rpc.Object.Redo.Response](#anytype.Rpc.Object.Redo.Response) - - [Rpc.Object.Redo.Response.Error](#anytype.Rpc.Object.Redo.Response.Error) - - [Rpc.Object.Search](#anytype.Rpc.Object.Search) - - [Rpc.Object.Search.Request](#anytype.Rpc.Object.Search.Request) - - [Rpc.Object.Search.Response](#anytype.Rpc.Object.Search.Response) - - [Rpc.Object.Search.Response.Error](#anytype.Rpc.Object.Search.Response.Error) - - [Rpc.Object.SearchSubscribe](#anytype.Rpc.Object.SearchSubscribe) - - [Rpc.Object.SearchSubscribe.Request](#anytype.Rpc.Object.SearchSubscribe.Request) - - [Rpc.Object.SearchSubscribe.Response](#anytype.Rpc.Object.SearchSubscribe.Response) - - [Rpc.Object.SearchSubscribe.Response.Error](#anytype.Rpc.Object.SearchSubscribe.Response.Error) - - [Rpc.Object.SearchUnsubscribe](#anytype.Rpc.Object.SearchUnsubscribe) - - [Rpc.Object.SearchUnsubscribe.Request](#anytype.Rpc.Object.SearchUnsubscribe.Request) - - [Rpc.Object.SearchUnsubscribe.Response](#anytype.Rpc.Object.SearchUnsubscribe.Response) - - [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error) - - [Rpc.Object.SetBreadcrumbs](#anytype.Rpc.Object.SetBreadcrumbs) - - [Rpc.Object.SetBreadcrumbs.Request](#anytype.Rpc.Object.SetBreadcrumbs.Request) - - [Rpc.Object.SetBreadcrumbs.Response](#anytype.Rpc.Object.SetBreadcrumbs.Response) - - [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error) - - [Rpc.Object.SetDetails](#anytype.Rpc.Object.SetDetails) - - [Rpc.Object.SetDetails.Detail](#anytype.Rpc.Object.SetDetails.Detail) - - [Rpc.Object.SetDetails.Request](#anytype.Rpc.Object.SetDetails.Request) - - [Rpc.Object.SetDetails.Response](#anytype.Rpc.Object.SetDetails.Response) - - [Rpc.Object.SetDetails.Response.Error](#anytype.Rpc.Object.SetDetails.Response.Error) - - [Rpc.Object.SetInternalFlags](#anytype.Rpc.Object.SetInternalFlags) - - [Rpc.Object.SetInternalFlags.Request](#anytype.Rpc.Object.SetInternalFlags.Request) - - [Rpc.Object.SetInternalFlags.Response](#anytype.Rpc.Object.SetInternalFlags.Response) - - [Rpc.Object.SetInternalFlags.Response.Error](#anytype.Rpc.Object.SetInternalFlags.Response.Error) - - [Rpc.Object.SetIsArchived](#anytype.Rpc.Object.SetIsArchived) - - [Rpc.Object.SetIsArchived.Request](#anytype.Rpc.Object.SetIsArchived.Request) - - [Rpc.Object.SetIsArchived.Response](#anytype.Rpc.Object.SetIsArchived.Response) - - [Rpc.Object.SetIsArchived.Response.Error](#anytype.Rpc.Object.SetIsArchived.Response.Error) - - [Rpc.Object.SetIsFavorite](#anytype.Rpc.Object.SetIsFavorite) - - [Rpc.Object.SetIsFavorite.Request](#anytype.Rpc.Object.SetIsFavorite.Request) - - [Rpc.Object.SetIsFavorite.Response](#anytype.Rpc.Object.SetIsFavorite.Response) - - [Rpc.Object.SetIsFavorite.Response.Error](#anytype.Rpc.Object.SetIsFavorite.Response.Error) - - [Rpc.Object.SetLayout](#anytype.Rpc.Object.SetLayout) - - [Rpc.Object.SetLayout.Request](#anytype.Rpc.Object.SetLayout.Request) - - [Rpc.Object.SetLayout.Response](#anytype.Rpc.Object.SetLayout.Response) - - [Rpc.Object.SetLayout.Response.Error](#anytype.Rpc.Object.SetLayout.Response.Error) - - [Rpc.Object.SetObjectType](#anytype.Rpc.Object.SetObjectType) - - [Rpc.Object.SetObjectType.Request](#anytype.Rpc.Object.SetObjectType.Request) - - [Rpc.Object.SetObjectType.Response](#anytype.Rpc.Object.SetObjectType.Response) - - [Rpc.Object.SetObjectType.Response.Error](#anytype.Rpc.Object.SetObjectType.Response.Error) - - [Rpc.Object.SetSource](#anytype.Rpc.Object.SetSource) - - [Rpc.Object.SetSource.Request](#anytype.Rpc.Object.SetSource.Request) - - [Rpc.Object.SetSource.Response](#anytype.Rpc.Object.SetSource.Response) - - [Rpc.Object.SetSource.Response.Error](#anytype.Rpc.Object.SetSource.Response.Error) - - [Rpc.Object.ShareByLink](#anytype.Rpc.Object.ShareByLink) - - [Rpc.Object.ShareByLink.Request](#anytype.Rpc.Object.ShareByLink.Request) - - [Rpc.Object.ShareByLink.Response](#anytype.Rpc.Object.ShareByLink.Response) - - [Rpc.Object.ShareByLink.Response.Error](#anytype.Rpc.Object.ShareByLink.Response.Error) - - [Rpc.Object.Show](#anytype.Rpc.Object.Show) - - [Rpc.Object.Show.Request](#anytype.Rpc.Object.Show.Request) - - [Rpc.Object.Show.Response](#anytype.Rpc.Object.Show.Response) - - [Rpc.Object.Show.Response.Error](#anytype.Rpc.Object.Show.Response.Error) - - [Rpc.Object.SubscribeIds](#anytype.Rpc.Object.SubscribeIds) - - [Rpc.Object.SubscribeIds.Request](#anytype.Rpc.Object.SubscribeIds.Request) - - [Rpc.Object.SubscribeIds.Response](#anytype.Rpc.Object.SubscribeIds.Response) - - [Rpc.Object.SubscribeIds.Response.Error](#anytype.Rpc.Object.SubscribeIds.Response.Error) - - [Rpc.Object.ToBookmark](#anytype.Rpc.Object.ToBookmark) - - [Rpc.Object.ToBookmark.Request](#anytype.Rpc.Object.ToBookmark.Request) - - [Rpc.Object.ToBookmark.Response](#anytype.Rpc.Object.ToBookmark.Response) - - [Rpc.Object.ToBookmark.Response.Error](#anytype.Rpc.Object.ToBookmark.Response.Error) - - [Rpc.Object.ToCollection](#anytype.Rpc.Object.ToCollection) - - [Rpc.Object.ToCollection.Request](#anytype.Rpc.Object.ToCollection.Request) - - [Rpc.Object.ToCollection.Response](#anytype.Rpc.Object.ToCollection.Response) - - [Rpc.Object.ToCollection.Response.Error](#anytype.Rpc.Object.ToCollection.Response.Error) - - [Rpc.Object.ToSet](#anytype.Rpc.Object.ToSet) - - [Rpc.Object.ToSet.Request](#anytype.Rpc.Object.ToSet.Request) - - [Rpc.Object.ToSet.Response](#anytype.Rpc.Object.ToSet.Response) - - [Rpc.Object.ToSet.Response.Error](#anytype.Rpc.Object.ToSet.Response.Error) - - [Rpc.Object.Undo](#anytype.Rpc.Object.Undo) - - [Rpc.Object.Undo.Request](#anytype.Rpc.Object.Undo.Request) - - [Rpc.Object.Undo.Response](#anytype.Rpc.Object.Undo.Response) - - [Rpc.Object.Undo.Response.Error](#anytype.Rpc.Object.Undo.Response.Error) - - [Rpc.Object.UndoRedoCounter](#anytype.Rpc.Object.UndoRedoCounter) - - [Rpc.Object.WorkspaceSetDashboard](#anytype.Rpc.Object.WorkspaceSetDashboard) - - [Rpc.Object.WorkspaceSetDashboard.Request](#anytype.Rpc.Object.WorkspaceSetDashboard.Request) - - [Rpc.Object.WorkspaceSetDashboard.Response](#anytype.Rpc.Object.WorkspaceSetDashboard.Response) - - [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error) - - [Rpc.ObjectCollection](#anytype.Rpc.ObjectCollection) - - [Rpc.ObjectCollection.Add](#anytype.Rpc.ObjectCollection.Add) - - [Rpc.ObjectCollection.Add.Request](#anytype.Rpc.ObjectCollection.Add.Request) - - [Rpc.ObjectCollection.Add.Response](#anytype.Rpc.ObjectCollection.Add.Response) - - [Rpc.ObjectCollection.Add.Response.Error](#anytype.Rpc.ObjectCollection.Add.Response.Error) - - [Rpc.ObjectCollection.Remove](#anytype.Rpc.ObjectCollection.Remove) - - [Rpc.ObjectCollection.Remove.Request](#anytype.Rpc.ObjectCollection.Remove.Request) - - [Rpc.ObjectCollection.Remove.Response](#anytype.Rpc.ObjectCollection.Remove.Response) - - [Rpc.ObjectCollection.Remove.Response.Error](#anytype.Rpc.ObjectCollection.Remove.Response.Error) - - [Rpc.ObjectCollection.Sort](#anytype.Rpc.ObjectCollection.Sort) - - [Rpc.ObjectCollection.Sort.Request](#anytype.Rpc.ObjectCollection.Sort.Request) - - [Rpc.ObjectCollection.Sort.Response](#anytype.Rpc.ObjectCollection.Sort.Response) - - [Rpc.ObjectCollection.Sort.Response.Error](#anytype.Rpc.ObjectCollection.Sort.Response.Error) - - [Rpc.ObjectRelation](#anytype.Rpc.ObjectRelation) - - [Rpc.ObjectRelation.Add](#anytype.Rpc.ObjectRelation.Add) - - [Rpc.ObjectRelation.Add.Request](#anytype.Rpc.ObjectRelation.Add.Request) - - [Rpc.ObjectRelation.Add.Response](#anytype.Rpc.ObjectRelation.Add.Response) - - [Rpc.ObjectRelation.Add.Response.Error](#anytype.Rpc.ObjectRelation.Add.Response.Error) - - [Rpc.ObjectRelation.AddFeatured](#anytype.Rpc.ObjectRelation.AddFeatured) - - [Rpc.ObjectRelation.AddFeatured.Request](#anytype.Rpc.ObjectRelation.AddFeatured.Request) - - [Rpc.ObjectRelation.AddFeatured.Response](#anytype.Rpc.ObjectRelation.AddFeatured.Response) - - [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error) - - [Rpc.ObjectRelation.Delete](#anytype.Rpc.ObjectRelation.Delete) - - [Rpc.ObjectRelation.Delete.Request](#anytype.Rpc.ObjectRelation.Delete.Request) - - [Rpc.ObjectRelation.Delete.Response](#anytype.Rpc.ObjectRelation.Delete.Response) - - [Rpc.ObjectRelation.Delete.Response.Error](#anytype.Rpc.ObjectRelation.Delete.Response.Error) - - [Rpc.ObjectRelation.ListAvailable](#anytype.Rpc.ObjectRelation.ListAvailable) - - [Rpc.ObjectRelation.ListAvailable.Request](#anytype.Rpc.ObjectRelation.ListAvailable.Request) - - [Rpc.ObjectRelation.ListAvailable.Response](#anytype.Rpc.ObjectRelation.ListAvailable.Response) - - [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error) - - [Rpc.ObjectRelation.RemoveFeatured](#anytype.Rpc.ObjectRelation.RemoveFeatured) - - [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype.Rpc.ObjectRelation.RemoveFeatured.Request) - - [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response) - - [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error) - - [Rpc.ObjectType](#anytype.Rpc.ObjectType) - - [Rpc.ObjectType.Relation](#anytype.Rpc.ObjectType.Relation) - - [Rpc.ObjectType.Relation.Add](#anytype.Rpc.ObjectType.Relation.Add) - - [Rpc.ObjectType.Relation.Add.Request](#anytype.Rpc.ObjectType.Relation.Add.Request) - - [Rpc.ObjectType.Relation.Add.Response](#anytype.Rpc.ObjectType.Relation.Add.Response) - - [Rpc.ObjectType.Relation.Add.Response.Error](#anytype.Rpc.ObjectType.Relation.Add.Response.Error) - - [Rpc.ObjectType.Relation.List](#anytype.Rpc.ObjectType.Relation.List) - - [Rpc.ObjectType.Relation.List.Request](#anytype.Rpc.ObjectType.Relation.List.Request) - - [Rpc.ObjectType.Relation.List.Response](#anytype.Rpc.ObjectType.Relation.List.Response) - - [Rpc.ObjectType.Relation.List.Response.Error](#anytype.Rpc.ObjectType.Relation.List.Response.Error) - - [Rpc.ObjectType.Relation.Remove](#anytype.Rpc.ObjectType.Relation.Remove) - - [Rpc.ObjectType.Relation.Remove.Request](#anytype.Rpc.ObjectType.Relation.Remove.Request) - - [Rpc.ObjectType.Relation.Remove.Response](#anytype.Rpc.ObjectType.Relation.Remove.Response) - - [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error) - - [Rpc.Process](#anytype.Rpc.Process) - - [Rpc.Process.Cancel](#anytype.Rpc.Process.Cancel) - - [Rpc.Process.Cancel.Request](#anytype.Rpc.Process.Cancel.Request) - - [Rpc.Process.Cancel.Response](#anytype.Rpc.Process.Cancel.Response) - - [Rpc.Process.Cancel.Response.Error](#anytype.Rpc.Process.Cancel.Response.Error) - - [Rpc.Relation](#anytype.Rpc.Relation) - - [Rpc.Relation.ListRemoveOption](#anytype.Rpc.Relation.ListRemoveOption) - - [Rpc.Relation.ListRemoveOption.Request](#anytype.Rpc.Relation.ListRemoveOption.Request) - - [Rpc.Relation.ListRemoveOption.Response](#anytype.Rpc.Relation.ListRemoveOption.Response) - - [Rpc.Relation.ListRemoveOption.Response.Error](#anytype.Rpc.Relation.ListRemoveOption.Response.Error) - - [Rpc.Relation.Options](#anytype.Rpc.Relation.Options) - - [Rpc.Relation.Options.Request](#anytype.Rpc.Relation.Options.Request) - - [Rpc.Relation.Options.Response](#anytype.Rpc.Relation.Options.Response) - - [Rpc.Relation.Options.Response.Error](#anytype.Rpc.Relation.Options.Response.Error) - - [Rpc.Template](#anytype.Rpc.Template) - - [Rpc.Template.Clone](#anytype.Rpc.Template.Clone) - - [Rpc.Template.Clone.Request](#anytype.Rpc.Template.Clone.Request) - - [Rpc.Template.Clone.Response](#anytype.Rpc.Template.Clone.Response) - - [Rpc.Template.Clone.Response.Error](#anytype.Rpc.Template.Clone.Response.Error) - - [Rpc.Template.CreateFromObject](#anytype.Rpc.Template.CreateFromObject) - - [Rpc.Template.CreateFromObject.Request](#anytype.Rpc.Template.CreateFromObject.Request) - - [Rpc.Template.CreateFromObject.Response](#anytype.Rpc.Template.CreateFromObject.Response) - - [Rpc.Template.CreateFromObject.Response.Error](#anytype.Rpc.Template.CreateFromObject.Response.Error) - - [Rpc.Template.CreateFromObjectType](#anytype.Rpc.Template.CreateFromObjectType) - - [Rpc.Template.CreateFromObjectType.Request](#anytype.Rpc.Template.CreateFromObjectType.Request) - - [Rpc.Template.CreateFromObjectType.Response](#anytype.Rpc.Template.CreateFromObjectType.Response) - - [Rpc.Template.CreateFromObjectType.Response.Error](#anytype.Rpc.Template.CreateFromObjectType.Response.Error) - - [Rpc.Template.ExportAll](#anytype.Rpc.Template.ExportAll) - - [Rpc.Template.ExportAll.Request](#anytype.Rpc.Template.ExportAll.Request) - - [Rpc.Template.ExportAll.Response](#anytype.Rpc.Template.ExportAll.Response) - - [Rpc.Template.ExportAll.Response.Error](#anytype.Rpc.Template.ExportAll.Response.Error) - - [Rpc.Unsplash](#anytype.Rpc.Unsplash) - - [Rpc.Unsplash.Download](#anytype.Rpc.Unsplash.Download) - - [Rpc.Unsplash.Download.Request](#anytype.Rpc.Unsplash.Download.Request) - - [Rpc.Unsplash.Download.Response](#anytype.Rpc.Unsplash.Download.Response) - - [Rpc.Unsplash.Download.Response.Error](#anytype.Rpc.Unsplash.Download.Response.Error) - - [Rpc.Unsplash.Search](#anytype.Rpc.Unsplash.Search) - - [Rpc.Unsplash.Search.Request](#anytype.Rpc.Unsplash.Search.Request) - - [Rpc.Unsplash.Search.Response](#anytype.Rpc.Unsplash.Search.Response) - - [Rpc.Unsplash.Search.Response.Error](#anytype.Rpc.Unsplash.Search.Response.Error) - - [Rpc.Unsplash.Search.Response.Picture](#anytype.Rpc.Unsplash.Search.Response.Picture) - - [Rpc.UserData](#anytype.Rpc.UserData) - - [Rpc.UserData.Dump](#anytype.Rpc.UserData.Dump) - - [Rpc.UserData.Dump.Request](#anytype.Rpc.UserData.Dump.Request) - - [Rpc.UserData.Dump.Response](#anytype.Rpc.UserData.Dump.Response) - - [Rpc.UserData.Dump.Response.Error](#anytype.Rpc.UserData.Dump.Response.Error) - - [Rpc.Wallet](#anytype.Rpc.Wallet) - - [Rpc.Wallet.CloseSession](#anytype.Rpc.Wallet.CloseSession) - - [Rpc.Wallet.CloseSession.Request](#anytype.Rpc.Wallet.CloseSession.Request) - - [Rpc.Wallet.CloseSession.Response](#anytype.Rpc.Wallet.CloseSession.Response) - - [Rpc.Wallet.CloseSession.Response.Error](#anytype.Rpc.Wallet.CloseSession.Response.Error) - - [Rpc.Wallet.Convert](#anytype.Rpc.Wallet.Convert) - - [Rpc.Wallet.Convert.Request](#anytype.Rpc.Wallet.Convert.Request) - - [Rpc.Wallet.Convert.Response](#anytype.Rpc.Wallet.Convert.Response) - - [Rpc.Wallet.Convert.Response.Error](#anytype.Rpc.Wallet.Convert.Response.Error) - - [Rpc.Wallet.Create](#anytype.Rpc.Wallet.Create) - - [Rpc.Wallet.Create.Request](#anytype.Rpc.Wallet.Create.Request) - - [Rpc.Wallet.Create.Response](#anytype.Rpc.Wallet.Create.Response) - - [Rpc.Wallet.Create.Response.Error](#anytype.Rpc.Wallet.Create.Response.Error) - - [Rpc.Wallet.CreateSession](#anytype.Rpc.Wallet.CreateSession) - - [Rpc.Wallet.CreateSession.Request](#anytype.Rpc.Wallet.CreateSession.Request) - - [Rpc.Wallet.CreateSession.Response](#anytype.Rpc.Wallet.CreateSession.Response) - - [Rpc.Wallet.CreateSession.Response.Error](#anytype.Rpc.Wallet.CreateSession.Response.Error) - - [Rpc.Wallet.Recover](#anytype.Rpc.Wallet.Recover) - - [Rpc.Wallet.Recover.Request](#anytype.Rpc.Wallet.Recover.Request) - - [Rpc.Wallet.Recover.Response](#anytype.Rpc.Wallet.Recover.Response) - - [Rpc.Wallet.Recover.Response.Error](#anytype.Rpc.Wallet.Recover.Response.Error) - - [Rpc.Workspace](#anytype.Rpc.Workspace) - - [Rpc.Workspace.Create](#anytype.Rpc.Workspace.Create) - - [Rpc.Workspace.Create.Request](#anytype.Rpc.Workspace.Create.Request) - - [Rpc.Workspace.Create.Response](#anytype.Rpc.Workspace.Create.Response) - - [Rpc.Workspace.Create.Response.Error](#anytype.Rpc.Workspace.Create.Response.Error) - - [Rpc.Workspace.Export](#anytype.Rpc.Workspace.Export) - - [Rpc.Workspace.Export.Request](#anytype.Rpc.Workspace.Export.Request) - - [Rpc.Workspace.Export.Response](#anytype.Rpc.Workspace.Export.Response) - - [Rpc.Workspace.Export.Response.Error](#anytype.Rpc.Workspace.Export.Response.Error) - - [Rpc.Workspace.GetAll](#anytype.Rpc.Workspace.GetAll) - - [Rpc.Workspace.GetAll.Request](#anytype.Rpc.Workspace.GetAll.Request) - - [Rpc.Workspace.GetAll.Response](#anytype.Rpc.Workspace.GetAll.Response) - - [Rpc.Workspace.GetAll.Response.Error](#anytype.Rpc.Workspace.GetAll.Response.Error) - - [Rpc.Workspace.GetCurrent](#anytype.Rpc.Workspace.GetCurrent) - - [Rpc.Workspace.GetCurrent.Request](#anytype.Rpc.Workspace.GetCurrent.Request) - - [Rpc.Workspace.GetCurrent.Response](#anytype.Rpc.Workspace.GetCurrent.Response) - - [Rpc.Workspace.GetCurrent.Response.Error](#anytype.Rpc.Workspace.GetCurrent.Response.Error) - - [Rpc.Workspace.Object](#anytype.Rpc.Workspace.Object) - - [Rpc.Workspace.Object.Add](#anytype.Rpc.Workspace.Object.Add) - - [Rpc.Workspace.Object.Add.Request](#anytype.Rpc.Workspace.Object.Add.Request) - - [Rpc.Workspace.Object.Add.Response](#anytype.Rpc.Workspace.Object.Add.Response) - - [Rpc.Workspace.Object.Add.Response.Error](#anytype.Rpc.Workspace.Object.Add.Response.Error) - - [Rpc.Workspace.Object.ListAdd](#anytype.Rpc.Workspace.Object.ListAdd) - - [Rpc.Workspace.Object.ListAdd.Request](#anytype.Rpc.Workspace.Object.ListAdd.Request) - - [Rpc.Workspace.Object.ListAdd.Response](#anytype.Rpc.Workspace.Object.ListAdd.Response) - - [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error) - - [Rpc.Workspace.Object.ListRemove](#anytype.Rpc.Workspace.Object.ListRemove) - - [Rpc.Workspace.Object.ListRemove.Request](#anytype.Rpc.Workspace.Object.ListRemove.Request) - - [Rpc.Workspace.Object.ListRemove.Response](#anytype.Rpc.Workspace.Object.ListRemove.Response) - - [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error) - - [Rpc.Workspace.Select](#anytype.Rpc.Workspace.Select) - - [Rpc.Workspace.Select.Request](#anytype.Rpc.Workspace.Select.Request) - - [Rpc.Workspace.Select.Response](#anytype.Rpc.Workspace.Select.Response) - - [Rpc.Workspace.Select.Response.Error](#anytype.Rpc.Workspace.Select.Response.Error) - - [Rpc.Workspace.SetIsHighlighted](#anytype.Rpc.Workspace.SetIsHighlighted) - - [Rpc.Workspace.SetIsHighlighted.Request](#anytype.Rpc.Workspace.SetIsHighlighted.Request) - - [Rpc.Workspace.SetIsHighlighted.Response](#anytype.Rpc.Workspace.SetIsHighlighted.Response) - - [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error) - - [StreamRequest](#anytype.StreamRequest) +- [pb/protos/commands.proto](#pb_protos_commands-proto) + - [Empty](#anytype-Empty) + - [Rpc](#anytype-Rpc) + - [Rpc.Account](#anytype-Rpc-Account) + - [Rpc.Account.Config](#anytype-Rpc-Account-Config) + - [Rpc.Account.ConfigUpdate](#anytype-Rpc-Account-ConfigUpdate) + - [Rpc.Account.ConfigUpdate.Request](#anytype-Rpc-Account-ConfigUpdate-Request) + - [Rpc.Account.ConfigUpdate.Response](#anytype-Rpc-Account-ConfigUpdate-Response) + - [Rpc.Account.ConfigUpdate.Response.Error](#anytype-Rpc-Account-ConfigUpdate-Response-Error) + - [Rpc.Account.Create](#anytype-Rpc-Account-Create) + - [Rpc.Account.Create.Request](#anytype-Rpc-Account-Create-Request) + - [Rpc.Account.Create.Response](#anytype-Rpc-Account-Create-Response) + - [Rpc.Account.Create.Response.Error](#anytype-Rpc-Account-Create-Response-Error) + - [Rpc.Account.Delete](#anytype-Rpc-Account-Delete) + - [Rpc.Account.Delete.Request](#anytype-Rpc-Account-Delete-Request) + - [Rpc.Account.Delete.Response](#anytype-Rpc-Account-Delete-Response) + - [Rpc.Account.Delete.Response.Error](#anytype-Rpc-Account-Delete-Response-Error) + - [Rpc.Account.GetConfig](#anytype-Rpc-Account-GetConfig) + - [Rpc.Account.GetConfig.Get](#anytype-Rpc-Account-GetConfig-Get) + - [Rpc.Account.GetConfig.Get.Request](#anytype-Rpc-Account-GetConfig-Get-Request) + - [Rpc.Account.Move](#anytype-Rpc-Account-Move) + - [Rpc.Account.Move.Request](#anytype-Rpc-Account-Move-Request) + - [Rpc.Account.Move.Response](#anytype-Rpc-Account-Move-Response) + - [Rpc.Account.Move.Response.Error](#anytype-Rpc-Account-Move-Response-Error) + - [Rpc.Account.Recover](#anytype-Rpc-Account-Recover) + - [Rpc.Account.Recover.Request](#anytype-Rpc-Account-Recover-Request) + - [Rpc.Account.Recover.Response](#anytype-Rpc-Account-Recover-Response) + - [Rpc.Account.Recover.Response.Error](#anytype-Rpc-Account-Recover-Response-Error) + - [Rpc.Account.RecoverFromLegacyExport](#anytype-Rpc-Account-RecoverFromLegacyExport) + - [Rpc.Account.RecoverFromLegacyExport.Request](#anytype-Rpc-Account-RecoverFromLegacyExport-Request) + - [Rpc.Account.RecoverFromLegacyExport.Response](#anytype-Rpc-Account-RecoverFromLegacyExport-Response) + - [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error) + - [Rpc.Account.Select](#anytype-Rpc-Account-Select) + - [Rpc.Account.Select.Request](#anytype-Rpc-Account-Select-Request) + - [Rpc.Account.Select.Response](#anytype-Rpc-Account-Select-Response) + - [Rpc.Account.Select.Response.Error](#anytype-Rpc-Account-Select-Response-Error) + - [Rpc.Account.Stop](#anytype-Rpc-Account-Stop) + - [Rpc.Account.Stop.Request](#anytype-Rpc-Account-Stop-Request) + - [Rpc.Account.Stop.Response](#anytype-Rpc-Account-Stop-Response) + - [Rpc.Account.Stop.Response.Error](#anytype-Rpc-Account-Stop-Response-Error) + - [Rpc.App](#anytype-Rpc-App) + - [Rpc.App.GetVersion](#anytype-Rpc-App-GetVersion) + - [Rpc.App.GetVersion.Request](#anytype-Rpc-App-GetVersion-Request) + - [Rpc.App.GetVersion.Response](#anytype-Rpc-App-GetVersion-Response) + - [Rpc.App.GetVersion.Response.Error](#anytype-Rpc-App-GetVersion-Response-Error) + - [Rpc.App.SetDeviceState](#anytype-Rpc-App-SetDeviceState) + - [Rpc.App.SetDeviceState.Request](#anytype-Rpc-App-SetDeviceState-Request) + - [Rpc.App.SetDeviceState.Response](#anytype-Rpc-App-SetDeviceState-Response) + - [Rpc.App.SetDeviceState.Response.Error](#anytype-Rpc-App-SetDeviceState-Response-Error) + - [Rpc.App.Shutdown](#anytype-Rpc-App-Shutdown) + - [Rpc.App.Shutdown.Request](#anytype-Rpc-App-Shutdown-Request) + - [Rpc.App.Shutdown.Response](#anytype-Rpc-App-Shutdown-Response) + - [Rpc.App.Shutdown.Response.Error](#anytype-Rpc-App-Shutdown-Response-Error) + - [Rpc.Block](#anytype-Rpc-Block) + - [Rpc.Block.Copy](#anytype-Rpc-Block-Copy) + - [Rpc.Block.Copy.Request](#anytype-Rpc-Block-Copy-Request) + - [Rpc.Block.Copy.Response](#anytype-Rpc-Block-Copy-Response) + - [Rpc.Block.Copy.Response.Error](#anytype-Rpc-Block-Copy-Response-Error) + - [Rpc.Block.Create](#anytype-Rpc-Block-Create) + - [Rpc.Block.Create.Request](#anytype-Rpc-Block-Create-Request) + - [Rpc.Block.Create.Response](#anytype-Rpc-Block-Create-Response) + - [Rpc.Block.Create.Response.Error](#anytype-Rpc-Block-Create-Response-Error) + - [Rpc.Block.CreateWidget](#anytype-Rpc-Block-CreateWidget) + - [Rpc.Block.CreateWidget.Request](#anytype-Rpc-Block-CreateWidget-Request) + - [Rpc.Block.CreateWidget.Response](#anytype-Rpc-Block-CreateWidget-Response) + - [Rpc.Block.CreateWidget.Response.Error](#anytype-Rpc-Block-CreateWidget-Response-Error) + - [Rpc.Block.Cut](#anytype-Rpc-Block-Cut) + - [Rpc.Block.Cut.Request](#anytype-Rpc-Block-Cut-Request) + - [Rpc.Block.Cut.Response](#anytype-Rpc-Block-Cut-Response) + - [Rpc.Block.Cut.Response.Error](#anytype-Rpc-Block-Cut-Response-Error) + - [Rpc.Block.Download](#anytype-Rpc-Block-Download) + - [Rpc.Block.Download.Request](#anytype-Rpc-Block-Download-Request) + - [Rpc.Block.Download.Response](#anytype-Rpc-Block-Download-Response) + - [Rpc.Block.Download.Response.Error](#anytype-Rpc-Block-Download-Response-Error) + - [Rpc.Block.Export](#anytype-Rpc-Block-Export) + - [Rpc.Block.Export.Request](#anytype-Rpc-Block-Export-Request) + - [Rpc.Block.Export.Response](#anytype-Rpc-Block-Export-Response) + - [Rpc.Block.Export.Response.Error](#anytype-Rpc-Block-Export-Response-Error) + - [Rpc.Block.ListConvertToObjects](#anytype-Rpc-Block-ListConvertToObjects) + - [Rpc.Block.ListConvertToObjects.Request](#anytype-Rpc-Block-ListConvertToObjects-Request) + - [Rpc.Block.ListConvertToObjects.Response](#anytype-Rpc-Block-ListConvertToObjects-Response) + - [Rpc.Block.ListConvertToObjects.Response.Error](#anytype-Rpc-Block-ListConvertToObjects-Response-Error) + - [Rpc.Block.ListDelete](#anytype-Rpc-Block-ListDelete) + - [Rpc.Block.ListDelete.Request](#anytype-Rpc-Block-ListDelete-Request) + - [Rpc.Block.ListDelete.Response](#anytype-Rpc-Block-ListDelete-Response) + - [Rpc.Block.ListDelete.Response.Error](#anytype-Rpc-Block-ListDelete-Response-Error) + - [Rpc.Block.ListDuplicate](#anytype-Rpc-Block-ListDuplicate) + - [Rpc.Block.ListDuplicate.Request](#anytype-Rpc-Block-ListDuplicate-Request) + - [Rpc.Block.ListDuplicate.Response](#anytype-Rpc-Block-ListDuplicate-Response) + - [Rpc.Block.ListDuplicate.Response.Error](#anytype-Rpc-Block-ListDuplicate-Response-Error) + - [Rpc.Block.ListMoveToExistingObject](#anytype-Rpc-Block-ListMoveToExistingObject) + - [Rpc.Block.ListMoveToExistingObject.Request](#anytype-Rpc-Block-ListMoveToExistingObject-Request) + - [Rpc.Block.ListMoveToExistingObject.Response](#anytype-Rpc-Block-ListMoveToExistingObject-Response) + - [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error) + - [Rpc.Block.ListMoveToNewObject](#anytype-Rpc-Block-ListMoveToNewObject) + - [Rpc.Block.ListMoveToNewObject.Request](#anytype-Rpc-Block-ListMoveToNewObject-Request) + - [Rpc.Block.ListMoveToNewObject.Response](#anytype-Rpc-Block-ListMoveToNewObject-Response) + - [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error) + - [Rpc.Block.ListSetAlign](#anytype-Rpc-Block-ListSetAlign) + - [Rpc.Block.ListSetAlign.Request](#anytype-Rpc-Block-ListSetAlign-Request) + - [Rpc.Block.ListSetAlign.Response](#anytype-Rpc-Block-ListSetAlign-Response) + - [Rpc.Block.ListSetAlign.Response.Error](#anytype-Rpc-Block-ListSetAlign-Response-Error) + - [Rpc.Block.ListSetBackgroundColor](#anytype-Rpc-Block-ListSetBackgroundColor) + - [Rpc.Block.ListSetBackgroundColor.Request](#anytype-Rpc-Block-ListSetBackgroundColor-Request) + - [Rpc.Block.ListSetBackgroundColor.Response](#anytype-Rpc-Block-ListSetBackgroundColor-Response) + - [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error) + - [Rpc.Block.ListSetFields](#anytype-Rpc-Block-ListSetFields) + - [Rpc.Block.ListSetFields.Request](#anytype-Rpc-Block-ListSetFields-Request) + - [Rpc.Block.ListSetFields.Request.BlockField](#anytype-Rpc-Block-ListSetFields-Request-BlockField) + - [Rpc.Block.ListSetFields.Response](#anytype-Rpc-Block-ListSetFields-Response) + - [Rpc.Block.ListSetFields.Response.Error](#anytype-Rpc-Block-ListSetFields-Response-Error) + - [Rpc.Block.ListSetVerticalAlign](#anytype-Rpc-Block-ListSetVerticalAlign) + - [Rpc.Block.ListSetVerticalAlign.Request](#anytype-Rpc-Block-ListSetVerticalAlign-Request) + - [Rpc.Block.ListSetVerticalAlign.Response](#anytype-Rpc-Block-ListSetVerticalAlign-Response) + - [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error) + - [Rpc.Block.ListTurnInto](#anytype-Rpc-Block-ListTurnInto) + - [Rpc.Block.ListTurnInto.Request](#anytype-Rpc-Block-ListTurnInto-Request) + - [Rpc.Block.ListTurnInto.Response](#anytype-Rpc-Block-ListTurnInto-Response) + - [Rpc.Block.ListTurnInto.Response.Error](#anytype-Rpc-Block-ListTurnInto-Response-Error) + - [Rpc.Block.ListUpdate](#anytype-Rpc-Block-ListUpdate) + - [Rpc.Block.ListUpdate.Request](#anytype-Rpc-Block-ListUpdate-Request) + - [Rpc.Block.ListUpdate.Request.Text](#anytype-Rpc-Block-ListUpdate-Request-Text) + - [Rpc.Block.Merge](#anytype-Rpc-Block-Merge) + - [Rpc.Block.Merge.Request](#anytype-Rpc-Block-Merge-Request) + - [Rpc.Block.Merge.Response](#anytype-Rpc-Block-Merge-Response) + - [Rpc.Block.Merge.Response.Error](#anytype-Rpc-Block-Merge-Response-Error) + - [Rpc.Block.Paste](#anytype-Rpc-Block-Paste) + - [Rpc.Block.Paste.Request](#anytype-Rpc-Block-Paste-Request) + - [Rpc.Block.Paste.Request.File](#anytype-Rpc-Block-Paste-Request-File) + - [Rpc.Block.Paste.Response](#anytype-Rpc-Block-Paste-Response) + - [Rpc.Block.Paste.Response.Error](#anytype-Rpc-Block-Paste-Response-Error) + - [Rpc.Block.Replace](#anytype-Rpc-Block-Replace) + - [Rpc.Block.Replace.Request](#anytype-Rpc-Block-Replace-Request) + - [Rpc.Block.Replace.Response](#anytype-Rpc-Block-Replace-Response) + - [Rpc.Block.Replace.Response.Error](#anytype-Rpc-Block-Replace-Response-Error) + - [Rpc.Block.SetFields](#anytype-Rpc-Block-SetFields) + - [Rpc.Block.SetFields.Request](#anytype-Rpc-Block-SetFields-Request) + - [Rpc.Block.SetFields.Response](#anytype-Rpc-Block-SetFields-Response) + - [Rpc.Block.SetFields.Response.Error](#anytype-Rpc-Block-SetFields-Response-Error) + - [Rpc.Block.Split](#anytype-Rpc-Block-Split) + - [Rpc.Block.Split.Request](#anytype-Rpc-Block-Split-Request) + - [Rpc.Block.Split.Response](#anytype-Rpc-Block-Split-Response) + - [Rpc.Block.Split.Response.Error](#anytype-Rpc-Block-Split-Response-Error) + - [Rpc.Block.Upload](#anytype-Rpc-Block-Upload) + - [Rpc.Block.Upload.Request](#anytype-Rpc-Block-Upload-Request) + - [Rpc.Block.Upload.Response](#anytype-Rpc-Block-Upload-Response) + - [Rpc.Block.Upload.Response.Error](#anytype-Rpc-Block-Upload-Response-Error) + - [Rpc.BlockBookmark](#anytype-Rpc-BlockBookmark) + - [Rpc.BlockBookmark.CreateAndFetch](#anytype-Rpc-BlockBookmark-CreateAndFetch) + - [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype-Rpc-BlockBookmark-CreateAndFetch-Request) + - [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response) + - [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error) + - [Rpc.BlockBookmark.Fetch](#anytype-Rpc-BlockBookmark-Fetch) + - [Rpc.BlockBookmark.Fetch.Request](#anytype-Rpc-BlockBookmark-Fetch-Request) + - [Rpc.BlockBookmark.Fetch.Response](#anytype-Rpc-BlockBookmark-Fetch-Response) + - [Rpc.BlockBookmark.Fetch.Response.Error](#anytype-Rpc-BlockBookmark-Fetch-Response-Error) + - [Rpc.BlockDataview](#anytype-Rpc-BlockDataview) + - [Rpc.BlockDataview.CreateBookmark](#anytype-Rpc-BlockDataview-CreateBookmark) + - [Rpc.BlockDataview.CreateBookmark.Request](#anytype-Rpc-BlockDataview-CreateBookmark-Request) + - [Rpc.BlockDataview.CreateBookmark.Response](#anytype-Rpc-BlockDataview-CreateBookmark-Response) + - [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error) + - [Rpc.BlockDataview.CreateFromExistingObject](#anytype-Rpc-BlockDataview-CreateFromExistingObject) + - [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Request) + - [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response) + - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error) + - [Rpc.BlockDataview.Filter](#anytype-Rpc-BlockDataview-Filter) + - [Rpc.BlockDataview.Filter.Add](#anytype-Rpc-BlockDataview-Filter-Add) + - [Rpc.BlockDataview.Filter.Add.Request](#anytype-Rpc-BlockDataview-Filter-Add-Request) + - [Rpc.BlockDataview.Filter.Add.Response](#anytype-Rpc-BlockDataview-Filter-Add-Response) + - [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error) + - [Rpc.BlockDataview.Filter.Remove](#anytype-Rpc-BlockDataview-Filter-Remove) + - [Rpc.BlockDataview.Filter.Remove.Request](#anytype-Rpc-BlockDataview-Filter-Remove-Request) + - [Rpc.BlockDataview.Filter.Remove.Response](#anytype-Rpc-BlockDataview-Filter-Remove-Response) + - [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error) + - [Rpc.BlockDataview.Filter.Replace](#anytype-Rpc-BlockDataview-Filter-Replace) + - [Rpc.BlockDataview.Filter.Replace.Request](#anytype-Rpc-BlockDataview-Filter-Replace-Request) + - [Rpc.BlockDataview.Filter.Replace.Response](#anytype-Rpc-BlockDataview-Filter-Replace-Response) + - [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error) + - [Rpc.BlockDataview.Filter.Sort](#anytype-Rpc-BlockDataview-Filter-Sort) + - [Rpc.BlockDataview.Filter.Sort.Request](#anytype-Rpc-BlockDataview-Filter-Sort-Request) + - [Rpc.BlockDataview.Filter.Sort.Response](#anytype-Rpc-BlockDataview-Filter-Sort-Response) + - [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error) + - [Rpc.BlockDataview.GroupOrder](#anytype-Rpc-BlockDataview-GroupOrder) + - [Rpc.BlockDataview.GroupOrder.Update](#anytype-Rpc-BlockDataview-GroupOrder-Update) + - [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype-Rpc-BlockDataview-GroupOrder-Update-Request) + - [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response) + - [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error) + - [Rpc.BlockDataview.ObjectOrder](#anytype-Rpc-BlockDataview-ObjectOrder) + - [Rpc.BlockDataview.ObjectOrder.Move](#anytype-Rpc-BlockDataview-ObjectOrder-Move) + - [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Request) + - [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response) + - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error) + - [Rpc.BlockDataview.ObjectOrder.Update](#anytype-Rpc-BlockDataview-ObjectOrder-Update) + - [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Request) + - [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response) + - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error) + - [Rpc.BlockDataview.Relation](#anytype-Rpc-BlockDataview-Relation) + - [Rpc.BlockDataview.Relation.Add](#anytype-Rpc-BlockDataview-Relation-Add) + - [Rpc.BlockDataview.Relation.Add.Request](#anytype-Rpc-BlockDataview-Relation-Add-Request) + - [Rpc.BlockDataview.Relation.Add.Response](#anytype-Rpc-BlockDataview-Relation-Add-Response) + - [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error) + - [Rpc.BlockDataview.Relation.Delete](#anytype-Rpc-BlockDataview-Relation-Delete) + - [Rpc.BlockDataview.Relation.Delete.Request](#anytype-Rpc-BlockDataview-Relation-Delete-Request) + - [Rpc.BlockDataview.Relation.Delete.Response](#anytype-Rpc-BlockDataview-Relation-Delete-Response) + - [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error) + - [Rpc.BlockDataview.Relation.ListAvailable](#anytype-Rpc-BlockDataview-Relation-ListAvailable) + - [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Request) + - [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response) + - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error) + - [Rpc.BlockDataview.SetSource](#anytype-Rpc-BlockDataview-SetSource) + - [Rpc.BlockDataview.SetSource.Request](#anytype-Rpc-BlockDataview-SetSource-Request) + - [Rpc.BlockDataview.SetSource.Response](#anytype-Rpc-BlockDataview-SetSource-Response) + - [Rpc.BlockDataview.SetSource.Response.Error](#anytype-Rpc-BlockDataview-SetSource-Response-Error) + - [Rpc.BlockDataview.Sort](#anytype-Rpc-BlockDataview-Sort) + - [Rpc.BlockDataview.Sort.Add](#anytype-Rpc-BlockDataview-Sort-Add) + - [Rpc.BlockDataview.Sort.Add.Request](#anytype-Rpc-BlockDataview-Sort-Add-Request) + - [Rpc.BlockDataview.Sort.Add.Response](#anytype-Rpc-BlockDataview-Sort-Add-Response) + - [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error) + - [Rpc.BlockDataview.Sort.Remove](#anytype-Rpc-BlockDataview-Sort-Remove) + - [Rpc.BlockDataview.Sort.Remove.Request](#anytype-Rpc-BlockDataview-Sort-Remove-Request) + - [Rpc.BlockDataview.Sort.Remove.Response](#anytype-Rpc-BlockDataview-Sort-Remove-Response) + - [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error) + - [Rpc.BlockDataview.Sort.Replace](#anytype-Rpc-BlockDataview-Sort-Replace) + - [Rpc.BlockDataview.Sort.Replace.Request](#anytype-Rpc-BlockDataview-Sort-Replace-Request) + - [Rpc.BlockDataview.Sort.Replace.Response](#anytype-Rpc-BlockDataview-Sort-Replace-Response) + - [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error) + - [Rpc.BlockDataview.Sort.Sort](#anytype-Rpc-BlockDataview-Sort-Sort) + - [Rpc.BlockDataview.Sort.Sort.Request](#anytype-Rpc-BlockDataview-Sort-Sort-Request) + - [Rpc.BlockDataview.Sort.Sort.Response](#anytype-Rpc-BlockDataview-Sort-Sort-Response) + - [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error) + - [Rpc.BlockDataview.View](#anytype-Rpc-BlockDataview-View) + - [Rpc.BlockDataview.View.Create](#anytype-Rpc-BlockDataview-View-Create) + - [Rpc.BlockDataview.View.Create.Request](#anytype-Rpc-BlockDataview-View-Create-Request) + - [Rpc.BlockDataview.View.Create.Response](#anytype-Rpc-BlockDataview-View-Create-Response) + - [Rpc.BlockDataview.View.Create.Response.Error](#anytype-Rpc-BlockDataview-View-Create-Response-Error) + - [Rpc.BlockDataview.View.Delete](#anytype-Rpc-BlockDataview-View-Delete) + - [Rpc.BlockDataview.View.Delete.Request](#anytype-Rpc-BlockDataview-View-Delete-Request) + - [Rpc.BlockDataview.View.Delete.Response](#anytype-Rpc-BlockDataview-View-Delete-Response) + - [Rpc.BlockDataview.View.Delete.Response.Error](#anytype-Rpc-BlockDataview-View-Delete-Response-Error) + - [Rpc.BlockDataview.View.SetActive](#anytype-Rpc-BlockDataview-View-SetActive) + - [Rpc.BlockDataview.View.SetActive.Request](#anytype-Rpc-BlockDataview-View-SetActive-Request) + - [Rpc.BlockDataview.View.SetActive.Response](#anytype-Rpc-BlockDataview-View-SetActive-Response) + - [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error) + - [Rpc.BlockDataview.View.SetPosition](#anytype-Rpc-BlockDataview-View-SetPosition) + - [Rpc.BlockDataview.View.SetPosition.Request](#anytype-Rpc-BlockDataview-View-SetPosition-Request) + - [Rpc.BlockDataview.View.SetPosition.Response](#anytype-Rpc-BlockDataview-View-SetPosition-Response) + - [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error) + - [Rpc.BlockDataview.View.Update](#anytype-Rpc-BlockDataview-View-Update) + - [Rpc.BlockDataview.View.Update.Request](#anytype-Rpc-BlockDataview-View-Update-Request) + - [Rpc.BlockDataview.View.Update.Response](#anytype-Rpc-BlockDataview-View-Update-Response) + - [Rpc.BlockDataview.View.Update.Response.Error](#anytype-Rpc-BlockDataview-View-Update-Response-Error) + - [Rpc.BlockDataview.ViewRelation](#anytype-Rpc-BlockDataview-ViewRelation) + - [Rpc.BlockDataview.ViewRelation.Add](#anytype-Rpc-BlockDataview-ViewRelation-Add) + - [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype-Rpc-BlockDataview-ViewRelation-Add-Request) + - [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response) + - [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error) + - [Rpc.BlockDataview.ViewRelation.Remove](#anytype-Rpc-BlockDataview-ViewRelation-Remove) + - [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Request) + - [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response) + - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error) + - [Rpc.BlockDataview.ViewRelation.Replace](#anytype-Rpc-BlockDataview-ViewRelation-Replace) + - [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Request) + - [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response) + - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error) + - [Rpc.BlockDataview.ViewRelation.Sort](#anytype-Rpc-BlockDataview-ViewRelation-Sort) + - [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Request) + - [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response) + - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error) + - [Rpc.BlockDiv](#anytype-Rpc-BlockDiv) + - [Rpc.BlockDiv.ListSetStyle](#anytype-Rpc-BlockDiv-ListSetStyle) + - [Rpc.BlockDiv.ListSetStyle.Request](#anytype-Rpc-BlockDiv-ListSetStyle-Request) + - [Rpc.BlockDiv.ListSetStyle.Response](#anytype-Rpc-BlockDiv-ListSetStyle-Response) + - [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error) + - [Rpc.BlockFile](#anytype-Rpc-BlockFile) + - [Rpc.BlockFile.CreateAndUpload](#anytype-Rpc-BlockFile-CreateAndUpload) + - [Rpc.BlockFile.CreateAndUpload.Request](#anytype-Rpc-BlockFile-CreateAndUpload-Request) + - [Rpc.BlockFile.CreateAndUpload.Response](#anytype-Rpc-BlockFile-CreateAndUpload-Response) + - [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error) + - [Rpc.BlockFile.ListSetStyle](#anytype-Rpc-BlockFile-ListSetStyle) + - [Rpc.BlockFile.ListSetStyle.Request](#anytype-Rpc-BlockFile-ListSetStyle-Request) + - [Rpc.BlockFile.ListSetStyle.Response](#anytype-Rpc-BlockFile-ListSetStyle-Response) + - [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error) + - [Rpc.BlockFile.SetName](#anytype-Rpc-BlockFile-SetName) + - [Rpc.BlockFile.SetName.Request](#anytype-Rpc-BlockFile-SetName-Request) + - [Rpc.BlockFile.SetName.Response](#anytype-Rpc-BlockFile-SetName-Response) + - [Rpc.BlockFile.SetName.Response.Error](#anytype-Rpc-BlockFile-SetName-Response-Error) + - [Rpc.BlockImage](#anytype-Rpc-BlockImage) + - [Rpc.BlockImage.SetName](#anytype-Rpc-BlockImage-SetName) + - [Rpc.BlockImage.SetName.Request](#anytype-Rpc-BlockImage-SetName-Request) + - [Rpc.BlockImage.SetName.Response](#anytype-Rpc-BlockImage-SetName-Response) + - [Rpc.BlockImage.SetName.Response.Error](#anytype-Rpc-BlockImage-SetName-Response-Error) + - [Rpc.BlockImage.SetWidth](#anytype-Rpc-BlockImage-SetWidth) + - [Rpc.BlockImage.SetWidth.Request](#anytype-Rpc-BlockImage-SetWidth-Request) + - [Rpc.BlockImage.SetWidth.Response](#anytype-Rpc-BlockImage-SetWidth-Response) + - [Rpc.BlockImage.SetWidth.Response.Error](#anytype-Rpc-BlockImage-SetWidth-Response-Error) + - [Rpc.BlockLatex](#anytype-Rpc-BlockLatex) + - [Rpc.BlockLatex.SetText](#anytype-Rpc-BlockLatex-SetText) + - [Rpc.BlockLatex.SetText.Request](#anytype-Rpc-BlockLatex-SetText-Request) + - [Rpc.BlockLatex.SetText.Response](#anytype-Rpc-BlockLatex-SetText-Response) + - [Rpc.BlockLatex.SetText.Response.Error](#anytype-Rpc-BlockLatex-SetText-Response-Error) + - [Rpc.BlockLink](#anytype-Rpc-BlockLink) + - [Rpc.BlockLink.CreateWithObject](#anytype-Rpc-BlockLink-CreateWithObject) + - [Rpc.BlockLink.CreateWithObject.Request](#anytype-Rpc-BlockLink-CreateWithObject-Request) + - [Rpc.BlockLink.CreateWithObject.Response](#anytype-Rpc-BlockLink-CreateWithObject-Response) + - [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error) + - [Rpc.BlockLink.ListSetAppearance](#anytype-Rpc-BlockLink-ListSetAppearance) + - [Rpc.BlockLink.ListSetAppearance.Request](#anytype-Rpc-BlockLink-ListSetAppearance-Request) + - [Rpc.BlockLink.ListSetAppearance.Response](#anytype-Rpc-BlockLink-ListSetAppearance-Response) + - [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error) + - [Rpc.BlockRelation](#anytype-Rpc-BlockRelation) + - [Rpc.BlockRelation.Add](#anytype-Rpc-BlockRelation-Add) + - [Rpc.BlockRelation.Add.Request](#anytype-Rpc-BlockRelation-Add-Request) + - [Rpc.BlockRelation.Add.Response](#anytype-Rpc-BlockRelation-Add-Response) + - [Rpc.BlockRelation.Add.Response.Error](#anytype-Rpc-BlockRelation-Add-Response-Error) + - [Rpc.BlockRelation.SetKey](#anytype-Rpc-BlockRelation-SetKey) + - [Rpc.BlockRelation.SetKey.Request](#anytype-Rpc-BlockRelation-SetKey-Request) + - [Rpc.BlockRelation.SetKey.Response](#anytype-Rpc-BlockRelation-SetKey-Response) + - [Rpc.BlockRelation.SetKey.Response.Error](#anytype-Rpc-BlockRelation-SetKey-Response-Error) + - [Rpc.BlockTable](#anytype-Rpc-BlockTable) + - [Rpc.BlockTable.ColumnCreate](#anytype-Rpc-BlockTable-ColumnCreate) + - [Rpc.BlockTable.ColumnCreate.Request](#anytype-Rpc-BlockTable-ColumnCreate-Request) + - [Rpc.BlockTable.ColumnCreate.Response](#anytype-Rpc-BlockTable-ColumnCreate-Response) + - [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error) + - [Rpc.BlockTable.ColumnDelete](#anytype-Rpc-BlockTable-ColumnDelete) + - [Rpc.BlockTable.ColumnDelete.Request](#anytype-Rpc-BlockTable-ColumnDelete-Request) + - [Rpc.BlockTable.ColumnDelete.Response](#anytype-Rpc-BlockTable-ColumnDelete-Response) + - [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error) + - [Rpc.BlockTable.ColumnDuplicate](#anytype-Rpc-BlockTable-ColumnDuplicate) + - [Rpc.BlockTable.ColumnDuplicate.Request](#anytype-Rpc-BlockTable-ColumnDuplicate-Request) + - [Rpc.BlockTable.ColumnDuplicate.Response](#anytype-Rpc-BlockTable-ColumnDuplicate-Response) + - [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error) + - [Rpc.BlockTable.ColumnListFill](#anytype-Rpc-BlockTable-ColumnListFill) + - [Rpc.BlockTable.ColumnListFill.Request](#anytype-Rpc-BlockTable-ColumnListFill-Request) + - [Rpc.BlockTable.ColumnListFill.Response](#anytype-Rpc-BlockTable-ColumnListFill-Response) + - [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error) + - [Rpc.BlockTable.ColumnMove](#anytype-Rpc-BlockTable-ColumnMove) + - [Rpc.BlockTable.ColumnMove.Request](#anytype-Rpc-BlockTable-ColumnMove-Request) + - [Rpc.BlockTable.ColumnMove.Response](#anytype-Rpc-BlockTable-ColumnMove-Response) + - [Rpc.BlockTable.ColumnMove.Response.Error](#anytype-Rpc-BlockTable-ColumnMove-Response-Error) + - [Rpc.BlockTable.Create](#anytype-Rpc-BlockTable-Create) + - [Rpc.BlockTable.Create.Request](#anytype-Rpc-BlockTable-Create-Request) + - [Rpc.BlockTable.Create.Response](#anytype-Rpc-BlockTable-Create-Response) + - [Rpc.BlockTable.Create.Response.Error](#anytype-Rpc-BlockTable-Create-Response-Error) + - [Rpc.BlockTable.Expand](#anytype-Rpc-BlockTable-Expand) + - [Rpc.BlockTable.Expand.Request](#anytype-Rpc-BlockTable-Expand-Request) + - [Rpc.BlockTable.Expand.Response](#anytype-Rpc-BlockTable-Expand-Response) + - [Rpc.BlockTable.Expand.Response.Error](#anytype-Rpc-BlockTable-Expand-Response-Error) + - [Rpc.BlockTable.RowCreate](#anytype-Rpc-BlockTable-RowCreate) + - [Rpc.BlockTable.RowCreate.Request](#anytype-Rpc-BlockTable-RowCreate-Request) + - [Rpc.BlockTable.RowCreate.Response](#anytype-Rpc-BlockTable-RowCreate-Response) + - [Rpc.BlockTable.RowCreate.Response.Error](#anytype-Rpc-BlockTable-RowCreate-Response-Error) + - [Rpc.BlockTable.RowDelete](#anytype-Rpc-BlockTable-RowDelete) + - [Rpc.BlockTable.RowDelete.Request](#anytype-Rpc-BlockTable-RowDelete-Request) + - [Rpc.BlockTable.RowDelete.Response](#anytype-Rpc-BlockTable-RowDelete-Response) + - [Rpc.BlockTable.RowDelete.Response.Error](#anytype-Rpc-BlockTable-RowDelete-Response-Error) + - [Rpc.BlockTable.RowDuplicate](#anytype-Rpc-BlockTable-RowDuplicate) + - [Rpc.BlockTable.RowDuplicate.Request](#anytype-Rpc-BlockTable-RowDuplicate-Request) + - [Rpc.BlockTable.RowDuplicate.Response](#anytype-Rpc-BlockTable-RowDuplicate-Response) + - [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error) + - [Rpc.BlockTable.RowListClean](#anytype-Rpc-BlockTable-RowListClean) + - [Rpc.BlockTable.RowListClean.Request](#anytype-Rpc-BlockTable-RowListClean-Request) + - [Rpc.BlockTable.RowListClean.Response](#anytype-Rpc-BlockTable-RowListClean-Response) + - [Rpc.BlockTable.RowListClean.Response.Error](#anytype-Rpc-BlockTable-RowListClean-Response-Error) + - [Rpc.BlockTable.RowListFill](#anytype-Rpc-BlockTable-RowListFill) + - [Rpc.BlockTable.RowListFill.Request](#anytype-Rpc-BlockTable-RowListFill-Request) + - [Rpc.BlockTable.RowListFill.Response](#anytype-Rpc-BlockTable-RowListFill-Response) + - [Rpc.BlockTable.RowListFill.Response.Error](#anytype-Rpc-BlockTable-RowListFill-Response-Error) + - [Rpc.BlockTable.RowSetHeader](#anytype-Rpc-BlockTable-RowSetHeader) + - [Rpc.BlockTable.RowSetHeader.Request](#anytype-Rpc-BlockTable-RowSetHeader-Request) + - [Rpc.BlockTable.RowSetHeader.Response](#anytype-Rpc-BlockTable-RowSetHeader-Response) + - [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error) + - [Rpc.BlockTable.Sort](#anytype-Rpc-BlockTable-Sort) + - [Rpc.BlockTable.Sort.Request](#anytype-Rpc-BlockTable-Sort-Request) + - [Rpc.BlockTable.Sort.Response](#anytype-Rpc-BlockTable-Sort-Response) + - [Rpc.BlockTable.Sort.Response.Error](#anytype-Rpc-BlockTable-Sort-Response-Error) + - [Rpc.BlockText](#anytype-Rpc-BlockText) + - [Rpc.BlockText.ListClearContent](#anytype-Rpc-BlockText-ListClearContent) + - [Rpc.BlockText.ListClearContent.Request](#anytype-Rpc-BlockText-ListClearContent-Request) + - [Rpc.BlockText.ListClearContent.Response](#anytype-Rpc-BlockText-ListClearContent-Response) + - [Rpc.BlockText.ListClearContent.Response.Error](#anytype-Rpc-BlockText-ListClearContent-Response-Error) + - [Rpc.BlockText.ListClearStyle](#anytype-Rpc-BlockText-ListClearStyle) + - [Rpc.BlockText.ListClearStyle.Request](#anytype-Rpc-BlockText-ListClearStyle-Request) + - [Rpc.BlockText.ListClearStyle.Response](#anytype-Rpc-BlockText-ListClearStyle-Response) + - [Rpc.BlockText.ListClearStyle.Response.Error](#anytype-Rpc-BlockText-ListClearStyle-Response-Error) + - [Rpc.BlockText.ListSetColor](#anytype-Rpc-BlockText-ListSetColor) + - [Rpc.BlockText.ListSetColor.Request](#anytype-Rpc-BlockText-ListSetColor-Request) + - [Rpc.BlockText.ListSetColor.Response](#anytype-Rpc-BlockText-ListSetColor-Response) + - [Rpc.BlockText.ListSetColor.Response.Error](#anytype-Rpc-BlockText-ListSetColor-Response-Error) + - [Rpc.BlockText.ListSetMark](#anytype-Rpc-BlockText-ListSetMark) + - [Rpc.BlockText.ListSetMark.Request](#anytype-Rpc-BlockText-ListSetMark-Request) + - [Rpc.BlockText.ListSetMark.Response](#anytype-Rpc-BlockText-ListSetMark-Response) + - [Rpc.BlockText.ListSetMark.Response.Error](#anytype-Rpc-BlockText-ListSetMark-Response-Error) + - [Rpc.BlockText.ListSetStyle](#anytype-Rpc-BlockText-ListSetStyle) + - [Rpc.BlockText.ListSetStyle.Request](#anytype-Rpc-BlockText-ListSetStyle-Request) + - [Rpc.BlockText.ListSetStyle.Response](#anytype-Rpc-BlockText-ListSetStyle-Response) + - [Rpc.BlockText.ListSetStyle.Response.Error](#anytype-Rpc-BlockText-ListSetStyle-Response-Error) + - [Rpc.BlockText.SetChecked](#anytype-Rpc-BlockText-SetChecked) + - [Rpc.BlockText.SetChecked.Request](#anytype-Rpc-BlockText-SetChecked-Request) + - [Rpc.BlockText.SetChecked.Response](#anytype-Rpc-BlockText-SetChecked-Response) + - [Rpc.BlockText.SetChecked.Response.Error](#anytype-Rpc-BlockText-SetChecked-Response-Error) + - [Rpc.BlockText.SetColor](#anytype-Rpc-BlockText-SetColor) + - [Rpc.BlockText.SetColor.Request](#anytype-Rpc-BlockText-SetColor-Request) + - [Rpc.BlockText.SetColor.Response](#anytype-Rpc-BlockText-SetColor-Response) + - [Rpc.BlockText.SetColor.Response.Error](#anytype-Rpc-BlockText-SetColor-Response-Error) + - [Rpc.BlockText.SetIcon](#anytype-Rpc-BlockText-SetIcon) + - [Rpc.BlockText.SetIcon.Request](#anytype-Rpc-BlockText-SetIcon-Request) + - [Rpc.BlockText.SetIcon.Response](#anytype-Rpc-BlockText-SetIcon-Response) + - [Rpc.BlockText.SetIcon.Response.Error](#anytype-Rpc-BlockText-SetIcon-Response-Error) + - [Rpc.BlockText.SetMarks](#anytype-Rpc-BlockText-SetMarks) + - [Rpc.BlockText.SetMarks.Get](#anytype-Rpc-BlockText-SetMarks-Get) + - [Rpc.BlockText.SetMarks.Get.Request](#anytype-Rpc-BlockText-SetMarks-Get-Request) + - [Rpc.BlockText.SetMarks.Get.Response](#anytype-Rpc-BlockText-SetMarks-Get-Response) + - [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error) + - [Rpc.BlockText.SetStyle](#anytype-Rpc-BlockText-SetStyle) + - [Rpc.BlockText.SetStyle.Request](#anytype-Rpc-BlockText-SetStyle-Request) + - [Rpc.BlockText.SetStyle.Response](#anytype-Rpc-BlockText-SetStyle-Response) + - [Rpc.BlockText.SetStyle.Response.Error](#anytype-Rpc-BlockText-SetStyle-Response-Error) + - [Rpc.BlockText.SetText](#anytype-Rpc-BlockText-SetText) + - [Rpc.BlockText.SetText.Request](#anytype-Rpc-BlockText-SetText-Request) + - [Rpc.BlockText.SetText.Response](#anytype-Rpc-BlockText-SetText-Response) + - [Rpc.BlockText.SetText.Response.Error](#anytype-Rpc-BlockText-SetText-Response-Error) + - [Rpc.BlockVideo](#anytype-Rpc-BlockVideo) + - [Rpc.BlockVideo.SetName](#anytype-Rpc-BlockVideo-SetName) + - [Rpc.BlockVideo.SetName.Request](#anytype-Rpc-BlockVideo-SetName-Request) + - [Rpc.BlockVideo.SetName.Response](#anytype-Rpc-BlockVideo-SetName-Response) + - [Rpc.BlockVideo.SetName.Response.Error](#anytype-Rpc-BlockVideo-SetName-Response-Error) + - [Rpc.BlockVideo.SetWidth](#anytype-Rpc-BlockVideo-SetWidth) + - [Rpc.BlockVideo.SetWidth.Request](#anytype-Rpc-BlockVideo-SetWidth-Request) + - [Rpc.BlockVideo.SetWidth.Response](#anytype-Rpc-BlockVideo-SetWidth-Response) + - [Rpc.BlockVideo.SetWidth.Response.Error](#anytype-Rpc-BlockVideo-SetWidth-Response-Error) + - [Rpc.BlockWidget](#anytype-Rpc-BlockWidget) + - [Rpc.BlockWidget.SetLayout](#anytype-Rpc-BlockWidget-SetLayout) + - [Rpc.BlockWidget.SetLayout.Request](#anytype-Rpc-BlockWidget-SetLayout-Request) + - [Rpc.BlockWidget.SetLayout.Response](#anytype-Rpc-BlockWidget-SetLayout-Response) + - [Rpc.BlockWidget.SetLayout.Response.Error](#anytype-Rpc-BlockWidget-SetLayout-Response-Error) + - [Rpc.BlockWidget.SetLimit](#anytype-Rpc-BlockWidget-SetLimit) + - [Rpc.BlockWidget.SetLimit.Request](#anytype-Rpc-BlockWidget-SetLimit-Request) + - [Rpc.BlockWidget.SetLimit.Response](#anytype-Rpc-BlockWidget-SetLimit-Response) + - [Rpc.BlockWidget.SetLimit.Response.Error](#anytype-Rpc-BlockWidget-SetLimit-Response-Error) + - [Rpc.BlockWidget.SetTargetId](#anytype-Rpc-BlockWidget-SetTargetId) + - [Rpc.BlockWidget.SetTargetId.Request](#anytype-Rpc-BlockWidget-SetTargetId-Request) + - [Rpc.BlockWidget.SetTargetId.Response](#anytype-Rpc-BlockWidget-SetTargetId-Response) + - [Rpc.BlockWidget.SetTargetId.Response.Error](#anytype-Rpc-BlockWidget-SetTargetId-Response-Error) + - [Rpc.BlockWidget.SetViewId](#anytype-Rpc-BlockWidget-SetViewId) + - [Rpc.BlockWidget.SetViewId.Request](#anytype-Rpc-BlockWidget-SetViewId-Request) + - [Rpc.BlockWidget.SetViewId.Response](#anytype-Rpc-BlockWidget-SetViewId-Response) + - [Rpc.BlockWidget.SetViewId.Response.Error](#anytype-Rpc-BlockWidget-SetViewId-Response-Error) + - [Rpc.Debug](#anytype-Rpc-Debug) + - [Rpc.Debug.ExportLocalstore](#anytype-Rpc-Debug-ExportLocalstore) + - [Rpc.Debug.ExportLocalstore.Request](#anytype-Rpc-Debug-ExportLocalstore-Request) + - [Rpc.Debug.ExportLocalstore.Response](#anytype-Rpc-Debug-ExportLocalstore-Response) + - [Rpc.Debug.ExportLocalstore.Response.Error](#anytype-Rpc-Debug-ExportLocalstore-Response-Error) + - [Rpc.Debug.Ping](#anytype-Rpc-Debug-Ping) + - [Rpc.Debug.Ping.Request](#anytype-Rpc-Debug-Ping-Request) + - [Rpc.Debug.Ping.Response](#anytype-Rpc-Debug-Ping-Response) + - [Rpc.Debug.Ping.Response.Error](#anytype-Rpc-Debug-Ping-Response-Error) + - [Rpc.Debug.SpaceSummary](#anytype-Rpc-Debug-SpaceSummary) + - [Rpc.Debug.SpaceSummary.Request](#anytype-Rpc-Debug-SpaceSummary-Request) + - [Rpc.Debug.SpaceSummary.Response](#anytype-Rpc-Debug-SpaceSummary-Response) + - [Rpc.Debug.SpaceSummary.Response.Error](#anytype-Rpc-Debug-SpaceSummary-Response-Error) + - [Rpc.Debug.Tree](#anytype-Rpc-Debug-Tree) + - [Rpc.Debug.Tree.Request](#anytype-Rpc-Debug-Tree-Request) + - [Rpc.Debug.Tree.Response](#anytype-Rpc-Debug-Tree-Response) + - [Rpc.Debug.Tree.Response.Error](#anytype-Rpc-Debug-Tree-Response-Error) + - [Rpc.Debug.TreeHeads](#anytype-Rpc-Debug-TreeHeads) + - [Rpc.Debug.TreeHeads.Request](#anytype-Rpc-Debug-TreeHeads-Request) + - [Rpc.Debug.TreeHeads.Response](#anytype-Rpc-Debug-TreeHeads-Response) + - [Rpc.Debug.TreeHeads.Response.Error](#anytype-Rpc-Debug-TreeHeads-Response-Error) + - [Rpc.Debug.TreeInfo](#anytype-Rpc-Debug-TreeInfo) + - [Rpc.File](#anytype-Rpc-File) + - [Rpc.File.Download](#anytype-Rpc-File-Download) + - [Rpc.File.Download.Request](#anytype-Rpc-File-Download-Request) + - [Rpc.File.Download.Response](#anytype-Rpc-File-Download-Response) + - [Rpc.File.Download.Response.Error](#anytype-Rpc-File-Download-Response-Error) + - [Rpc.File.Drop](#anytype-Rpc-File-Drop) + - [Rpc.File.Drop.Request](#anytype-Rpc-File-Drop-Request) + - [Rpc.File.Drop.Response](#anytype-Rpc-File-Drop-Response) + - [Rpc.File.Drop.Response.Error](#anytype-Rpc-File-Drop-Response-Error) + - [Rpc.File.ListOffload](#anytype-Rpc-File-ListOffload) + - [Rpc.File.ListOffload.Request](#anytype-Rpc-File-ListOffload-Request) + - [Rpc.File.ListOffload.Response](#anytype-Rpc-File-ListOffload-Response) + - [Rpc.File.ListOffload.Response.Error](#anytype-Rpc-File-ListOffload-Response-Error) + - [Rpc.File.Offload](#anytype-Rpc-File-Offload) + - [Rpc.File.Offload.Request](#anytype-Rpc-File-Offload-Request) + - [Rpc.File.Offload.Response](#anytype-Rpc-File-Offload-Response) + - [Rpc.File.Offload.Response.Error](#anytype-Rpc-File-Offload-Response-Error) + - [Rpc.File.SpaceUsage](#anytype-Rpc-File-SpaceUsage) + - [Rpc.File.SpaceUsage.Request](#anytype-Rpc-File-SpaceUsage-Request) + - [Rpc.File.SpaceUsage.Response](#anytype-Rpc-File-SpaceUsage-Response) + - [Rpc.File.SpaceUsage.Response.Error](#anytype-Rpc-File-SpaceUsage-Response-Error) + - [Rpc.File.SpaceUsage.Response.Usage](#anytype-Rpc-File-SpaceUsage-Response-Usage) + - [Rpc.File.Upload](#anytype-Rpc-File-Upload) + - [Rpc.File.Upload.Request](#anytype-Rpc-File-Upload-Request) + - [Rpc.File.Upload.Response](#anytype-Rpc-File-Upload-Response) + - [Rpc.File.Upload.Response.Error](#anytype-Rpc-File-Upload-Response-Error) + - [Rpc.GenericErrorResponse](#anytype-Rpc-GenericErrorResponse) + - [Rpc.GenericErrorResponse.Error](#anytype-Rpc-GenericErrorResponse-Error) + - [Rpc.History](#anytype-Rpc-History) + - [Rpc.History.GetVersions](#anytype-Rpc-History-GetVersions) + - [Rpc.History.GetVersions.Request](#anytype-Rpc-History-GetVersions-Request) + - [Rpc.History.GetVersions.Response](#anytype-Rpc-History-GetVersions-Response) + - [Rpc.History.GetVersions.Response.Error](#anytype-Rpc-History-GetVersions-Response-Error) + - [Rpc.History.SetVersion](#anytype-Rpc-History-SetVersion) + - [Rpc.History.SetVersion.Request](#anytype-Rpc-History-SetVersion-Request) + - [Rpc.History.SetVersion.Response](#anytype-Rpc-History-SetVersion-Response) + - [Rpc.History.SetVersion.Response.Error](#anytype-Rpc-History-SetVersion-Response-Error) + - [Rpc.History.ShowVersion](#anytype-Rpc-History-ShowVersion) + - [Rpc.History.ShowVersion.Request](#anytype-Rpc-History-ShowVersion-Request) + - [Rpc.History.ShowVersion.Response](#anytype-Rpc-History-ShowVersion-Response) + - [Rpc.History.ShowVersion.Response.Error](#anytype-Rpc-History-ShowVersion-Response-Error) + - [Rpc.History.Version](#anytype-Rpc-History-Version) + - [Rpc.LinkPreview](#anytype-Rpc-LinkPreview) + - [Rpc.LinkPreview.Request](#anytype-Rpc-LinkPreview-Request) + - [Rpc.LinkPreview.Response](#anytype-Rpc-LinkPreview-Response) + - [Rpc.LinkPreview.Response.Error](#anytype-Rpc-LinkPreview-Response-Error) + - [Rpc.Log](#anytype-Rpc-Log) + - [Rpc.Log.Send](#anytype-Rpc-Log-Send) + - [Rpc.Log.Send.Request](#anytype-Rpc-Log-Send-Request) + - [Rpc.Log.Send.Response](#anytype-Rpc-Log-Send-Response) + - [Rpc.Log.Send.Response.Error](#anytype-Rpc-Log-Send-Response-Error) + - [Rpc.Metrics](#anytype-Rpc-Metrics) + - [Rpc.Metrics.SetParameters](#anytype-Rpc-Metrics-SetParameters) + - [Rpc.Metrics.SetParameters.Request](#anytype-Rpc-Metrics-SetParameters-Request) + - [Rpc.Metrics.SetParameters.Response](#anytype-Rpc-Metrics-SetParameters-Response) + - [Rpc.Metrics.SetParameters.Response.Error](#anytype-Rpc-Metrics-SetParameters-Response-Error) + - [Rpc.Navigation](#anytype-Rpc-Navigation) + - [Rpc.Navigation.GetObjectInfoWithLinks](#anytype-Rpc-Navigation-GetObjectInfoWithLinks) + - [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Request) + - [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response) + - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error) + - [Rpc.Navigation.ListObjects](#anytype-Rpc-Navigation-ListObjects) + - [Rpc.Navigation.ListObjects.Request](#anytype-Rpc-Navigation-ListObjects-Request) + - [Rpc.Navigation.ListObjects.Response](#anytype-Rpc-Navigation-ListObjects-Response) + - [Rpc.Navigation.ListObjects.Response.Error](#anytype-Rpc-Navigation-ListObjects-Response-Error) + - [Rpc.Object](#anytype-Rpc-Object) + - [Rpc.Object.ApplyTemplate](#anytype-Rpc-Object-ApplyTemplate) + - [Rpc.Object.ApplyTemplate.Request](#anytype-Rpc-Object-ApplyTemplate-Request) + - [Rpc.Object.ApplyTemplate.Response](#anytype-Rpc-Object-ApplyTemplate-Response) + - [Rpc.Object.ApplyTemplate.Response.Error](#anytype-Rpc-Object-ApplyTemplate-Response-Error) + - [Rpc.Object.BookmarkFetch](#anytype-Rpc-Object-BookmarkFetch) + - [Rpc.Object.BookmarkFetch.Request](#anytype-Rpc-Object-BookmarkFetch-Request) + - [Rpc.Object.BookmarkFetch.Response](#anytype-Rpc-Object-BookmarkFetch-Response) + - [Rpc.Object.BookmarkFetch.Response.Error](#anytype-Rpc-Object-BookmarkFetch-Response-Error) + - [Rpc.Object.Close](#anytype-Rpc-Object-Close) + - [Rpc.Object.Close.Request](#anytype-Rpc-Object-Close-Request) + - [Rpc.Object.Close.Response](#anytype-Rpc-Object-Close-Response) + - [Rpc.Object.Close.Response.Error](#anytype-Rpc-Object-Close-Response-Error) + - [Rpc.Object.Create](#anytype-Rpc-Object-Create) + - [Rpc.Object.Create.Request](#anytype-Rpc-Object-Create-Request) + - [Rpc.Object.Create.Response](#anytype-Rpc-Object-Create-Response) + - [Rpc.Object.Create.Response.Error](#anytype-Rpc-Object-Create-Response-Error) + - [Rpc.Object.CreateBookmark](#anytype-Rpc-Object-CreateBookmark) + - [Rpc.Object.CreateBookmark.Request](#anytype-Rpc-Object-CreateBookmark-Request) + - [Rpc.Object.CreateBookmark.Response](#anytype-Rpc-Object-CreateBookmark-Response) + - [Rpc.Object.CreateBookmark.Response.Error](#anytype-Rpc-Object-CreateBookmark-Response-Error) + - [Rpc.Object.CreateObjectType](#anytype-Rpc-Object-CreateObjectType) + - [Rpc.Object.CreateObjectType.Request](#anytype-Rpc-Object-CreateObjectType-Request) + - [Rpc.Object.CreateObjectType.Response](#anytype-Rpc-Object-CreateObjectType-Response) + - [Rpc.Object.CreateObjectType.Response.Error](#anytype-Rpc-Object-CreateObjectType-Response-Error) + - [Rpc.Object.CreateRelation](#anytype-Rpc-Object-CreateRelation) + - [Rpc.Object.CreateRelation.Request](#anytype-Rpc-Object-CreateRelation-Request) + - [Rpc.Object.CreateRelation.Response](#anytype-Rpc-Object-CreateRelation-Response) + - [Rpc.Object.CreateRelation.Response.Error](#anytype-Rpc-Object-CreateRelation-Response-Error) + - [Rpc.Object.CreateRelationOption](#anytype-Rpc-Object-CreateRelationOption) + - [Rpc.Object.CreateRelationOption.Request](#anytype-Rpc-Object-CreateRelationOption-Request) + - [Rpc.Object.CreateRelationOption.Response](#anytype-Rpc-Object-CreateRelationOption-Response) + - [Rpc.Object.CreateRelationOption.Response.Error](#anytype-Rpc-Object-CreateRelationOption-Response-Error) + - [Rpc.Object.CreateSet](#anytype-Rpc-Object-CreateSet) + - [Rpc.Object.CreateSet.Request](#anytype-Rpc-Object-CreateSet-Request) + - [Rpc.Object.CreateSet.Response](#anytype-Rpc-Object-CreateSet-Response) + - [Rpc.Object.CreateSet.Response.Error](#anytype-Rpc-Object-CreateSet-Response-Error) + - [Rpc.Object.Duplicate](#anytype-Rpc-Object-Duplicate) + - [Rpc.Object.Duplicate.Request](#anytype-Rpc-Object-Duplicate-Request) + - [Rpc.Object.Duplicate.Response](#anytype-Rpc-Object-Duplicate-Response) + - [Rpc.Object.Duplicate.Response.Error](#anytype-Rpc-Object-Duplicate-Response-Error) + - [Rpc.Object.Graph](#anytype-Rpc-Object-Graph) + - [Rpc.Object.Graph.Edge](#anytype-Rpc-Object-Graph-Edge) + - [Rpc.Object.Graph.Request](#anytype-Rpc-Object-Graph-Request) + - [Rpc.Object.Graph.Response](#anytype-Rpc-Object-Graph-Response) + - [Rpc.Object.Graph.Response.Error](#anytype-Rpc-Object-Graph-Response-Error) + - [Rpc.Object.GroupsSubscribe](#anytype-Rpc-Object-GroupsSubscribe) + - [Rpc.Object.GroupsSubscribe.Request](#anytype-Rpc-Object-GroupsSubscribe-Request) + - [Rpc.Object.GroupsSubscribe.Response](#anytype-Rpc-Object-GroupsSubscribe-Response) + - [Rpc.Object.GroupsSubscribe.Response.Error](#anytype-Rpc-Object-GroupsSubscribe-Response-Error) + - [Rpc.Object.Import](#anytype-Rpc-Object-Import) + - [Rpc.Object.Import.Notion](#anytype-Rpc-Object-Import-Notion) + - [Rpc.Object.Import.Notion.ValidateToken](#anytype-Rpc-Object-Import-Notion-ValidateToken) + - [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype-Rpc-Object-Import-Notion-ValidateToken-Request) + - [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response) + - [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error) + - [Rpc.Object.Import.Request](#anytype-Rpc-Object-Import-Request) + - [Rpc.Object.Import.Request.BookmarksParams](#anytype-Rpc-Object-Import-Request-BookmarksParams) + - [Rpc.Object.Import.Request.CsvParams](#anytype-Rpc-Object-Import-Request-CsvParams) + - [Rpc.Object.Import.Request.HtmlParams](#anytype-Rpc-Object-Import-Request-HtmlParams) + - [Rpc.Object.Import.Request.MarkdownParams](#anytype-Rpc-Object-Import-Request-MarkdownParams) + - [Rpc.Object.Import.Request.NotionParams](#anytype-Rpc-Object-Import-Request-NotionParams) + - [Rpc.Object.Import.Request.PbParams](#anytype-Rpc-Object-Import-Request-PbParams) + - [Rpc.Object.Import.Request.Snapshot](#anytype-Rpc-Object-Import-Request-Snapshot) + - [Rpc.Object.Import.Request.TxtParams](#anytype-Rpc-Object-Import-Request-TxtParams) + - [Rpc.Object.Import.Response](#anytype-Rpc-Object-Import-Response) + - [Rpc.Object.Import.Response.Error](#anytype-Rpc-Object-Import-Response-Error) + - [Rpc.Object.ImportList](#anytype-Rpc-Object-ImportList) + - [Rpc.Object.ImportList.ImportResponse](#anytype-Rpc-Object-ImportList-ImportResponse) + - [Rpc.Object.ImportList.Request](#anytype-Rpc-Object-ImportList-Request) + - [Rpc.Object.ImportList.Response](#anytype-Rpc-Object-ImportList-Response) + - [Rpc.Object.ImportList.Response.Error](#anytype-Rpc-Object-ImportList-Response-Error) + - [Rpc.Object.ImportUseCase](#anytype-Rpc-Object-ImportUseCase) + - [Rpc.Object.ImportUseCase.Request](#anytype-Rpc-Object-ImportUseCase-Request) + - [Rpc.Object.ImportUseCase.Response](#anytype-Rpc-Object-ImportUseCase-Response) + - [Rpc.Object.ImportUseCase.Response.Error](#anytype-Rpc-Object-ImportUseCase-Response-Error) + - [Rpc.Object.ListDelete](#anytype-Rpc-Object-ListDelete) + - [Rpc.Object.ListDelete.Request](#anytype-Rpc-Object-ListDelete-Request) + - [Rpc.Object.ListDelete.Response](#anytype-Rpc-Object-ListDelete-Response) + - [Rpc.Object.ListDelete.Response.Error](#anytype-Rpc-Object-ListDelete-Response-Error) + - [Rpc.Object.ListDuplicate](#anytype-Rpc-Object-ListDuplicate) + - [Rpc.Object.ListDuplicate.Request](#anytype-Rpc-Object-ListDuplicate-Request) + - [Rpc.Object.ListDuplicate.Response](#anytype-Rpc-Object-ListDuplicate-Response) + - [Rpc.Object.ListDuplicate.Response.Error](#anytype-Rpc-Object-ListDuplicate-Response-Error) + - [Rpc.Object.ListExport](#anytype-Rpc-Object-ListExport) + - [Rpc.Object.ListExport.Request](#anytype-Rpc-Object-ListExport-Request) + - [Rpc.Object.ListExport.Response](#anytype-Rpc-Object-ListExport-Response) + - [Rpc.Object.ListExport.Response.Error](#anytype-Rpc-Object-ListExport-Response-Error) + - [Rpc.Object.ListSetIsArchived](#anytype-Rpc-Object-ListSetIsArchived) + - [Rpc.Object.ListSetIsArchived.Request](#anytype-Rpc-Object-ListSetIsArchived-Request) + - [Rpc.Object.ListSetIsArchived.Response](#anytype-Rpc-Object-ListSetIsArchived-Response) + - [Rpc.Object.ListSetIsArchived.Response.Error](#anytype-Rpc-Object-ListSetIsArchived-Response-Error) + - [Rpc.Object.ListSetIsFavorite](#anytype-Rpc-Object-ListSetIsFavorite) + - [Rpc.Object.ListSetIsFavorite.Request](#anytype-Rpc-Object-ListSetIsFavorite-Request) + - [Rpc.Object.ListSetIsFavorite.Response](#anytype-Rpc-Object-ListSetIsFavorite-Response) + - [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error) + - [Rpc.Object.Open](#anytype-Rpc-Object-Open) + - [Rpc.Object.Open.Request](#anytype-Rpc-Object-Open-Request) + - [Rpc.Object.Open.Response](#anytype-Rpc-Object-Open-Response) + - [Rpc.Object.Open.Response.Error](#anytype-Rpc-Object-Open-Response-Error) + - [Rpc.Object.OpenBreadcrumbs](#anytype-Rpc-Object-OpenBreadcrumbs) + - [Rpc.Object.OpenBreadcrumbs.Request](#anytype-Rpc-Object-OpenBreadcrumbs-Request) + - [Rpc.Object.OpenBreadcrumbs.Response](#anytype-Rpc-Object-OpenBreadcrumbs-Response) + - [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error) + - [Rpc.Object.Redo](#anytype-Rpc-Object-Redo) + - [Rpc.Object.Redo.Request](#anytype-Rpc-Object-Redo-Request) + - [Rpc.Object.Redo.Response](#anytype-Rpc-Object-Redo-Response) + - [Rpc.Object.Redo.Response.Error](#anytype-Rpc-Object-Redo-Response-Error) + - [Rpc.Object.Search](#anytype-Rpc-Object-Search) + - [Rpc.Object.Search.Request](#anytype-Rpc-Object-Search-Request) + - [Rpc.Object.Search.Response](#anytype-Rpc-Object-Search-Response) + - [Rpc.Object.Search.Response.Error](#anytype-Rpc-Object-Search-Response-Error) + - [Rpc.Object.SearchSubscribe](#anytype-Rpc-Object-SearchSubscribe) + - [Rpc.Object.SearchSubscribe.Request](#anytype-Rpc-Object-SearchSubscribe-Request) + - [Rpc.Object.SearchSubscribe.Response](#anytype-Rpc-Object-SearchSubscribe-Response) + - [Rpc.Object.SearchSubscribe.Response.Error](#anytype-Rpc-Object-SearchSubscribe-Response-Error) + - [Rpc.Object.SearchUnsubscribe](#anytype-Rpc-Object-SearchUnsubscribe) + - [Rpc.Object.SearchUnsubscribe.Request](#anytype-Rpc-Object-SearchUnsubscribe-Request) + - [Rpc.Object.SearchUnsubscribe.Response](#anytype-Rpc-Object-SearchUnsubscribe-Response) + - [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error) + - [Rpc.Object.SetBreadcrumbs](#anytype-Rpc-Object-SetBreadcrumbs) + - [Rpc.Object.SetBreadcrumbs.Request](#anytype-Rpc-Object-SetBreadcrumbs-Request) + - [Rpc.Object.SetBreadcrumbs.Response](#anytype-Rpc-Object-SetBreadcrumbs-Response) + - [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error) + - [Rpc.Object.SetDetails](#anytype-Rpc-Object-SetDetails) + - [Rpc.Object.SetDetails.Detail](#anytype-Rpc-Object-SetDetails-Detail) + - [Rpc.Object.SetDetails.Request](#anytype-Rpc-Object-SetDetails-Request) + - [Rpc.Object.SetDetails.Response](#anytype-Rpc-Object-SetDetails-Response) + - [Rpc.Object.SetDetails.Response.Error](#anytype-Rpc-Object-SetDetails-Response-Error) + - [Rpc.Object.SetInternalFlags](#anytype-Rpc-Object-SetInternalFlags) + - [Rpc.Object.SetInternalFlags.Request](#anytype-Rpc-Object-SetInternalFlags-Request) + - [Rpc.Object.SetInternalFlags.Response](#anytype-Rpc-Object-SetInternalFlags-Response) + - [Rpc.Object.SetInternalFlags.Response.Error](#anytype-Rpc-Object-SetInternalFlags-Response-Error) + - [Rpc.Object.SetIsArchived](#anytype-Rpc-Object-SetIsArchived) + - [Rpc.Object.SetIsArchived.Request](#anytype-Rpc-Object-SetIsArchived-Request) + - [Rpc.Object.SetIsArchived.Response](#anytype-Rpc-Object-SetIsArchived-Response) + - [Rpc.Object.SetIsArchived.Response.Error](#anytype-Rpc-Object-SetIsArchived-Response-Error) + - [Rpc.Object.SetIsFavorite](#anytype-Rpc-Object-SetIsFavorite) + - [Rpc.Object.SetIsFavorite.Request](#anytype-Rpc-Object-SetIsFavorite-Request) + - [Rpc.Object.SetIsFavorite.Response](#anytype-Rpc-Object-SetIsFavorite-Response) + - [Rpc.Object.SetIsFavorite.Response.Error](#anytype-Rpc-Object-SetIsFavorite-Response-Error) + - [Rpc.Object.SetLayout](#anytype-Rpc-Object-SetLayout) + - [Rpc.Object.SetLayout.Request](#anytype-Rpc-Object-SetLayout-Request) + - [Rpc.Object.SetLayout.Response](#anytype-Rpc-Object-SetLayout-Response) + - [Rpc.Object.SetLayout.Response.Error](#anytype-Rpc-Object-SetLayout-Response-Error) + - [Rpc.Object.SetObjectType](#anytype-Rpc-Object-SetObjectType) + - [Rpc.Object.SetObjectType.Request](#anytype-Rpc-Object-SetObjectType-Request) + - [Rpc.Object.SetObjectType.Response](#anytype-Rpc-Object-SetObjectType-Response) + - [Rpc.Object.SetObjectType.Response.Error](#anytype-Rpc-Object-SetObjectType-Response-Error) + - [Rpc.Object.SetSource](#anytype-Rpc-Object-SetSource) + - [Rpc.Object.SetSource.Request](#anytype-Rpc-Object-SetSource-Request) + - [Rpc.Object.SetSource.Response](#anytype-Rpc-Object-SetSource-Response) + - [Rpc.Object.SetSource.Response.Error](#anytype-Rpc-Object-SetSource-Response-Error) + - [Rpc.Object.ShareByLink](#anytype-Rpc-Object-ShareByLink) + - [Rpc.Object.ShareByLink.Request](#anytype-Rpc-Object-ShareByLink-Request) + - [Rpc.Object.ShareByLink.Response](#anytype-Rpc-Object-ShareByLink-Response) + - [Rpc.Object.ShareByLink.Response.Error](#anytype-Rpc-Object-ShareByLink-Response-Error) + - [Rpc.Object.Show](#anytype-Rpc-Object-Show) + - [Rpc.Object.Show.Request](#anytype-Rpc-Object-Show-Request) + - [Rpc.Object.Show.Response](#anytype-Rpc-Object-Show-Response) + - [Rpc.Object.Show.Response.Error](#anytype-Rpc-Object-Show-Response-Error) + - [Rpc.Object.SubscribeIds](#anytype-Rpc-Object-SubscribeIds) + - [Rpc.Object.SubscribeIds.Request](#anytype-Rpc-Object-SubscribeIds-Request) + - [Rpc.Object.SubscribeIds.Response](#anytype-Rpc-Object-SubscribeIds-Response) + - [Rpc.Object.SubscribeIds.Response.Error](#anytype-Rpc-Object-SubscribeIds-Response-Error) + - [Rpc.Object.ToBookmark](#anytype-Rpc-Object-ToBookmark) + - [Rpc.Object.ToBookmark.Request](#anytype-Rpc-Object-ToBookmark-Request) + - [Rpc.Object.ToBookmark.Response](#anytype-Rpc-Object-ToBookmark-Response) + - [Rpc.Object.ToBookmark.Response.Error](#anytype-Rpc-Object-ToBookmark-Response-Error) + - [Rpc.Object.ToCollection](#anytype-Rpc-Object-ToCollection) + - [Rpc.Object.ToCollection.Request](#anytype-Rpc-Object-ToCollection-Request) + - [Rpc.Object.ToCollection.Response](#anytype-Rpc-Object-ToCollection-Response) + - [Rpc.Object.ToCollection.Response.Error](#anytype-Rpc-Object-ToCollection-Response-Error) + - [Rpc.Object.ToSet](#anytype-Rpc-Object-ToSet) + - [Rpc.Object.ToSet.Request](#anytype-Rpc-Object-ToSet-Request) + - [Rpc.Object.ToSet.Response](#anytype-Rpc-Object-ToSet-Response) + - [Rpc.Object.ToSet.Response.Error](#anytype-Rpc-Object-ToSet-Response-Error) + - [Rpc.Object.Undo](#anytype-Rpc-Object-Undo) + - [Rpc.Object.Undo.Request](#anytype-Rpc-Object-Undo-Request) + - [Rpc.Object.Undo.Response](#anytype-Rpc-Object-Undo-Response) + - [Rpc.Object.Undo.Response.Error](#anytype-Rpc-Object-Undo-Response-Error) + - [Rpc.Object.UndoRedoCounter](#anytype-Rpc-Object-UndoRedoCounter) + - [Rpc.Object.WorkspaceSetDashboard](#anytype-Rpc-Object-WorkspaceSetDashboard) + - [Rpc.Object.WorkspaceSetDashboard.Request](#anytype-Rpc-Object-WorkspaceSetDashboard-Request) + - [Rpc.Object.WorkspaceSetDashboard.Response](#anytype-Rpc-Object-WorkspaceSetDashboard-Response) + - [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error) + - [Rpc.ObjectCollection](#anytype-Rpc-ObjectCollection) + - [Rpc.ObjectCollection.Add](#anytype-Rpc-ObjectCollection-Add) + - [Rpc.ObjectCollection.Add.Request](#anytype-Rpc-ObjectCollection-Add-Request) + - [Rpc.ObjectCollection.Add.Response](#anytype-Rpc-ObjectCollection-Add-Response) + - [Rpc.ObjectCollection.Add.Response.Error](#anytype-Rpc-ObjectCollection-Add-Response-Error) + - [Rpc.ObjectCollection.Remove](#anytype-Rpc-ObjectCollection-Remove) + - [Rpc.ObjectCollection.Remove.Request](#anytype-Rpc-ObjectCollection-Remove-Request) + - [Rpc.ObjectCollection.Remove.Response](#anytype-Rpc-ObjectCollection-Remove-Response) + - [Rpc.ObjectCollection.Remove.Response.Error](#anytype-Rpc-ObjectCollection-Remove-Response-Error) + - [Rpc.ObjectCollection.Sort](#anytype-Rpc-ObjectCollection-Sort) + - [Rpc.ObjectCollection.Sort.Request](#anytype-Rpc-ObjectCollection-Sort-Request) + - [Rpc.ObjectCollection.Sort.Response](#anytype-Rpc-ObjectCollection-Sort-Response) + - [Rpc.ObjectCollection.Sort.Response.Error](#anytype-Rpc-ObjectCollection-Sort-Response-Error) + - [Rpc.ObjectRelation](#anytype-Rpc-ObjectRelation) + - [Rpc.ObjectRelation.Add](#anytype-Rpc-ObjectRelation-Add) + - [Rpc.ObjectRelation.Add.Request](#anytype-Rpc-ObjectRelation-Add-Request) + - [Rpc.ObjectRelation.Add.Response](#anytype-Rpc-ObjectRelation-Add-Response) + - [Rpc.ObjectRelation.Add.Response.Error](#anytype-Rpc-ObjectRelation-Add-Response-Error) + - [Rpc.ObjectRelation.AddFeatured](#anytype-Rpc-ObjectRelation-AddFeatured) + - [Rpc.ObjectRelation.AddFeatured.Request](#anytype-Rpc-ObjectRelation-AddFeatured-Request) + - [Rpc.ObjectRelation.AddFeatured.Response](#anytype-Rpc-ObjectRelation-AddFeatured-Response) + - [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error) + - [Rpc.ObjectRelation.Delete](#anytype-Rpc-ObjectRelation-Delete) + - [Rpc.ObjectRelation.Delete.Request](#anytype-Rpc-ObjectRelation-Delete-Request) + - [Rpc.ObjectRelation.Delete.Response](#anytype-Rpc-ObjectRelation-Delete-Response) + - [Rpc.ObjectRelation.Delete.Response.Error](#anytype-Rpc-ObjectRelation-Delete-Response-Error) + - [Rpc.ObjectRelation.ListAvailable](#anytype-Rpc-ObjectRelation-ListAvailable) + - [Rpc.ObjectRelation.ListAvailable.Request](#anytype-Rpc-ObjectRelation-ListAvailable-Request) + - [Rpc.ObjectRelation.ListAvailable.Response](#anytype-Rpc-ObjectRelation-ListAvailable-Response) + - [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error) + - [Rpc.ObjectRelation.RemoveFeatured](#anytype-Rpc-ObjectRelation-RemoveFeatured) + - [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype-Rpc-ObjectRelation-RemoveFeatured-Request) + - [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response) + - [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error) + - [Rpc.ObjectType](#anytype-Rpc-ObjectType) + - [Rpc.ObjectType.Relation](#anytype-Rpc-ObjectType-Relation) + - [Rpc.ObjectType.Relation.Add](#anytype-Rpc-ObjectType-Relation-Add) + - [Rpc.ObjectType.Relation.Add.Request](#anytype-Rpc-ObjectType-Relation-Add-Request) + - [Rpc.ObjectType.Relation.Add.Response](#anytype-Rpc-ObjectType-Relation-Add-Response) + - [Rpc.ObjectType.Relation.Add.Response.Error](#anytype-Rpc-ObjectType-Relation-Add-Response-Error) + - [Rpc.ObjectType.Relation.List](#anytype-Rpc-ObjectType-Relation-List) + - [Rpc.ObjectType.Relation.List.Request](#anytype-Rpc-ObjectType-Relation-List-Request) + - [Rpc.ObjectType.Relation.List.Response](#anytype-Rpc-ObjectType-Relation-List-Response) + - [Rpc.ObjectType.Relation.List.Response.Error](#anytype-Rpc-ObjectType-Relation-List-Response-Error) + - [Rpc.ObjectType.Relation.Remove](#anytype-Rpc-ObjectType-Relation-Remove) + - [Rpc.ObjectType.Relation.Remove.Request](#anytype-Rpc-ObjectType-Relation-Remove-Request) + - [Rpc.ObjectType.Relation.Remove.Response](#anytype-Rpc-ObjectType-Relation-Remove-Response) + - [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error) + - [Rpc.Process](#anytype-Rpc-Process) + - [Rpc.Process.Cancel](#anytype-Rpc-Process-Cancel) + - [Rpc.Process.Cancel.Request](#anytype-Rpc-Process-Cancel-Request) + - [Rpc.Process.Cancel.Response](#anytype-Rpc-Process-Cancel-Response) + - [Rpc.Process.Cancel.Response.Error](#anytype-Rpc-Process-Cancel-Response-Error) + - [Rpc.Relation](#anytype-Rpc-Relation) + - [Rpc.Relation.ListRemoveOption](#anytype-Rpc-Relation-ListRemoveOption) + - [Rpc.Relation.ListRemoveOption.Request](#anytype-Rpc-Relation-ListRemoveOption-Request) + - [Rpc.Relation.ListRemoveOption.Response](#anytype-Rpc-Relation-ListRemoveOption-Response) + - [Rpc.Relation.ListRemoveOption.Response.Error](#anytype-Rpc-Relation-ListRemoveOption-Response-Error) + - [Rpc.Relation.Options](#anytype-Rpc-Relation-Options) + - [Rpc.Relation.Options.Request](#anytype-Rpc-Relation-Options-Request) + - [Rpc.Relation.Options.Response](#anytype-Rpc-Relation-Options-Response) + - [Rpc.Relation.Options.Response.Error](#anytype-Rpc-Relation-Options-Response-Error) + - [Rpc.Template](#anytype-Rpc-Template) + - [Rpc.Template.Clone](#anytype-Rpc-Template-Clone) + - [Rpc.Template.Clone.Request](#anytype-Rpc-Template-Clone-Request) + - [Rpc.Template.Clone.Response](#anytype-Rpc-Template-Clone-Response) + - [Rpc.Template.Clone.Response.Error](#anytype-Rpc-Template-Clone-Response-Error) + - [Rpc.Template.CreateFromObject](#anytype-Rpc-Template-CreateFromObject) + - [Rpc.Template.CreateFromObject.Request](#anytype-Rpc-Template-CreateFromObject-Request) + - [Rpc.Template.CreateFromObject.Response](#anytype-Rpc-Template-CreateFromObject-Response) + - [Rpc.Template.CreateFromObject.Response.Error](#anytype-Rpc-Template-CreateFromObject-Response-Error) + - [Rpc.Template.CreateFromObjectType](#anytype-Rpc-Template-CreateFromObjectType) + - [Rpc.Template.CreateFromObjectType.Request](#anytype-Rpc-Template-CreateFromObjectType-Request) + - [Rpc.Template.CreateFromObjectType.Response](#anytype-Rpc-Template-CreateFromObjectType-Response) + - [Rpc.Template.CreateFromObjectType.Response.Error](#anytype-Rpc-Template-CreateFromObjectType-Response-Error) + - [Rpc.Template.ExportAll](#anytype-Rpc-Template-ExportAll) + - [Rpc.Template.ExportAll.Request](#anytype-Rpc-Template-ExportAll-Request) + - [Rpc.Template.ExportAll.Response](#anytype-Rpc-Template-ExportAll-Response) + - [Rpc.Template.ExportAll.Response.Error](#anytype-Rpc-Template-ExportAll-Response-Error) + - [Rpc.Unsplash](#anytype-Rpc-Unsplash) + - [Rpc.Unsplash.Download](#anytype-Rpc-Unsplash-Download) + - [Rpc.Unsplash.Download.Request](#anytype-Rpc-Unsplash-Download-Request) + - [Rpc.Unsplash.Download.Response](#anytype-Rpc-Unsplash-Download-Response) + - [Rpc.Unsplash.Download.Response.Error](#anytype-Rpc-Unsplash-Download-Response-Error) + - [Rpc.Unsplash.Search](#anytype-Rpc-Unsplash-Search) + - [Rpc.Unsplash.Search.Request](#anytype-Rpc-Unsplash-Search-Request) + - [Rpc.Unsplash.Search.Response](#anytype-Rpc-Unsplash-Search-Response) + - [Rpc.Unsplash.Search.Response.Error](#anytype-Rpc-Unsplash-Search-Response-Error) + - [Rpc.Unsplash.Search.Response.Picture](#anytype-Rpc-Unsplash-Search-Response-Picture) + - [Rpc.UserData](#anytype-Rpc-UserData) + - [Rpc.UserData.Dump](#anytype-Rpc-UserData-Dump) + - [Rpc.UserData.Dump.Request](#anytype-Rpc-UserData-Dump-Request) + - [Rpc.UserData.Dump.Response](#anytype-Rpc-UserData-Dump-Response) + - [Rpc.UserData.Dump.Response.Error](#anytype-Rpc-UserData-Dump-Response-Error) + - [Rpc.Wallet](#anytype-Rpc-Wallet) + - [Rpc.Wallet.CloseSession](#anytype-Rpc-Wallet-CloseSession) + - [Rpc.Wallet.CloseSession.Request](#anytype-Rpc-Wallet-CloseSession-Request) + - [Rpc.Wallet.CloseSession.Response](#anytype-Rpc-Wallet-CloseSession-Response) + - [Rpc.Wallet.CloseSession.Response.Error](#anytype-Rpc-Wallet-CloseSession-Response-Error) + - [Rpc.Wallet.Convert](#anytype-Rpc-Wallet-Convert) + - [Rpc.Wallet.Convert.Request](#anytype-Rpc-Wallet-Convert-Request) + - [Rpc.Wallet.Convert.Response](#anytype-Rpc-Wallet-Convert-Response) + - [Rpc.Wallet.Convert.Response.Error](#anytype-Rpc-Wallet-Convert-Response-Error) + - [Rpc.Wallet.Create](#anytype-Rpc-Wallet-Create) + - [Rpc.Wallet.Create.Request](#anytype-Rpc-Wallet-Create-Request) + - [Rpc.Wallet.Create.Response](#anytype-Rpc-Wallet-Create-Response) + - [Rpc.Wallet.Create.Response.Error](#anytype-Rpc-Wallet-Create-Response-Error) + - [Rpc.Wallet.CreateSession](#anytype-Rpc-Wallet-CreateSession) + - [Rpc.Wallet.CreateSession.Request](#anytype-Rpc-Wallet-CreateSession-Request) + - [Rpc.Wallet.CreateSession.Response](#anytype-Rpc-Wallet-CreateSession-Response) + - [Rpc.Wallet.CreateSession.Response.Error](#anytype-Rpc-Wallet-CreateSession-Response-Error) + - [Rpc.Wallet.Recover](#anytype-Rpc-Wallet-Recover) + - [Rpc.Wallet.Recover.Request](#anytype-Rpc-Wallet-Recover-Request) + - [Rpc.Wallet.Recover.Response](#anytype-Rpc-Wallet-Recover-Response) + - [Rpc.Wallet.Recover.Response.Error](#anytype-Rpc-Wallet-Recover-Response-Error) + - [Rpc.Workspace](#anytype-Rpc-Workspace) + - [Rpc.Workspace.Create](#anytype-Rpc-Workspace-Create) + - [Rpc.Workspace.Create.Request](#anytype-Rpc-Workspace-Create-Request) + - [Rpc.Workspace.Create.Response](#anytype-Rpc-Workspace-Create-Response) + - [Rpc.Workspace.Create.Response.Error](#anytype-Rpc-Workspace-Create-Response-Error) + - [Rpc.Workspace.Export](#anytype-Rpc-Workspace-Export) + - [Rpc.Workspace.Export.Request](#anytype-Rpc-Workspace-Export-Request) + - [Rpc.Workspace.Export.Response](#anytype-Rpc-Workspace-Export-Response) + - [Rpc.Workspace.Export.Response.Error](#anytype-Rpc-Workspace-Export-Response-Error) + - [Rpc.Workspace.GetAll](#anytype-Rpc-Workspace-GetAll) + - [Rpc.Workspace.GetAll.Request](#anytype-Rpc-Workspace-GetAll-Request) + - [Rpc.Workspace.GetAll.Response](#anytype-Rpc-Workspace-GetAll-Response) + - [Rpc.Workspace.GetAll.Response.Error](#anytype-Rpc-Workspace-GetAll-Response-Error) + - [Rpc.Workspace.GetCurrent](#anytype-Rpc-Workspace-GetCurrent) + - [Rpc.Workspace.GetCurrent.Request](#anytype-Rpc-Workspace-GetCurrent-Request) + - [Rpc.Workspace.GetCurrent.Response](#anytype-Rpc-Workspace-GetCurrent-Response) + - [Rpc.Workspace.GetCurrent.Response.Error](#anytype-Rpc-Workspace-GetCurrent-Response-Error) + - [Rpc.Workspace.Object](#anytype-Rpc-Workspace-Object) + - [Rpc.Workspace.Object.Add](#anytype-Rpc-Workspace-Object-Add) + - [Rpc.Workspace.Object.Add.Request](#anytype-Rpc-Workspace-Object-Add-Request) + - [Rpc.Workspace.Object.Add.Response](#anytype-Rpc-Workspace-Object-Add-Response) + - [Rpc.Workspace.Object.Add.Response.Error](#anytype-Rpc-Workspace-Object-Add-Response-Error) + - [Rpc.Workspace.Object.ListAdd](#anytype-Rpc-Workspace-Object-ListAdd) + - [Rpc.Workspace.Object.ListAdd.Request](#anytype-Rpc-Workspace-Object-ListAdd-Request) + - [Rpc.Workspace.Object.ListAdd.Response](#anytype-Rpc-Workspace-Object-ListAdd-Response) + - [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error) + - [Rpc.Workspace.Object.ListRemove](#anytype-Rpc-Workspace-Object-ListRemove) + - [Rpc.Workspace.Object.ListRemove.Request](#anytype-Rpc-Workspace-Object-ListRemove-Request) + - [Rpc.Workspace.Object.ListRemove.Response](#anytype-Rpc-Workspace-Object-ListRemove-Response) + - [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error) + - [Rpc.Workspace.Select](#anytype-Rpc-Workspace-Select) + - [Rpc.Workspace.Select.Request](#anytype-Rpc-Workspace-Select-Request) + - [Rpc.Workspace.Select.Response](#anytype-Rpc-Workspace-Select-Response) + - [Rpc.Workspace.Select.Response.Error](#anytype-Rpc-Workspace-Select-Response-Error) + - [Rpc.Workspace.SetIsHighlighted](#anytype-Rpc-Workspace-SetIsHighlighted) + - [Rpc.Workspace.SetIsHighlighted.Request](#anytype-Rpc-Workspace-SetIsHighlighted-Request) + - [Rpc.Workspace.SetIsHighlighted.Response](#anytype-Rpc-Workspace-SetIsHighlighted-Response) + - [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error) + - [StreamRequest](#anytype-StreamRequest) - - [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype.Rpc.Account.ConfigUpdate.Response.Error.Code) - - [Rpc.Account.ConfigUpdate.Timezones](#anytype.Rpc.Account.ConfigUpdate.Timezones) - - [Rpc.Account.Create.Response.Error.Code](#anytype.Rpc.Account.Create.Response.Error.Code) - - [Rpc.Account.Delete.Response.Error.Code](#anytype.Rpc.Account.Delete.Response.Error.Code) - - [Rpc.Account.Move.Response.Error.Code](#anytype.Rpc.Account.Move.Response.Error.Code) - - [Rpc.Account.Recover.Response.Error.Code](#anytype.Rpc.Account.Recover.Response.Error.Code) - - [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error.Code) - - [Rpc.Account.Select.Response.Error.Code](#anytype.Rpc.Account.Select.Response.Error.Code) - - [Rpc.Account.Stop.Response.Error.Code](#anytype.Rpc.Account.Stop.Response.Error.Code) - - [Rpc.App.GetVersion.Response.Error.Code](#anytype.Rpc.App.GetVersion.Response.Error.Code) - - [Rpc.App.SetDeviceState.Request.DeviceState](#anytype.Rpc.App.SetDeviceState.Request.DeviceState) - - [Rpc.App.SetDeviceState.Response.Error.Code](#anytype.Rpc.App.SetDeviceState.Response.Error.Code) - - [Rpc.App.Shutdown.Response.Error.Code](#anytype.Rpc.App.Shutdown.Response.Error.Code) - - [Rpc.Block.Copy.Response.Error.Code](#anytype.Rpc.Block.Copy.Response.Error.Code) - - [Rpc.Block.Create.Response.Error.Code](#anytype.Rpc.Block.Create.Response.Error.Code) - - [Rpc.Block.CreateWidget.Response.Error.Code](#anytype.Rpc.Block.CreateWidget.Response.Error.Code) - - [Rpc.Block.Cut.Response.Error.Code](#anytype.Rpc.Block.Cut.Response.Error.Code) - - [Rpc.Block.Download.Response.Error.Code](#anytype.Rpc.Block.Download.Response.Error.Code) - - [Rpc.Block.Export.Response.Error.Code](#anytype.Rpc.Block.Export.Response.Error.Code) - - [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype.Rpc.Block.ListConvertToObjects.Response.Error.Code) - - [Rpc.Block.ListDelete.Response.Error.Code](#anytype.Rpc.Block.ListDelete.Response.Error.Code) - - [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype.Rpc.Block.ListDuplicate.Response.Error.Code) - - [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error.Code) - - [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error.Code) - - [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetAlign.Response.Error.Code) - - [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error.Code) - - [Rpc.Block.ListSetFields.Response.Error.Code](#anytype.Rpc.Block.ListSetFields.Response.Error.Code) - - [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error.Code) - - [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype.Rpc.Block.ListTurnInto.Response.Error.Code) - - [Rpc.Block.Merge.Response.Error.Code](#anytype.Rpc.Block.Merge.Response.Error.Code) - - [Rpc.Block.Paste.Response.Error.Code](#anytype.Rpc.Block.Paste.Response.Error.Code) - - [Rpc.Block.Replace.Response.Error.Code](#anytype.Rpc.Block.Replace.Response.Error.Code) - - [Rpc.Block.SetFields.Response.Error.Code](#anytype.Rpc.Block.SetFields.Response.Error.Code) - - [Rpc.Block.Split.Request.Mode](#anytype.Rpc.Block.Split.Request.Mode) - - [Rpc.Block.Split.Response.Error.Code](#anytype.Rpc.Block.Split.Response.Error.Code) - - [Rpc.Block.Upload.Response.Error.Code](#anytype.Rpc.Block.Upload.Response.Error.Code) - - [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code) - - [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.Fetch.Response.Error.Code) - - [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error.Code) - - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code) - - [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error.Code) - - [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error.Code) - - [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error.Code) - - [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error.Code) - - [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code) - - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code) - - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code) - - [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error.Code) - - [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error.Code) - - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code) - - [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype.Rpc.BlockDataview.SetSource.Response.Error.Code) - - [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error.Code) - - [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error.Code) - - [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error.Code) - - [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error.Code) - - [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Create.Response.Error.Code) - - [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Delete.Response.Error.Code) - - [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error.Code) - - [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error.Code) - - [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Update.Response.Error.Code) - - [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code) - - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code) - - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code) - - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code) - - [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error.Code) - - [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error.Code) - - [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error.Code) - - [Rpc.BlockFile.SetName.Response.Error.Code](#anytype.Rpc.BlockFile.SetName.Response.Error.Code) - - [Rpc.BlockImage.SetName.Response.Error.Code](#anytype.Rpc.BlockImage.SetName.Response.Error.Code) - - [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype.Rpc.BlockImage.SetWidth.Response.Error.Code) - - [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype.Rpc.BlockLatex.SetText.Response.Error.Code) - - [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error.Code) - - [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error.Code) - - [Rpc.BlockRelation.Add.Response.Error.Code](#anytype.Rpc.BlockRelation.Add.Response.Error.Code) - - [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype.Rpc.BlockRelation.SetKey.Response.Error.Code) - - [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error.Code) - - [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error.Code) - - [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error.Code) - - [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error.Code) - - [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnMove.Response.Error.Code) - - [Rpc.BlockTable.Create.Response.Error.Code](#anytype.Rpc.BlockTable.Create.Response.Error.Code) - - [Rpc.BlockTable.Expand.Response.Error.Code](#anytype.Rpc.BlockTable.Expand.Response.Error.Code) - - [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype.Rpc.BlockTable.RowCreate.Response.Error.Code) - - [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype.Rpc.BlockTable.RowDelete.Response.Error.Code) - - [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error.Code) - - [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype.Rpc.BlockTable.RowListClean.Response.Error.Code) - - [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype.Rpc.BlockTable.RowListFill.Response.Error.Code) - - [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error.Code) - - [Rpc.BlockTable.Sort.Response.Error.Code](#anytype.Rpc.BlockTable.Sort.Response.Error.Code) - - [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype.Rpc.BlockText.ListClearContent.Response.Error.Code) - - [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListClearStyle.Response.Error.Code) - - [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype.Rpc.BlockText.ListSetColor.Response.Error.Code) - - [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype.Rpc.BlockText.ListSetMark.Response.Error.Code) - - [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListSetStyle.Response.Error.Code) - - [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype.Rpc.BlockText.SetChecked.Response.Error.Code) - - [Rpc.BlockText.SetColor.Response.Error.Code](#anytype.Rpc.BlockText.SetColor.Response.Error.Code) - - [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype.Rpc.BlockText.SetIcon.Response.Error.Code) - - [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error.Code) - - [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype.Rpc.BlockText.SetStyle.Response.Error.Code) - - [Rpc.BlockText.SetText.Response.Error.Code](#anytype.Rpc.BlockText.SetText.Response.Error.Code) - - [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype.Rpc.BlockVideo.SetName.Response.Error.Code) - - [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype.Rpc.BlockVideo.SetWidth.Response.Error.Code) - - [Rpc.BlockWidget.SetLayout.Response.Error.Code](#anytype.Rpc.BlockWidget.SetLayout.Response.Error.Code) - - [Rpc.BlockWidget.SetLimit.Response.Error.Code](#anytype.Rpc.BlockWidget.SetLimit.Response.Error.Code) - - [Rpc.BlockWidget.SetTargetId.Response.Error.Code](#anytype.Rpc.BlockWidget.SetTargetId.Response.Error.Code) - - [Rpc.BlockWidget.SetViewId.Response.Error.Code](#anytype.Rpc.BlockWidget.SetViewId.Response.Error.Code) - - [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype.Rpc.Debug.ExportLocalstore.Response.Error.Code) - - [Rpc.Debug.Ping.Response.Error.Code](#anytype.Rpc.Debug.Ping.Response.Error.Code) - - [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype.Rpc.Debug.SpaceSummary.Response.Error.Code) - - [Rpc.Debug.Tree.Response.Error.Code](#anytype.Rpc.Debug.Tree.Response.Error.Code) - - [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype.Rpc.Debug.TreeHeads.Response.Error.Code) - - [Rpc.File.Download.Response.Error.Code](#anytype.Rpc.File.Download.Response.Error.Code) - - [Rpc.File.Drop.Response.Error.Code](#anytype.Rpc.File.Drop.Response.Error.Code) - - [Rpc.File.ListOffload.Response.Error.Code](#anytype.Rpc.File.ListOffload.Response.Error.Code) - - [Rpc.File.Offload.Response.Error.Code](#anytype.Rpc.File.Offload.Response.Error.Code) - - [Rpc.File.SpaceUsage.Response.Error.Code](#anytype.Rpc.File.SpaceUsage.Response.Error.Code) - - [Rpc.File.Upload.Response.Error.Code](#anytype.Rpc.File.Upload.Response.Error.Code) - - [Rpc.GenericErrorResponse.Error.Code](#anytype.Rpc.GenericErrorResponse.Error.Code) - - [Rpc.History.GetVersions.Response.Error.Code](#anytype.Rpc.History.GetVersions.Response.Error.Code) - - [Rpc.History.SetVersion.Response.Error.Code](#anytype.Rpc.History.SetVersion.Response.Error.Code) - - [Rpc.History.ShowVersion.Response.Error.Code](#anytype.Rpc.History.ShowVersion.Response.Error.Code) - - [Rpc.LinkPreview.Response.Error.Code](#anytype.Rpc.LinkPreview.Response.Error.Code) - - [Rpc.Log.Send.Request.Level](#anytype.Rpc.Log.Send.Request.Level) - - [Rpc.Log.Send.Response.Error.Code](#anytype.Rpc.Log.Send.Response.Error.Code) - - [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype.Rpc.Metrics.SetParameters.Response.Error.Code) - - [Rpc.Navigation.Context](#anytype.Rpc.Navigation.Context) - - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code) - - [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype.Rpc.Navigation.ListObjects.Response.Error.Code) - - [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype.Rpc.Object.ApplyTemplate.Response.Error.Code) - - [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype.Rpc.Object.BookmarkFetch.Response.Error.Code) - - [Rpc.Object.Close.Response.Error.Code](#anytype.Rpc.Object.Close.Response.Error.Code) - - [Rpc.Object.Create.Response.Error.Code](#anytype.Rpc.Object.Create.Response.Error.Code) - - [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype.Rpc.Object.CreateBookmark.Response.Error.Code) - - [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype.Rpc.Object.CreateObjectType.Response.Error.Code) - - [Rpc.Object.CreateRelation.Response.Error.Code](#anytype.Rpc.Object.CreateRelation.Response.Error.Code) - - [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype.Rpc.Object.CreateRelationOption.Response.Error.Code) - - [Rpc.Object.CreateSet.Response.Error.Code](#anytype.Rpc.Object.CreateSet.Response.Error.Code) - - [Rpc.Object.Duplicate.Response.Error.Code](#anytype.Rpc.Object.Duplicate.Response.Error.Code) - - [Rpc.Object.Graph.Edge.Type](#anytype.Rpc.Object.Graph.Edge.Type) - - [Rpc.Object.Graph.Response.Error.Code](#anytype.Rpc.Object.Graph.Response.Error.Code) - - [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype.Rpc.Object.GroupsSubscribe.Response.Error.Code) - - [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code) - - [Rpc.Object.Import.Request.CsvParams.Mode](#anytype.Rpc.Object.Import.Request.CsvParams.Mode) - - [Rpc.Object.Import.Request.Mode](#anytype.Rpc.Object.Import.Request.Mode) - - [Rpc.Object.Import.Request.Type](#anytype.Rpc.Object.Import.Request.Type) - - [Rpc.Object.Import.Response.Error.Code](#anytype.Rpc.Object.Import.Response.Error.Code) - - [Rpc.Object.ImportList.ImportResponse.Type](#anytype.Rpc.Object.ImportList.ImportResponse.Type) - - [Rpc.Object.ImportList.Response.Error.Code](#anytype.Rpc.Object.ImportList.Response.Error.Code) - - [Rpc.Object.ImportUseCase.Request.UseCase](#anytype.Rpc.Object.ImportUseCase.Request.UseCase) - - [Rpc.Object.ImportUseCase.Response.Error.Code](#anytype.Rpc.Object.ImportUseCase.Response.Error.Code) - - [Rpc.Object.ListDelete.Response.Error.Code](#anytype.Rpc.Object.ListDelete.Response.Error.Code) - - [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype.Rpc.Object.ListDuplicate.Response.Error.Code) - - [Rpc.Object.ListExport.Format](#anytype.Rpc.Object.ListExport.Format) - - [Rpc.Object.ListExport.Response.Error.Code](#anytype.Rpc.Object.ListExport.Response.Error.Code) - - [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype.Rpc.Object.ListSetIsArchived.Response.Error.Code) - - [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error.Code) - - [Rpc.Object.Open.Response.Error.Code](#anytype.Rpc.Object.Open.Response.Error.Code) - - [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error.Code) - - [Rpc.Object.Redo.Response.Error.Code](#anytype.Rpc.Object.Redo.Response.Error.Code) - - [Rpc.Object.Search.Response.Error.Code](#anytype.Rpc.Object.Search.Response.Error.Code) - - [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchSubscribe.Response.Error.Code) - - [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error.Code) - - [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error.Code) - - [Rpc.Object.SetDetails.Response.Error.Code](#anytype.Rpc.Object.SetDetails.Response.Error.Code) - - [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype.Rpc.Object.SetInternalFlags.Response.Error.Code) - - [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype.Rpc.Object.SetIsArchived.Response.Error.Code) - - [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.SetIsFavorite.Response.Error.Code) - - [Rpc.Object.SetLayout.Response.Error.Code](#anytype.Rpc.Object.SetLayout.Response.Error.Code) - - [Rpc.Object.SetObjectType.Response.Error.Code](#anytype.Rpc.Object.SetObjectType.Response.Error.Code) - - [Rpc.Object.SetSource.Response.Error.Code](#anytype.Rpc.Object.SetSource.Response.Error.Code) - - [Rpc.Object.ShareByLink.Response.Error.Code](#anytype.Rpc.Object.ShareByLink.Response.Error.Code) - - [Rpc.Object.Show.Response.Error.Code](#anytype.Rpc.Object.Show.Response.Error.Code) - - [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype.Rpc.Object.SubscribeIds.Response.Error.Code) - - [Rpc.Object.ToBookmark.Response.Error.Code](#anytype.Rpc.Object.ToBookmark.Response.Error.Code) - - [Rpc.Object.ToCollection.Response.Error.Code](#anytype.Rpc.Object.ToCollection.Response.Error.Code) - - [Rpc.Object.ToSet.Response.Error.Code](#anytype.Rpc.Object.ToSet.Response.Error.Code) - - [Rpc.Object.Undo.Response.Error.Code](#anytype.Rpc.Object.Undo.Response.Error.Code) - - [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error.Code) - - [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype.Rpc.ObjectCollection.Add.Response.Error.Code) - - [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype.Rpc.ObjectCollection.Remove.Response.Error.Code) - - [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype.Rpc.ObjectCollection.Sort.Response.Error.Code) - - [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype.Rpc.ObjectRelation.Add.Response.Error.Code) - - [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error.Code) - - [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype.Rpc.ObjectRelation.Delete.Response.Error.Code) - - [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error.Code) - - [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code) - - [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Add.Response.Error.Code) - - [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.List.Response.Error.Code) - - [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error.Code) - - [Rpc.Process.Cancel.Response.Error.Code](#anytype.Rpc.Process.Cancel.Response.Error.Code) - - [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype.Rpc.Relation.ListRemoveOption.Response.Error.Code) - - [Rpc.Relation.Options.Response.Error.Code](#anytype.Rpc.Relation.Options.Response.Error.Code) - - [Rpc.Template.Clone.Response.Error.Code](#anytype.Rpc.Template.Clone.Response.Error.Code) - - [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype.Rpc.Template.CreateFromObject.Response.Error.Code) - - [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype.Rpc.Template.CreateFromObjectType.Response.Error.Code) - - [Rpc.Template.ExportAll.Response.Error.Code](#anytype.Rpc.Template.ExportAll.Response.Error.Code) - - [Rpc.Unsplash.Download.Response.Error.Code](#anytype.Rpc.Unsplash.Download.Response.Error.Code) - - [Rpc.Unsplash.Search.Response.Error.Code](#anytype.Rpc.Unsplash.Search.Response.Error.Code) - - [Rpc.UserData.Dump.Response.Error.Code](#anytype.Rpc.UserData.Dump.Response.Error.Code) - - [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype.Rpc.Wallet.CloseSession.Response.Error.Code) - - [Rpc.Wallet.Convert.Response.Error.Code](#anytype.Rpc.Wallet.Convert.Response.Error.Code) - - [Rpc.Wallet.Create.Response.Error.Code](#anytype.Rpc.Wallet.Create.Response.Error.Code) - - [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype.Rpc.Wallet.CreateSession.Response.Error.Code) - - [Rpc.Wallet.Recover.Response.Error.Code](#anytype.Rpc.Wallet.Recover.Response.Error.Code) - - [Rpc.Workspace.Create.Response.Error.Code](#anytype.Rpc.Workspace.Create.Response.Error.Code) - - [Rpc.Workspace.Export.Response.Error.Code](#anytype.Rpc.Workspace.Export.Response.Error.Code) - - [Rpc.Workspace.GetAll.Response.Error.Code](#anytype.Rpc.Workspace.GetAll.Response.Error.Code) - - [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype.Rpc.Workspace.GetCurrent.Response.Error.Code) - - [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype.Rpc.Workspace.Object.Add.Response.Error.Code) - - [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error.Code) - - [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error.Code) - - [Rpc.Workspace.Select.Response.Error.Code](#anytype.Rpc.Workspace.Select.Response.Error.Code) - - [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error.Code) + - [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype-Rpc-Account-ConfigUpdate-Response-Error-Code) + - [Rpc.Account.ConfigUpdate.Timezones](#anytype-Rpc-Account-ConfigUpdate-Timezones) + - [Rpc.Account.Create.Response.Error.Code](#anytype-Rpc-Account-Create-Response-Error-Code) + - [Rpc.Account.Delete.Response.Error.Code](#anytype-Rpc-Account-Delete-Response-Error-Code) + - [Rpc.Account.Move.Response.Error.Code](#anytype-Rpc-Account-Move-Response-Error-Code) + - [Rpc.Account.Recover.Response.Error.Code](#anytype-Rpc-Account-Recover-Response-Error-Code) + - [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error-Code) + - [Rpc.Account.Select.Response.Error.Code](#anytype-Rpc-Account-Select-Response-Error-Code) + - [Rpc.Account.Stop.Response.Error.Code](#anytype-Rpc-Account-Stop-Response-Error-Code) + - [Rpc.App.GetVersion.Response.Error.Code](#anytype-Rpc-App-GetVersion-Response-Error-Code) + - [Rpc.App.SetDeviceState.Request.DeviceState](#anytype-Rpc-App-SetDeviceState-Request-DeviceState) + - [Rpc.App.SetDeviceState.Response.Error.Code](#anytype-Rpc-App-SetDeviceState-Response-Error-Code) + - [Rpc.App.Shutdown.Response.Error.Code](#anytype-Rpc-App-Shutdown-Response-Error-Code) + - [Rpc.Block.Copy.Response.Error.Code](#anytype-Rpc-Block-Copy-Response-Error-Code) + - [Rpc.Block.Create.Response.Error.Code](#anytype-Rpc-Block-Create-Response-Error-Code) + - [Rpc.Block.CreateWidget.Response.Error.Code](#anytype-Rpc-Block-CreateWidget-Response-Error-Code) + - [Rpc.Block.Cut.Response.Error.Code](#anytype-Rpc-Block-Cut-Response-Error-Code) + - [Rpc.Block.Download.Response.Error.Code](#anytype-Rpc-Block-Download-Response-Error-Code) + - [Rpc.Block.Export.Response.Error.Code](#anytype-Rpc-Block-Export-Response-Error-Code) + - [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype-Rpc-Block-ListConvertToObjects-Response-Error-Code) + - [Rpc.Block.ListDelete.Response.Error.Code](#anytype-Rpc-Block-ListDelete-Response-Error-Code) + - [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype-Rpc-Block-ListDuplicate-Response-Error-Code) + - [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error-Code) + - [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error-Code) + - [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetAlign-Response-Error-Code) + - [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error-Code) + - [Rpc.Block.ListSetFields.Response.Error.Code](#anytype-Rpc-Block-ListSetFields-Response-Error-Code) + - [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error-Code) + - [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype-Rpc-Block-ListTurnInto-Response-Error-Code) + - [Rpc.Block.Merge.Response.Error.Code](#anytype-Rpc-Block-Merge-Response-Error-Code) + - [Rpc.Block.Paste.Response.Error.Code](#anytype-Rpc-Block-Paste-Response-Error-Code) + - [Rpc.Block.Replace.Response.Error.Code](#anytype-Rpc-Block-Replace-Response-Error-Code) + - [Rpc.Block.SetFields.Response.Error.Code](#anytype-Rpc-Block-SetFields-Response-Error-Code) + - [Rpc.Block.Split.Request.Mode](#anytype-Rpc-Block-Split-Request-Mode) + - [Rpc.Block.Split.Response.Error.Code](#anytype-Rpc-Block-Split-Response-Error-Code) + - [Rpc.Block.Upload.Response.Error.Code](#anytype-Rpc-Block-Upload-Response-Error-Code) + - [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error-Code) + - [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-Fetch-Response-Error-Code) + - [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error-Code) + - [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error-Code) + - [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error-Code) + - [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error-Code) + - [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error-Code) + - [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error-Code) + - [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error-Code) + - [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error-Code) + - [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error-Code) + - [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error-Code) + - [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error-Code) + - [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error-Code) + - [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype-Rpc-BlockDataview-SetSource-Response-Error-Code) + - [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error-Code) + - [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error-Code) + - [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error-Code) + - [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error-Code) + - [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Create-Response-Error-Code) + - [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Delete-Response-Error-Code) + - [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error-Code) + - [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error-Code) + - [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Update-Response-Error-Code) + - [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error-Code) + - [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error-Code) + - [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error-Code) + - [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error-Code) + - [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error-Code) + - [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error-Code) + - [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error-Code) + - [Rpc.BlockFile.SetName.Response.Error.Code](#anytype-Rpc-BlockFile-SetName-Response-Error-Code) + - [Rpc.BlockImage.SetName.Response.Error.Code](#anytype-Rpc-BlockImage-SetName-Response-Error-Code) + - [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype-Rpc-BlockImage-SetWidth-Response-Error-Code) + - [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype-Rpc-BlockLatex-SetText-Response-Error-Code) + - [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error-Code) + - [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error-Code) + - [Rpc.BlockRelation.Add.Response.Error.Code](#anytype-Rpc-BlockRelation-Add-Response-Error-Code) + - [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype-Rpc-BlockRelation-SetKey-Response-Error-Code) + - [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error-Code) + - [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error-Code) + - [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error-Code) + - [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error-Code) + - [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnMove-Response-Error-Code) + - [Rpc.BlockTable.Create.Response.Error.Code](#anytype-Rpc-BlockTable-Create-Response-Error-Code) + - [Rpc.BlockTable.Expand.Response.Error.Code](#anytype-Rpc-BlockTable-Expand-Response-Error-Code) + - [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype-Rpc-BlockTable-RowCreate-Response-Error-Code) + - [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype-Rpc-BlockTable-RowDelete-Response-Error-Code) + - [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error-Code) + - [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype-Rpc-BlockTable-RowListClean-Response-Error-Code) + - [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype-Rpc-BlockTable-RowListFill-Response-Error-Code) + - [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error-Code) + - [Rpc.BlockTable.Sort.Response.Error.Code](#anytype-Rpc-BlockTable-Sort-Response-Error-Code) + - [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype-Rpc-BlockText-ListClearContent-Response-Error-Code) + - [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListClearStyle-Response-Error-Code) + - [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype-Rpc-BlockText-ListSetColor-Response-Error-Code) + - [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype-Rpc-BlockText-ListSetMark-Response-Error-Code) + - [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListSetStyle-Response-Error-Code) + - [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype-Rpc-BlockText-SetChecked-Response-Error-Code) + - [Rpc.BlockText.SetColor.Response.Error.Code](#anytype-Rpc-BlockText-SetColor-Response-Error-Code) + - [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype-Rpc-BlockText-SetIcon-Response-Error-Code) + - [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error-Code) + - [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype-Rpc-BlockText-SetStyle-Response-Error-Code) + - [Rpc.BlockText.SetText.Response.Error.Code](#anytype-Rpc-BlockText-SetText-Response-Error-Code) + - [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype-Rpc-BlockVideo-SetName-Response-Error-Code) + - [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype-Rpc-BlockVideo-SetWidth-Response-Error-Code) + - [Rpc.BlockWidget.SetLayout.Response.Error.Code](#anytype-Rpc-BlockWidget-SetLayout-Response-Error-Code) + - [Rpc.BlockWidget.SetLimit.Response.Error.Code](#anytype-Rpc-BlockWidget-SetLimit-Response-Error-Code) + - [Rpc.BlockWidget.SetTargetId.Response.Error.Code](#anytype-Rpc-BlockWidget-SetTargetId-Response-Error-Code) + - [Rpc.BlockWidget.SetViewId.Response.Error.Code](#anytype-Rpc-BlockWidget-SetViewId-Response-Error-Code) + - [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype-Rpc-Debug-ExportLocalstore-Response-Error-Code) + - [Rpc.Debug.Ping.Response.Error.Code](#anytype-Rpc-Debug-Ping-Response-Error-Code) + - [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype-Rpc-Debug-SpaceSummary-Response-Error-Code) + - [Rpc.Debug.Tree.Response.Error.Code](#anytype-Rpc-Debug-Tree-Response-Error-Code) + - [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype-Rpc-Debug-TreeHeads-Response-Error-Code) + - [Rpc.File.Download.Response.Error.Code](#anytype-Rpc-File-Download-Response-Error-Code) + - [Rpc.File.Drop.Response.Error.Code](#anytype-Rpc-File-Drop-Response-Error-Code) + - [Rpc.File.ListOffload.Response.Error.Code](#anytype-Rpc-File-ListOffload-Response-Error-Code) + - [Rpc.File.Offload.Response.Error.Code](#anytype-Rpc-File-Offload-Response-Error-Code) + - [Rpc.File.SpaceUsage.Response.Error.Code](#anytype-Rpc-File-SpaceUsage-Response-Error-Code) + - [Rpc.File.Upload.Response.Error.Code](#anytype-Rpc-File-Upload-Response-Error-Code) + - [Rpc.GenericErrorResponse.Error.Code](#anytype-Rpc-GenericErrorResponse-Error-Code) + - [Rpc.History.GetVersions.Response.Error.Code](#anytype-Rpc-History-GetVersions-Response-Error-Code) + - [Rpc.History.SetVersion.Response.Error.Code](#anytype-Rpc-History-SetVersion-Response-Error-Code) + - [Rpc.History.ShowVersion.Response.Error.Code](#anytype-Rpc-History-ShowVersion-Response-Error-Code) + - [Rpc.LinkPreview.Response.Error.Code](#anytype-Rpc-LinkPreview-Response-Error-Code) + - [Rpc.Log.Send.Request.Level](#anytype-Rpc-Log-Send-Request-Level) + - [Rpc.Log.Send.Response.Error.Code](#anytype-Rpc-Log-Send-Response-Error-Code) + - [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype-Rpc-Metrics-SetParameters-Response-Error-Code) + - [Rpc.Navigation.Context](#anytype-Rpc-Navigation-Context) + - [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error-Code) + - [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype-Rpc-Navigation-ListObjects-Response-Error-Code) + - [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype-Rpc-Object-ApplyTemplate-Response-Error-Code) + - [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype-Rpc-Object-BookmarkFetch-Response-Error-Code) + - [Rpc.Object.Close.Response.Error.Code](#anytype-Rpc-Object-Close-Response-Error-Code) + - [Rpc.Object.Create.Response.Error.Code](#anytype-Rpc-Object-Create-Response-Error-Code) + - [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype-Rpc-Object-CreateBookmark-Response-Error-Code) + - [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype-Rpc-Object-CreateObjectType-Response-Error-Code) + - [Rpc.Object.CreateRelation.Response.Error.Code](#anytype-Rpc-Object-CreateRelation-Response-Error-Code) + - [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype-Rpc-Object-CreateRelationOption-Response-Error-Code) + - [Rpc.Object.CreateSet.Response.Error.Code](#anytype-Rpc-Object-CreateSet-Response-Error-Code) + - [Rpc.Object.Duplicate.Response.Error.Code](#anytype-Rpc-Object-Duplicate-Response-Error-Code) + - [Rpc.Object.Graph.Edge.Type](#anytype-Rpc-Object-Graph-Edge-Type) + - [Rpc.Object.Graph.Response.Error.Code](#anytype-Rpc-Object-Graph-Response-Error-Code) + - [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype-Rpc-Object-GroupsSubscribe-Response-Error-Code) + - [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error-Code) + - [Rpc.Object.Import.Request.CsvParams.Mode](#anytype-Rpc-Object-Import-Request-CsvParams-Mode) + - [Rpc.Object.Import.Request.Mode](#anytype-Rpc-Object-Import-Request-Mode) + - [Rpc.Object.Import.Request.Type](#anytype-Rpc-Object-Import-Request-Type) + - [Rpc.Object.Import.Response.Error.Code](#anytype-Rpc-Object-Import-Response-Error-Code) + - [Rpc.Object.ImportList.ImportResponse.Type](#anytype-Rpc-Object-ImportList-ImportResponse-Type) + - [Rpc.Object.ImportList.Response.Error.Code](#anytype-Rpc-Object-ImportList-Response-Error-Code) + - [Rpc.Object.ImportUseCase.Request.UseCase](#anytype-Rpc-Object-ImportUseCase-Request-UseCase) + - [Rpc.Object.ImportUseCase.Response.Error.Code](#anytype-Rpc-Object-ImportUseCase-Response-Error-Code) + - [Rpc.Object.ListDelete.Response.Error.Code](#anytype-Rpc-Object-ListDelete-Response-Error-Code) + - [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype-Rpc-Object-ListDuplicate-Response-Error-Code) + - [Rpc.Object.ListExport.Format](#anytype-Rpc-Object-ListExport-Format) + - [Rpc.Object.ListExport.Response.Error.Code](#anytype-Rpc-Object-ListExport-Response-Error-Code) + - [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype-Rpc-Object-ListSetIsArchived-Response-Error-Code) + - [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error-Code) + - [Rpc.Object.Open.Response.Error.Code](#anytype-Rpc-Object-Open-Response-Error-Code) + - [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error-Code) + - [Rpc.Object.Redo.Response.Error.Code](#anytype-Rpc-Object-Redo-Response-Error-Code) + - [Rpc.Object.Search.Response.Error.Code](#anytype-Rpc-Object-Search-Response-Error-Code) + - [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchSubscribe-Response-Error-Code) + - [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error-Code) + - [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error-Code) + - [Rpc.Object.SetDetails.Response.Error.Code](#anytype-Rpc-Object-SetDetails-Response-Error-Code) + - [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype-Rpc-Object-SetInternalFlags-Response-Error-Code) + - [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype-Rpc-Object-SetIsArchived-Response-Error-Code) + - [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-SetIsFavorite-Response-Error-Code) + - [Rpc.Object.SetLayout.Response.Error.Code](#anytype-Rpc-Object-SetLayout-Response-Error-Code) + - [Rpc.Object.SetObjectType.Response.Error.Code](#anytype-Rpc-Object-SetObjectType-Response-Error-Code) + - [Rpc.Object.SetSource.Response.Error.Code](#anytype-Rpc-Object-SetSource-Response-Error-Code) + - [Rpc.Object.ShareByLink.Response.Error.Code](#anytype-Rpc-Object-ShareByLink-Response-Error-Code) + - [Rpc.Object.Show.Response.Error.Code](#anytype-Rpc-Object-Show-Response-Error-Code) + - [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype-Rpc-Object-SubscribeIds-Response-Error-Code) + - [Rpc.Object.ToBookmark.Response.Error.Code](#anytype-Rpc-Object-ToBookmark-Response-Error-Code) + - [Rpc.Object.ToCollection.Response.Error.Code](#anytype-Rpc-Object-ToCollection-Response-Error-Code) + - [Rpc.Object.ToSet.Response.Error.Code](#anytype-Rpc-Object-ToSet-Response-Error-Code) + - [Rpc.Object.Undo.Response.Error.Code](#anytype-Rpc-Object-Undo-Response-Error-Code) + - [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error-Code) + - [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype-Rpc-ObjectCollection-Add-Response-Error-Code) + - [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype-Rpc-ObjectCollection-Remove-Response-Error-Code) + - [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype-Rpc-ObjectCollection-Sort-Response-Error-Code) + - [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype-Rpc-ObjectRelation-Add-Response-Error-Code) + - [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error-Code) + - [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype-Rpc-ObjectRelation-Delete-Response-Error-Code) + - [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error-Code) + - [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error-Code) + - [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Add-Response-Error-Code) + - [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-List-Response-Error-Code) + - [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error-Code) + - [Rpc.Process.Cancel.Response.Error.Code](#anytype-Rpc-Process-Cancel-Response-Error-Code) + - [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype-Rpc-Relation-ListRemoveOption-Response-Error-Code) + - [Rpc.Relation.Options.Response.Error.Code](#anytype-Rpc-Relation-Options-Response-Error-Code) + - [Rpc.Template.Clone.Response.Error.Code](#anytype-Rpc-Template-Clone-Response-Error-Code) + - [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype-Rpc-Template-CreateFromObject-Response-Error-Code) + - [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype-Rpc-Template-CreateFromObjectType-Response-Error-Code) + - [Rpc.Template.ExportAll.Response.Error.Code](#anytype-Rpc-Template-ExportAll-Response-Error-Code) + - [Rpc.Unsplash.Download.Response.Error.Code](#anytype-Rpc-Unsplash-Download-Response-Error-Code) + - [Rpc.Unsplash.Search.Response.Error.Code](#anytype-Rpc-Unsplash-Search-Response-Error-Code) + - [Rpc.UserData.Dump.Response.Error.Code](#anytype-Rpc-UserData-Dump-Response-Error-Code) + - [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype-Rpc-Wallet-CloseSession-Response-Error-Code) + - [Rpc.Wallet.Convert.Response.Error.Code](#anytype-Rpc-Wallet-Convert-Response-Error-Code) + - [Rpc.Wallet.Create.Response.Error.Code](#anytype-Rpc-Wallet-Create-Response-Error-Code) + - [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype-Rpc-Wallet-CreateSession-Response-Error-Code) + - [Rpc.Wallet.Recover.Response.Error.Code](#anytype-Rpc-Wallet-Recover-Response-Error-Code) + - [Rpc.Workspace.Create.Response.Error.Code](#anytype-Rpc-Workspace-Create-Response-Error-Code) + - [Rpc.Workspace.Export.Response.Error.Code](#anytype-Rpc-Workspace-Export-Response-Error-Code) + - [Rpc.Workspace.GetAll.Response.Error.Code](#anytype-Rpc-Workspace-GetAll-Response-Error-Code) + - [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype-Rpc-Workspace-GetCurrent-Response-Error-Code) + - [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype-Rpc-Workspace-Object-Add-Response-Error-Code) + - [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error-Code) + - [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error-Code) + - [Rpc.Workspace.Select.Response.Error.Code](#anytype-Rpc-Workspace-Select-Response-Error-Code) + - [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error-Code) - - [File-level Extensions](#pb/protos/commands.proto-extensions) + - [File-level Extensions](#pb_protos_commands-proto-extensions) -- [pb/protos/events.proto](#pb/protos/events.proto) - - [Event](#anytype.Event) - - [Event.Account](#anytype.Event.Account) - - [Event.Account.Config](#anytype.Event.Account.Config) - - [Event.Account.Config.Update](#anytype.Event.Account.Config.Update) - - [Event.Account.Details](#anytype.Event.Account.Details) - - [Event.Account.Show](#anytype.Event.Account.Show) - - [Event.Account.Update](#anytype.Event.Account.Update) - - [Event.Block](#anytype.Event.Block) - - [Event.Block.Add](#anytype.Event.Block.Add) - - [Event.Block.Dataview](#anytype.Event.Block.Dataview) - - [Event.Block.Dataview.GroupOrderUpdate](#anytype.Event.Block.Dataview.GroupOrderUpdate) - - [Event.Block.Dataview.IsCollectionSet](#anytype.Event.Block.Dataview.IsCollectionSet) - - [Event.Block.Dataview.ObjectOrderUpdate](#anytype.Event.Block.Dataview.ObjectOrderUpdate) - - [Event.Block.Dataview.OldRelationDelete](#anytype.Event.Block.Dataview.OldRelationDelete) - - [Event.Block.Dataview.OldRelationSet](#anytype.Event.Block.Dataview.OldRelationSet) - - [Event.Block.Dataview.RelationDelete](#anytype.Event.Block.Dataview.RelationDelete) - - [Event.Block.Dataview.RelationSet](#anytype.Event.Block.Dataview.RelationSet) - - [Event.Block.Dataview.SliceChange](#anytype.Event.Block.Dataview.SliceChange) - - [Event.Block.Dataview.SourceSet](#anytype.Event.Block.Dataview.SourceSet) - - [Event.Block.Dataview.TargetObjectIdSet](#anytype.Event.Block.Dataview.TargetObjectIdSet) - - [Event.Block.Dataview.ViewDelete](#anytype.Event.Block.Dataview.ViewDelete) - - [Event.Block.Dataview.ViewOrder](#anytype.Event.Block.Dataview.ViewOrder) - - [Event.Block.Dataview.ViewSet](#anytype.Event.Block.Dataview.ViewSet) - - [Event.Block.Dataview.ViewUpdate](#anytype.Event.Block.Dataview.ViewUpdate) - - [Event.Block.Dataview.ViewUpdate.Fields](#anytype.Event.Block.Dataview.ViewUpdate.Fields) - - [Event.Block.Dataview.ViewUpdate.Filter](#anytype.Event.Block.Dataview.ViewUpdate.Filter) - - [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Add) - - [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Move) - - [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Remove) - - [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Update) - - [Event.Block.Dataview.ViewUpdate.Relation](#anytype.Event.Block.Dataview.ViewUpdate.Relation) - - [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Add) - - [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Move) - - [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Remove) - - [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Update) - - [Event.Block.Dataview.ViewUpdate.Sort](#anytype.Event.Block.Dataview.ViewUpdate.Sort) - - [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Add) - - [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Move) - - [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Remove) - - [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Update) - - [Event.Block.Delete](#anytype.Event.Block.Delete) - - [Event.Block.FilesUpload](#anytype.Event.Block.FilesUpload) - - [Event.Block.Fill](#anytype.Event.Block.Fill) - - [Event.Block.Fill.Align](#anytype.Event.Block.Fill.Align) - - [Event.Block.Fill.BackgroundColor](#anytype.Event.Block.Fill.BackgroundColor) - - [Event.Block.Fill.Bookmark](#anytype.Event.Block.Fill.Bookmark) - - [Event.Block.Fill.Bookmark.Description](#anytype.Event.Block.Fill.Bookmark.Description) - - [Event.Block.Fill.Bookmark.FaviconHash](#anytype.Event.Block.Fill.Bookmark.FaviconHash) - - [Event.Block.Fill.Bookmark.ImageHash](#anytype.Event.Block.Fill.Bookmark.ImageHash) - - [Event.Block.Fill.Bookmark.TargetObjectId](#anytype.Event.Block.Fill.Bookmark.TargetObjectId) - - [Event.Block.Fill.Bookmark.Title](#anytype.Event.Block.Fill.Bookmark.Title) - - [Event.Block.Fill.Bookmark.Type](#anytype.Event.Block.Fill.Bookmark.Type) - - [Event.Block.Fill.Bookmark.Url](#anytype.Event.Block.Fill.Bookmark.Url) - - [Event.Block.Fill.ChildrenIds](#anytype.Event.Block.Fill.ChildrenIds) - - [Event.Block.Fill.DatabaseRecords](#anytype.Event.Block.Fill.DatabaseRecords) - - [Event.Block.Fill.Details](#anytype.Event.Block.Fill.Details) - - [Event.Block.Fill.Div](#anytype.Event.Block.Fill.Div) - - [Event.Block.Fill.Div.Style](#anytype.Event.Block.Fill.Div.Style) - - [Event.Block.Fill.Fields](#anytype.Event.Block.Fill.Fields) - - [Event.Block.Fill.File](#anytype.Event.Block.Fill.File) - - [Event.Block.Fill.File.Hash](#anytype.Event.Block.Fill.File.Hash) - - [Event.Block.Fill.File.Mime](#anytype.Event.Block.Fill.File.Mime) - - [Event.Block.Fill.File.Name](#anytype.Event.Block.Fill.File.Name) - - [Event.Block.Fill.File.Size](#anytype.Event.Block.Fill.File.Size) - - [Event.Block.Fill.File.State](#anytype.Event.Block.Fill.File.State) - - [Event.Block.Fill.File.Style](#anytype.Event.Block.Fill.File.Style) - - [Event.Block.Fill.File.Type](#anytype.Event.Block.Fill.File.Type) - - [Event.Block.Fill.File.Width](#anytype.Event.Block.Fill.File.Width) - - [Event.Block.Fill.Link](#anytype.Event.Block.Fill.Link) - - [Event.Block.Fill.Link.Fields](#anytype.Event.Block.Fill.Link.Fields) - - [Event.Block.Fill.Link.Style](#anytype.Event.Block.Fill.Link.Style) - - [Event.Block.Fill.Link.TargetBlockId](#anytype.Event.Block.Fill.Link.TargetBlockId) - - [Event.Block.Fill.Restrictions](#anytype.Event.Block.Fill.Restrictions) - - [Event.Block.Fill.Text](#anytype.Event.Block.Fill.Text) - - [Event.Block.Fill.Text.Checked](#anytype.Event.Block.Fill.Text.Checked) - - [Event.Block.Fill.Text.Color](#anytype.Event.Block.Fill.Text.Color) - - [Event.Block.Fill.Text.Marks](#anytype.Event.Block.Fill.Text.Marks) - - [Event.Block.Fill.Text.Style](#anytype.Event.Block.Fill.Text.Style) - - [Event.Block.Fill.Text.Text](#anytype.Event.Block.Fill.Text.Text) - - [Event.Block.MarksInfo](#anytype.Event.Block.MarksInfo) - - [Event.Block.Set](#anytype.Event.Block.Set) - - [Event.Block.Set.Align](#anytype.Event.Block.Set.Align) - - [Event.Block.Set.BackgroundColor](#anytype.Event.Block.Set.BackgroundColor) - - [Event.Block.Set.Bookmark](#anytype.Event.Block.Set.Bookmark) - - [Event.Block.Set.Bookmark.Description](#anytype.Event.Block.Set.Bookmark.Description) - - [Event.Block.Set.Bookmark.FaviconHash](#anytype.Event.Block.Set.Bookmark.FaviconHash) - - [Event.Block.Set.Bookmark.ImageHash](#anytype.Event.Block.Set.Bookmark.ImageHash) - - [Event.Block.Set.Bookmark.State](#anytype.Event.Block.Set.Bookmark.State) - - [Event.Block.Set.Bookmark.TargetObjectId](#anytype.Event.Block.Set.Bookmark.TargetObjectId) - - [Event.Block.Set.Bookmark.Title](#anytype.Event.Block.Set.Bookmark.Title) - - [Event.Block.Set.Bookmark.Type](#anytype.Event.Block.Set.Bookmark.Type) - - [Event.Block.Set.Bookmark.Url](#anytype.Event.Block.Set.Bookmark.Url) - - [Event.Block.Set.ChildrenIds](#anytype.Event.Block.Set.ChildrenIds) - - [Event.Block.Set.Div](#anytype.Event.Block.Set.Div) - - [Event.Block.Set.Div.Style](#anytype.Event.Block.Set.Div.Style) - - [Event.Block.Set.Fields](#anytype.Event.Block.Set.Fields) - - [Event.Block.Set.File](#anytype.Event.Block.Set.File) - - [Event.Block.Set.File.Hash](#anytype.Event.Block.Set.File.Hash) - - [Event.Block.Set.File.Mime](#anytype.Event.Block.Set.File.Mime) - - [Event.Block.Set.File.Name](#anytype.Event.Block.Set.File.Name) - - [Event.Block.Set.File.Size](#anytype.Event.Block.Set.File.Size) - - [Event.Block.Set.File.State](#anytype.Event.Block.Set.File.State) - - [Event.Block.Set.File.Style](#anytype.Event.Block.Set.File.Style) - - [Event.Block.Set.File.Type](#anytype.Event.Block.Set.File.Type) - - [Event.Block.Set.File.Width](#anytype.Event.Block.Set.File.Width) - - [Event.Block.Set.Latex](#anytype.Event.Block.Set.Latex) - - [Event.Block.Set.Latex.Text](#anytype.Event.Block.Set.Latex.Text) - - [Event.Block.Set.Link](#anytype.Event.Block.Set.Link) - - [Event.Block.Set.Link.CardStyle](#anytype.Event.Block.Set.Link.CardStyle) - - [Event.Block.Set.Link.Description](#anytype.Event.Block.Set.Link.Description) - - [Event.Block.Set.Link.Fields](#anytype.Event.Block.Set.Link.Fields) - - [Event.Block.Set.Link.IconSize](#anytype.Event.Block.Set.Link.IconSize) - - [Event.Block.Set.Link.Relations](#anytype.Event.Block.Set.Link.Relations) - - [Event.Block.Set.Link.Style](#anytype.Event.Block.Set.Link.Style) - - [Event.Block.Set.Link.TargetBlockId](#anytype.Event.Block.Set.Link.TargetBlockId) - - [Event.Block.Set.Relation](#anytype.Event.Block.Set.Relation) - - [Event.Block.Set.Relation.Key](#anytype.Event.Block.Set.Relation.Key) - - [Event.Block.Set.Restrictions](#anytype.Event.Block.Set.Restrictions) - - [Event.Block.Set.TableRow](#anytype.Event.Block.Set.TableRow) - - [Event.Block.Set.TableRow.IsHeader](#anytype.Event.Block.Set.TableRow.IsHeader) - - [Event.Block.Set.Text](#anytype.Event.Block.Set.Text) - - [Event.Block.Set.Text.Checked](#anytype.Event.Block.Set.Text.Checked) - - [Event.Block.Set.Text.Color](#anytype.Event.Block.Set.Text.Color) - - [Event.Block.Set.Text.IconEmoji](#anytype.Event.Block.Set.Text.IconEmoji) - - [Event.Block.Set.Text.IconImage](#anytype.Event.Block.Set.Text.IconImage) - - [Event.Block.Set.Text.Marks](#anytype.Event.Block.Set.Text.Marks) - - [Event.Block.Set.Text.Style](#anytype.Event.Block.Set.Text.Style) - - [Event.Block.Set.Text.Text](#anytype.Event.Block.Set.Text.Text) - - [Event.Block.Set.VerticalAlign](#anytype.Event.Block.Set.VerticalAlign) - - [Event.Block.Set.Widget](#anytype.Event.Block.Set.Widget) - - [Event.Block.Set.Widget.Layout](#anytype.Event.Block.Set.Widget.Layout) - - [Event.Block.Set.Widget.Limit](#anytype.Event.Block.Set.Widget.Limit) - - [Event.Block.Set.Widget.ViewId](#anytype.Event.Block.Set.Widget.ViewId) - - [Event.File](#anytype.Event.File) - - [Event.File.LimitReached](#anytype.Event.File.LimitReached) - - [Event.File.LocalUsage](#anytype.Event.File.LocalUsage) - - [Event.File.SpaceUsage](#anytype.Event.File.SpaceUsage) - - [Event.Message](#anytype.Event.Message) - - [Event.Object](#anytype.Event.Object) - - [Event.Object.Details](#anytype.Event.Object.Details) - - [Event.Object.Details.Amend](#anytype.Event.Object.Details.Amend) - - [Event.Object.Details.Amend.KeyValue](#anytype.Event.Object.Details.Amend.KeyValue) - - [Event.Object.Details.Set](#anytype.Event.Object.Details.Set) - - [Event.Object.Details.Unset](#anytype.Event.Object.Details.Unset) - - [Event.Object.Relations](#anytype.Event.Object.Relations) - - [Event.Object.Relations.Amend](#anytype.Event.Object.Relations.Amend) - - [Event.Object.Relations.Remove](#anytype.Event.Object.Relations.Remove) - - [Event.Object.Remove](#anytype.Event.Object.Remove) - - [Event.Object.Restrictions](#anytype.Event.Object.Restrictions) - - [Event.Object.Restrictions.Set](#anytype.Event.Object.Restrictions.Set) - - [Event.Object.Subscription](#anytype.Event.Object.Subscription) - - [Event.Object.Subscription.Add](#anytype.Event.Object.Subscription.Add) - - [Event.Object.Subscription.Counters](#anytype.Event.Object.Subscription.Counters) - - [Event.Object.Subscription.Groups](#anytype.Event.Object.Subscription.Groups) - - [Event.Object.Subscription.Position](#anytype.Event.Object.Subscription.Position) - - [Event.Object.Subscription.Remove](#anytype.Event.Object.Subscription.Remove) - - [Event.Ping](#anytype.Event.Ping) - - [Event.Process](#anytype.Event.Process) - - [Event.Process.Done](#anytype.Event.Process.Done) - - [Event.Process.New](#anytype.Event.Process.New) - - [Event.Process.Update](#anytype.Event.Process.Update) - - [Event.Status](#anytype.Event.Status) - - [Event.Status.Thread](#anytype.Event.Status.Thread) - - [Event.Status.Thread.Account](#anytype.Event.Status.Thread.Account) - - [Event.Status.Thread.Cafe](#anytype.Event.Status.Thread.Cafe) - - [Event.Status.Thread.Cafe.PinStatus](#anytype.Event.Status.Thread.Cafe.PinStatus) - - [Event.Status.Thread.Device](#anytype.Event.Status.Thread.Device) - - [Event.Status.Thread.Summary](#anytype.Event.Status.Thread.Summary) - - [Event.User](#anytype.Event.User) - - [Event.User.Block](#anytype.Event.User.Block) - - [Event.User.Block.Join](#anytype.Event.User.Block.Join) - - [Event.User.Block.Left](#anytype.Event.User.Block.Left) - - [Event.User.Block.SelectRange](#anytype.Event.User.Block.SelectRange) - - [Event.User.Block.TextRange](#anytype.Event.User.Block.TextRange) - - [Model](#anytype.Model) - - [Model.Process](#anytype.Model.Process) - - [Model.Process.Progress](#anytype.Model.Process.Progress) - - [ResponseEvent](#anytype.ResponseEvent) +- [pb/protos/events.proto](#pb_protos_events-proto) + - [Event](#anytype-Event) + - [Event.Account](#anytype-Event-Account) + - [Event.Account.Config](#anytype-Event-Account-Config) + - [Event.Account.Config.Update](#anytype-Event-Account-Config-Update) + - [Event.Account.Details](#anytype-Event-Account-Details) + - [Event.Account.Show](#anytype-Event-Account-Show) + - [Event.Account.Update](#anytype-Event-Account-Update) + - [Event.Block](#anytype-Event-Block) + - [Event.Block.Add](#anytype-Event-Block-Add) + - [Event.Block.Dataview](#anytype-Event-Block-Dataview) + - [Event.Block.Dataview.GroupOrderUpdate](#anytype-Event-Block-Dataview-GroupOrderUpdate) + - [Event.Block.Dataview.IsCollectionSet](#anytype-Event-Block-Dataview-IsCollectionSet) + - [Event.Block.Dataview.ObjectOrderUpdate](#anytype-Event-Block-Dataview-ObjectOrderUpdate) + - [Event.Block.Dataview.OldRelationDelete](#anytype-Event-Block-Dataview-OldRelationDelete) + - [Event.Block.Dataview.OldRelationSet](#anytype-Event-Block-Dataview-OldRelationSet) + - [Event.Block.Dataview.RelationDelete](#anytype-Event-Block-Dataview-RelationDelete) + - [Event.Block.Dataview.RelationSet](#anytype-Event-Block-Dataview-RelationSet) + - [Event.Block.Dataview.SliceChange](#anytype-Event-Block-Dataview-SliceChange) + - [Event.Block.Dataview.SourceSet](#anytype-Event-Block-Dataview-SourceSet) + - [Event.Block.Dataview.TargetObjectIdSet](#anytype-Event-Block-Dataview-TargetObjectIdSet) + - [Event.Block.Dataview.ViewDelete](#anytype-Event-Block-Dataview-ViewDelete) + - [Event.Block.Dataview.ViewOrder](#anytype-Event-Block-Dataview-ViewOrder) + - [Event.Block.Dataview.ViewSet](#anytype-Event-Block-Dataview-ViewSet) + - [Event.Block.Dataview.ViewUpdate](#anytype-Event-Block-Dataview-ViewUpdate) + - [Event.Block.Dataview.ViewUpdate.Fields](#anytype-Event-Block-Dataview-ViewUpdate-Fields) + - [Event.Block.Dataview.ViewUpdate.Filter](#anytype-Event-Block-Dataview-ViewUpdate-Filter) + - [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Add) + - [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Move) + - [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Remove) + - [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Update) + - [Event.Block.Dataview.ViewUpdate.Relation](#anytype-Event-Block-Dataview-ViewUpdate-Relation) + - [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Add) + - [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Move) + - [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Remove) + - [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Update) + - [Event.Block.Dataview.ViewUpdate.Sort](#anytype-Event-Block-Dataview-ViewUpdate-Sort) + - [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Add) + - [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Move) + - [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Remove) + - [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Update) + - [Event.Block.Delete](#anytype-Event-Block-Delete) + - [Event.Block.FilesUpload](#anytype-Event-Block-FilesUpload) + - [Event.Block.Fill](#anytype-Event-Block-Fill) + - [Event.Block.Fill.Align](#anytype-Event-Block-Fill-Align) + - [Event.Block.Fill.BackgroundColor](#anytype-Event-Block-Fill-BackgroundColor) + - [Event.Block.Fill.Bookmark](#anytype-Event-Block-Fill-Bookmark) + - [Event.Block.Fill.Bookmark.Description](#anytype-Event-Block-Fill-Bookmark-Description) + - [Event.Block.Fill.Bookmark.FaviconHash](#anytype-Event-Block-Fill-Bookmark-FaviconHash) + - [Event.Block.Fill.Bookmark.ImageHash](#anytype-Event-Block-Fill-Bookmark-ImageHash) + - [Event.Block.Fill.Bookmark.TargetObjectId](#anytype-Event-Block-Fill-Bookmark-TargetObjectId) + - [Event.Block.Fill.Bookmark.Title](#anytype-Event-Block-Fill-Bookmark-Title) + - [Event.Block.Fill.Bookmark.Type](#anytype-Event-Block-Fill-Bookmark-Type) + - [Event.Block.Fill.Bookmark.Url](#anytype-Event-Block-Fill-Bookmark-Url) + - [Event.Block.Fill.ChildrenIds](#anytype-Event-Block-Fill-ChildrenIds) + - [Event.Block.Fill.DatabaseRecords](#anytype-Event-Block-Fill-DatabaseRecords) + - [Event.Block.Fill.Details](#anytype-Event-Block-Fill-Details) + - [Event.Block.Fill.Div](#anytype-Event-Block-Fill-Div) + - [Event.Block.Fill.Div.Style](#anytype-Event-Block-Fill-Div-Style) + - [Event.Block.Fill.Fields](#anytype-Event-Block-Fill-Fields) + - [Event.Block.Fill.File](#anytype-Event-Block-Fill-File) + - [Event.Block.Fill.File.Hash](#anytype-Event-Block-Fill-File-Hash) + - [Event.Block.Fill.File.Mime](#anytype-Event-Block-Fill-File-Mime) + - [Event.Block.Fill.File.Name](#anytype-Event-Block-Fill-File-Name) + - [Event.Block.Fill.File.Size](#anytype-Event-Block-Fill-File-Size) + - [Event.Block.Fill.File.State](#anytype-Event-Block-Fill-File-State) + - [Event.Block.Fill.File.Style](#anytype-Event-Block-Fill-File-Style) + - [Event.Block.Fill.File.Type](#anytype-Event-Block-Fill-File-Type) + - [Event.Block.Fill.File.Width](#anytype-Event-Block-Fill-File-Width) + - [Event.Block.Fill.Link](#anytype-Event-Block-Fill-Link) + - [Event.Block.Fill.Link.Fields](#anytype-Event-Block-Fill-Link-Fields) + - [Event.Block.Fill.Link.Style](#anytype-Event-Block-Fill-Link-Style) + - [Event.Block.Fill.Link.TargetBlockId](#anytype-Event-Block-Fill-Link-TargetBlockId) + - [Event.Block.Fill.Restrictions](#anytype-Event-Block-Fill-Restrictions) + - [Event.Block.Fill.Text](#anytype-Event-Block-Fill-Text) + - [Event.Block.Fill.Text.Checked](#anytype-Event-Block-Fill-Text-Checked) + - [Event.Block.Fill.Text.Color](#anytype-Event-Block-Fill-Text-Color) + - [Event.Block.Fill.Text.Marks](#anytype-Event-Block-Fill-Text-Marks) + - [Event.Block.Fill.Text.Style](#anytype-Event-Block-Fill-Text-Style) + - [Event.Block.Fill.Text.Text](#anytype-Event-Block-Fill-Text-Text) + - [Event.Block.MarksInfo](#anytype-Event-Block-MarksInfo) + - [Event.Block.Set](#anytype-Event-Block-Set) + - [Event.Block.Set.Align](#anytype-Event-Block-Set-Align) + - [Event.Block.Set.BackgroundColor](#anytype-Event-Block-Set-BackgroundColor) + - [Event.Block.Set.Bookmark](#anytype-Event-Block-Set-Bookmark) + - [Event.Block.Set.Bookmark.Description](#anytype-Event-Block-Set-Bookmark-Description) + - [Event.Block.Set.Bookmark.FaviconHash](#anytype-Event-Block-Set-Bookmark-FaviconHash) + - [Event.Block.Set.Bookmark.ImageHash](#anytype-Event-Block-Set-Bookmark-ImageHash) + - [Event.Block.Set.Bookmark.State](#anytype-Event-Block-Set-Bookmark-State) + - [Event.Block.Set.Bookmark.TargetObjectId](#anytype-Event-Block-Set-Bookmark-TargetObjectId) + - [Event.Block.Set.Bookmark.Title](#anytype-Event-Block-Set-Bookmark-Title) + - [Event.Block.Set.Bookmark.Type](#anytype-Event-Block-Set-Bookmark-Type) + - [Event.Block.Set.Bookmark.Url](#anytype-Event-Block-Set-Bookmark-Url) + - [Event.Block.Set.ChildrenIds](#anytype-Event-Block-Set-ChildrenIds) + - [Event.Block.Set.Div](#anytype-Event-Block-Set-Div) + - [Event.Block.Set.Div.Style](#anytype-Event-Block-Set-Div-Style) + - [Event.Block.Set.Fields](#anytype-Event-Block-Set-Fields) + - [Event.Block.Set.File](#anytype-Event-Block-Set-File) + - [Event.Block.Set.File.Hash](#anytype-Event-Block-Set-File-Hash) + - [Event.Block.Set.File.Mime](#anytype-Event-Block-Set-File-Mime) + - [Event.Block.Set.File.Name](#anytype-Event-Block-Set-File-Name) + - [Event.Block.Set.File.Size](#anytype-Event-Block-Set-File-Size) + - [Event.Block.Set.File.State](#anytype-Event-Block-Set-File-State) + - [Event.Block.Set.File.Style](#anytype-Event-Block-Set-File-Style) + - [Event.Block.Set.File.Type](#anytype-Event-Block-Set-File-Type) + - [Event.Block.Set.File.Width](#anytype-Event-Block-Set-File-Width) + - [Event.Block.Set.Latex](#anytype-Event-Block-Set-Latex) + - [Event.Block.Set.Latex.Text](#anytype-Event-Block-Set-Latex-Text) + - [Event.Block.Set.Link](#anytype-Event-Block-Set-Link) + - [Event.Block.Set.Link.CardStyle](#anytype-Event-Block-Set-Link-CardStyle) + - [Event.Block.Set.Link.Description](#anytype-Event-Block-Set-Link-Description) + - [Event.Block.Set.Link.Fields](#anytype-Event-Block-Set-Link-Fields) + - [Event.Block.Set.Link.IconSize](#anytype-Event-Block-Set-Link-IconSize) + - [Event.Block.Set.Link.Relations](#anytype-Event-Block-Set-Link-Relations) + - [Event.Block.Set.Link.Style](#anytype-Event-Block-Set-Link-Style) + - [Event.Block.Set.Link.TargetBlockId](#anytype-Event-Block-Set-Link-TargetBlockId) + - [Event.Block.Set.Relation](#anytype-Event-Block-Set-Relation) + - [Event.Block.Set.Relation.Key](#anytype-Event-Block-Set-Relation-Key) + - [Event.Block.Set.Restrictions](#anytype-Event-Block-Set-Restrictions) + - [Event.Block.Set.TableRow](#anytype-Event-Block-Set-TableRow) + - [Event.Block.Set.TableRow.IsHeader](#anytype-Event-Block-Set-TableRow-IsHeader) + - [Event.Block.Set.Text](#anytype-Event-Block-Set-Text) + - [Event.Block.Set.Text.Checked](#anytype-Event-Block-Set-Text-Checked) + - [Event.Block.Set.Text.Color](#anytype-Event-Block-Set-Text-Color) + - [Event.Block.Set.Text.IconEmoji](#anytype-Event-Block-Set-Text-IconEmoji) + - [Event.Block.Set.Text.IconImage](#anytype-Event-Block-Set-Text-IconImage) + - [Event.Block.Set.Text.Marks](#anytype-Event-Block-Set-Text-Marks) + - [Event.Block.Set.Text.Style](#anytype-Event-Block-Set-Text-Style) + - [Event.Block.Set.Text.Text](#anytype-Event-Block-Set-Text-Text) + - [Event.Block.Set.VerticalAlign](#anytype-Event-Block-Set-VerticalAlign) + - [Event.Block.Set.Widget](#anytype-Event-Block-Set-Widget) + - [Event.Block.Set.Widget.Layout](#anytype-Event-Block-Set-Widget-Layout) + - [Event.Block.Set.Widget.Limit](#anytype-Event-Block-Set-Widget-Limit) + - [Event.Block.Set.Widget.ViewId](#anytype-Event-Block-Set-Widget-ViewId) + - [Event.File](#anytype-Event-File) + - [Event.File.LimitReached](#anytype-Event-File-LimitReached) + - [Event.File.LocalUsage](#anytype-Event-File-LocalUsage) + - [Event.File.SpaceUsage](#anytype-Event-File-SpaceUsage) + - [Event.Message](#anytype-Event-Message) + - [Event.Object](#anytype-Event-Object) + - [Event.Object.Details](#anytype-Event-Object-Details) + - [Event.Object.Details.Amend](#anytype-Event-Object-Details-Amend) + - [Event.Object.Details.Amend.KeyValue](#anytype-Event-Object-Details-Amend-KeyValue) + - [Event.Object.Details.Set](#anytype-Event-Object-Details-Set) + - [Event.Object.Details.Unset](#anytype-Event-Object-Details-Unset) + - [Event.Object.Relations](#anytype-Event-Object-Relations) + - [Event.Object.Relations.Amend](#anytype-Event-Object-Relations-Amend) + - [Event.Object.Relations.Remove](#anytype-Event-Object-Relations-Remove) + - [Event.Object.Remove](#anytype-Event-Object-Remove) + - [Event.Object.Restrictions](#anytype-Event-Object-Restrictions) + - [Event.Object.Restrictions.Set](#anytype-Event-Object-Restrictions-Set) + - [Event.Object.Subscription](#anytype-Event-Object-Subscription) + - [Event.Object.Subscription.Add](#anytype-Event-Object-Subscription-Add) + - [Event.Object.Subscription.Counters](#anytype-Event-Object-Subscription-Counters) + - [Event.Object.Subscription.Groups](#anytype-Event-Object-Subscription-Groups) + - [Event.Object.Subscription.Position](#anytype-Event-Object-Subscription-Position) + - [Event.Object.Subscription.Remove](#anytype-Event-Object-Subscription-Remove) + - [Event.Ping](#anytype-Event-Ping) + - [Event.Process](#anytype-Event-Process) + - [Event.Process.Done](#anytype-Event-Process-Done) + - [Event.Process.New](#anytype-Event-Process-New) + - [Event.Process.Update](#anytype-Event-Process-Update) + - [Event.Status](#anytype-Event-Status) + - [Event.Status.Thread](#anytype-Event-Status-Thread) + - [Event.Status.Thread.Account](#anytype-Event-Status-Thread-Account) + - [Event.Status.Thread.Cafe](#anytype-Event-Status-Thread-Cafe) + - [Event.Status.Thread.Cafe.PinStatus](#anytype-Event-Status-Thread-Cafe-PinStatus) + - [Event.Status.Thread.Device](#anytype-Event-Status-Thread-Device) + - [Event.Status.Thread.Summary](#anytype-Event-Status-Thread-Summary) + - [Event.User](#anytype-Event-User) + - [Event.User.Block](#anytype-Event-User-Block) + - [Event.User.Block.Join](#anytype-Event-User-Block-Join) + - [Event.User.Block.Left](#anytype-Event-User-Block-Left) + - [Event.User.Block.SelectRange](#anytype-Event-User-Block-SelectRange) + - [Event.User.Block.TextRange](#anytype-Event-User-Block-TextRange) + - [Model](#anytype-Model) + - [Model.Process](#anytype-Model-Process) + - [Model.Process.Progress](#anytype-Model-Process-Progress) + - [ResponseEvent](#anytype-ResponseEvent) - - [Event.Block.Dataview.SliceOperation](#anytype.Event.Block.Dataview.SliceOperation) - - [Event.Status.Thread.SyncStatus](#anytype.Event.Status.Thread.SyncStatus) - - [Model.Process.State](#anytype.Model.Process.State) - - [Model.Process.Type](#anytype.Model.Process.Type) + - [Event.Block.Dataview.SliceOperation](#anytype-Event-Block-Dataview-SliceOperation) + - [Event.Status.Thread.SyncStatus](#anytype-Event-Status-Thread-SyncStatus) + - [Model.Process.State](#anytype-Model-Process-State) + - [Model.Process.Type](#anytype-Model-Process-Type) -- [pb/protos/snapshot.proto](#pb/protos/snapshot.proto) - - [Profile](#anytype.Profile) - - [SnapshotWithType](#anytype.SnapshotWithType) +- [pb/protos/snapshot.proto](#pb_protos_snapshot-proto) + - [Profile](#anytype-Profile) + - [SnapshotWithType](#anytype-SnapshotWithType) -- [pkg/lib/pb/model/protos/localstore.proto](#pkg/lib/pb/model/protos/localstore.proto) - - [ObjectDetails](#anytype.model.ObjectDetails) - - [ObjectInfo](#anytype.model.ObjectInfo) - - [ObjectInfoWithLinks](#anytype.model.ObjectInfoWithLinks) - - [ObjectInfoWithOutboundLinks](#anytype.model.ObjectInfoWithOutboundLinks) - - [ObjectInfoWithOutboundLinksIDs](#anytype.model.ObjectInfoWithOutboundLinksIDs) - - [ObjectLinks](#anytype.model.ObjectLinks) - - [ObjectLinksInfo](#anytype.model.ObjectLinksInfo) - - [ObjectStoreChecksums](#anytype.model.ObjectStoreChecksums) +- [pkg/lib/pb/model/protos/localstore.proto](#pkg_lib_pb_model_protos_localstore-proto) + - [ObjectDetails](#anytype-model-ObjectDetails) + - [ObjectInfo](#anytype-model-ObjectInfo) + - [ObjectInfoWithLinks](#anytype-model-ObjectInfoWithLinks) + - [ObjectInfoWithOutboundLinks](#anytype-model-ObjectInfoWithOutboundLinks) + - [ObjectInfoWithOutboundLinksIDs](#anytype-model-ObjectInfoWithOutboundLinksIDs) + - [ObjectLinks](#anytype-model-ObjectLinks) + - [ObjectLinksInfo](#anytype-model-ObjectLinksInfo) + - [ObjectStoreChecksums](#anytype-model-ObjectStoreChecksums) -- [pkg/lib/pb/model/protos/models.proto](#pkg/lib/pb/model/protos/models.proto) - - [Account](#anytype.model.Account) - - [Account.Avatar](#anytype.model.Account.Avatar) - - [Account.Config](#anytype.model.Account.Config) - - [Account.Info](#anytype.model.Account.Info) - - [Account.Status](#anytype.model.Account.Status) - - [Block](#anytype.model.Block) - - [Block.Content](#anytype.model.Block.Content) - - [Block.Content.Bookmark](#anytype.model.Block.Content.Bookmark) - - [Block.Content.Dataview](#anytype.model.Block.Content.Dataview) - - [Block.Content.Dataview.Checkbox](#anytype.model.Block.Content.Dataview.Checkbox) - - [Block.Content.Dataview.Date](#anytype.model.Block.Content.Dataview.Date) - - [Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) - - [Block.Content.Dataview.Group](#anytype.model.Block.Content.Dataview.Group) - - [Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) - - [Block.Content.Dataview.ObjectOrder](#anytype.model.Block.Content.Dataview.ObjectOrder) - - [Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) - - [Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) - - [Block.Content.Dataview.Status](#anytype.model.Block.Content.Dataview.Status) - - [Block.Content.Dataview.Tag](#anytype.model.Block.Content.Dataview.Tag) - - [Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) - - [Block.Content.Dataview.ViewGroup](#anytype.model.Block.Content.Dataview.ViewGroup) - - [Block.Content.Div](#anytype.model.Block.Content.Div) - - [Block.Content.FeaturedRelations](#anytype.model.Block.Content.FeaturedRelations) - - [Block.Content.File](#anytype.model.Block.Content.File) - - [Block.Content.Icon](#anytype.model.Block.Content.Icon) - - [Block.Content.Latex](#anytype.model.Block.Content.Latex) - - [Block.Content.Layout](#anytype.model.Block.Content.Layout) - - [Block.Content.Link](#anytype.model.Block.Content.Link) - - [Block.Content.Relation](#anytype.model.Block.Content.Relation) - - [Block.Content.Smartblock](#anytype.model.Block.Content.Smartblock) - - [Block.Content.Table](#anytype.model.Block.Content.Table) - - [Block.Content.TableColumn](#anytype.model.Block.Content.TableColumn) - - [Block.Content.TableOfContents](#anytype.model.Block.Content.TableOfContents) - - [Block.Content.TableRow](#anytype.model.Block.Content.TableRow) - - [Block.Content.Text](#anytype.model.Block.Content.Text) - - [Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) - - [Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) - - [Block.Content.Widget](#anytype.model.Block.Content.Widget) - - [Block.Restrictions](#anytype.model.Block.Restrictions) - - [BlockMetaOnly](#anytype.model.BlockMetaOnly) - - [InternalFlag](#anytype.model.InternalFlag) - - [Layout](#anytype.model.Layout) - - [LinkPreview](#anytype.model.LinkPreview) - - [Object](#anytype.model.Object) - - [Object.ChangePayload](#anytype.model.Object.ChangePayload) - - [ObjectType](#anytype.model.ObjectType) - - [ObjectView](#anytype.model.ObjectView) - - [ObjectView.DetailsSet](#anytype.model.ObjectView.DetailsSet) - - [ObjectView.HistorySize](#anytype.model.ObjectView.HistorySize) - - [ObjectView.RelationWithValuePerObject](#anytype.model.ObjectView.RelationWithValuePerObject) - - [Range](#anytype.model.Range) - - [Relation](#anytype.model.Relation) - - [Relation.Option](#anytype.model.Relation.Option) - - [RelationLink](#anytype.model.RelationLink) - - [RelationOptions](#anytype.model.RelationOptions) - - [RelationWithValue](#anytype.model.RelationWithValue) - - [Relations](#anytype.model.Relations) - - [Restrictions](#anytype.model.Restrictions) - - [Restrictions.DataviewRestrictions](#anytype.model.Restrictions.DataviewRestrictions) - - [SmartBlockSnapshotBase](#anytype.model.SmartBlockSnapshotBase) +- [pkg/lib/pb/model/protos/models.proto](#pkg_lib_pb_model_protos_models-proto) + - [Account](#anytype-model-Account) + - [Account.Avatar](#anytype-model-Account-Avatar) + - [Account.Config](#anytype-model-Account-Config) + - [Account.Info](#anytype-model-Account-Info) + - [Account.Status](#anytype-model-Account-Status) + - [Block](#anytype-model-Block) + - [Block.Content](#anytype-model-Block-Content) + - [Block.Content.Bookmark](#anytype-model-Block-Content-Bookmark) + - [Block.Content.Dataview](#anytype-model-Block-Content-Dataview) + - [Block.Content.Dataview.Checkbox](#anytype-model-Block-Content-Dataview-Checkbox) + - [Block.Content.Dataview.Date](#anytype-model-Block-Content-Dataview-Date) + - [Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) + - [Block.Content.Dataview.Group](#anytype-model-Block-Content-Dataview-Group) + - [Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) + - [Block.Content.Dataview.ObjectOrder](#anytype-model-Block-Content-Dataview-ObjectOrder) + - [Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) + - [Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) + - [Block.Content.Dataview.Status](#anytype-model-Block-Content-Dataview-Status) + - [Block.Content.Dataview.Tag](#anytype-model-Block-Content-Dataview-Tag) + - [Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) + - [Block.Content.Dataview.ViewGroup](#anytype-model-Block-Content-Dataview-ViewGroup) + - [Block.Content.Div](#anytype-model-Block-Content-Div) + - [Block.Content.FeaturedRelations](#anytype-model-Block-Content-FeaturedRelations) + - [Block.Content.File](#anytype-model-Block-Content-File) + - [Block.Content.Icon](#anytype-model-Block-Content-Icon) + - [Block.Content.Latex](#anytype-model-Block-Content-Latex) + - [Block.Content.Layout](#anytype-model-Block-Content-Layout) + - [Block.Content.Link](#anytype-model-Block-Content-Link) + - [Block.Content.Relation](#anytype-model-Block-Content-Relation) + - [Block.Content.Smartblock](#anytype-model-Block-Content-Smartblock) + - [Block.Content.Table](#anytype-model-Block-Content-Table) + - [Block.Content.TableColumn](#anytype-model-Block-Content-TableColumn) + - [Block.Content.TableOfContents](#anytype-model-Block-Content-TableOfContents) + - [Block.Content.TableRow](#anytype-model-Block-Content-TableRow) + - [Block.Content.Text](#anytype-model-Block-Content-Text) + - [Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) + - [Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) + - [Block.Content.Widget](#anytype-model-Block-Content-Widget) + - [Block.Restrictions](#anytype-model-Block-Restrictions) + - [BlockMetaOnly](#anytype-model-BlockMetaOnly) + - [InternalFlag](#anytype-model-InternalFlag) + - [Layout](#anytype-model-Layout) + - [LinkPreview](#anytype-model-LinkPreview) + - [Object](#anytype-model-Object) + - [Object.ChangePayload](#anytype-model-Object-ChangePayload) + - [ObjectType](#anytype-model-ObjectType) + - [ObjectView](#anytype-model-ObjectView) + - [ObjectView.DetailsSet](#anytype-model-ObjectView-DetailsSet) + - [ObjectView.HistorySize](#anytype-model-ObjectView-HistorySize) + - [ObjectView.RelationWithValuePerObject](#anytype-model-ObjectView-RelationWithValuePerObject) + - [Range](#anytype-model-Range) + - [Relation](#anytype-model-Relation) + - [Relation.Option](#anytype-model-Relation-Option) + - [RelationLink](#anytype-model-RelationLink) + - [RelationOptions](#anytype-model-RelationOptions) + - [RelationWithValue](#anytype-model-RelationWithValue) + - [Relations](#anytype-model-Relations) + - [Restrictions](#anytype-model-Restrictions) + - [Restrictions.DataviewRestrictions](#anytype-model-Restrictions-DataviewRestrictions) + - [SmartBlockSnapshotBase](#anytype-model-SmartBlockSnapshotBase) - - [Account.StatusType](#anytype.model.Account.StatusType) - - [Block.Align](#anytype.model.Block.Align) - - [Block.Content.Bookmark.State](#anytype.model.Block.Content.Bookmark.State) - - [Block.Content.Dataview.Filter.Condition](#anytype.model.Block.Content.Dataview.Filter.Condition) - - [Block.Content.Dataview.Filter.Operator](#anytype.model.Block.Content.Dataview.Filter.Operator) - - [Block.Content.Dataview.Filter.QuickOption](#anytype.model.Block.Content.Dataview.Filter.QuickOption) - - [Block.Content.Dataview.Relation.DateFormat](#anytype.model.Block.Content.Dataview.Relation.DateFormat) - - [Block.Content.Dataview.Relation.TimeFormat](#anytype.model.Block.Content.Dataview.Relation.TimeFormat) - - [Block.Content.Dataview.Sort.Type](#anytype.model.Block.Content.Dataview.Sort.Type) - - [Block.Content.Dataview.View.Size](#anytype.model.Block.Content.Dataview.View.Size) - - [Block.Content.Dataview.View.Type](#anytype.model.Block.Content.Dataview.View.Type) - - [Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) - - [Block.Content.File.State](#anytype.model.Block.Content.File.State) - - [Block.Content.File.Style](#anytype.model.Block.Content.File.Style) - - [Block.Content.File.Type](#anytype.model.Block.Content.File.Type) - - [Block.Content.Layout.Style](#anytype.model.Block.Content.Layout.Style) - - [Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) - - [Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) - - [Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) - - [Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) - - [Block.Content.Text.Mark.Type](#anytype.model.Block.Content.Text.Mark.Type) - - [Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) - - [Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) - - [Block.Position](#anytype.model.Block.Position) - - [Block.VerticalAlign](#anytype.model.Block.VerticalAlign) - - [InternalFlag.Value](#anytype.model.InternalFlag.Value) - - [LinkPreview.Type](#anytype.model.LinkPreview.Type) - - [ObjectType.Layout](#anytype.model.ObjectType.Layout) - - [Relation.DataSource](#anytype.model.Relation.DataSource) - - [Relation.Scope](#anytype.model.Relation.Scope) - - [RelationFormat](#anytype.model.RelationFormat) - - [Restrictions.DataviewRestriction](#anytype.model.Restrictions.DataviewRestriction) - - [Restrictions.ObjectRestriction](#anytype.model.Restrictions.ObjectRestriction) - - [SmartBlockType](#anytype.model.SmartBlockType) + - [Account.StatusType](#anytype-model-Account-StatusType) + - [Block.Align](#anytype-model-Block-Align) + - [Block.Content.Bookmark.State](#anytype-model-Block-Content-Bookmark-State) + - [Block.Content.Dataview.Filter.Condition](#anytype-model-Block-Content-Dataview-Filter-Condition) + - [Block.Content.Dataview.Filter.Operator](#anytype-model-Block-Content-Dataview-Filter-Operator) + - [Block.Content.Dataview.Filter.QuickOption](#anytype-model-Block-Content-Dataview-Filter-QuickOption) + - [Block.Content.Dataview.Relation.DateFormat](#anytype-model-Block-Content-Dataview-Relation-DateFormat) + - [Block.Content.Dataview.Relation.TimeFormat](#anytype-model-Block-Content-Dataview-Relation-TimeFormat) + - [Block.Content.Dataview.Sort.Type](#anytype-model-Block-Content-Dataview-Sort-Type) + - [Block.Content.Dataview.View.Size](#anytype-model-Block-Content-Dataview-View-Size) + - [Block.Content.Dataview.View.Type](#anytype-model-Block-Content-Dataview-View-Type) + - [Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) + - [Block.Content.File.State](#anytype-model-Block-Content-File-State) + - [Block.Content.File.Style](#anytype-model-Block-Content-File-Style) + - [Block.Content.File.Type](#anytype-model-Block-Content-File-Type) + - [Block.Content.Layout.Style](#anytype-model-Block-Content-Layout-Style) + - [Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) + - [Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) + - [Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) + - [Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) + - [Block.Content.Text.Mark.Type](#anytype-model-Block-Content-Text-Mark-Type) + - [Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) + - [Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) + - [Block.Position](#anytype-model-Block-Position) + - [Block.VerticalAlign](#anytype-model-Block-VerticalAlign) + - [InternalFlag.Value](#anytype-model-InternalFlag-Value) + - [LinkPreview.Type](#anytype-model-LinkPreview-Type) + - [ObjectType.Layout](#anytype-model-ObjectType-Layout) + - [Relation.DataSource](#anytype-model-Relation-DataSource) + - [Relation.Scope](#anytype-model-Relation-Scope) + - [RelationFormat](#anytype-model-RelationFormat) + - [Restrictions.DataviewRestriction](#anytype-model-Restrictions-DataviewRestriction) + - [Restrictions.ObjectRestriction](#anytype-model-Restrictions-ObjectRestriction) + - [SmartBlockType](#anytype-model-SmartBlockType) - [Scalar Value Types](#scalar-value-types) - +

Top

## pb/protos/service/service.proto @@ -1440,219 +1440,219 @@ - + ### ClientCommands | Method Name | Request Type | Response Type | Description | | ----------- | ------------ | ------------- | ------------| -| AppGetVersion | [Rpc.App.GetVersion.Request](#anytype.Rpc.App.GetVersion.Request) | [Rpc.App.GetVersion.Response](#anytype.Rpc.App.GetVersion.Response) | | -| AppSetDeviceState | [Rpc.App.SetDeviceState.Request](#anytype.Rpc.App.SetDeviceState.Request) | [Rpc.App.SetDeviceState.Response](#anytype.Rpc.App.SetDeviceState.Response) | | -| AppShutdown | [Rpc.App.Shutdown.Request](#anytype.Rpc.App.Shutdown.Request) | [Rpc.App.Shutdown.Response](#anytype.Rpc.App.Shutdown.Response) | | -| WalletCreate | [Rpc.Wallet.Create.Request](#anytype.Rpc.Wallet.Create.Request) | [Rpc.Wallet.Create.Response](#anytype.Rpc.Wallet.Create.Response) | Wallet *** | -| WalletRecover | [Rpc.Wallet.Recover.Request](#anytype.Rpc.Wallet.Recover.Request) | [Rpc.Wallet.Recover.Response](#anytype.Rpc.Wallet.Recover.Response) | | -| WalletConvert | [Rpc.Wallet.Convert.Request](#anytype.Rpc.Wallet.Convert.Request) | [Rpc.Wallet.Convert.Response](#anytype.Rpc.Wallet.Convert.Response) | | -| WalletCreateSession | [Rpc.Wallet.CreateSession.Request](#anytype.Rpc.Wallet.CreateSession.Request) | [Rpc.Wallet.CreateSession.Response](#anytype.Rpc.Wallet.CreateSession.Response) | | -| WalletCloseSession | [Rpc.Wallet.CloseSession.Request](#anytype.Rpc.Wallet.CloseSession.Request) | [Rpc.Wallet.CloseSession.Response](#anytype.Rpc.Wallet.CloseSession.Response) | | -| WorkspaceCreate | [Rpc.Workspace.Create.Request](#anytype.Rpc.Workspace.Create.Request) | [Rpc.Workspace.Create.Response](#anytype.Rpc.Workspace.Create.Response) | Workspace *** | -| WorkspaceObjectAdd | [Rpc.Workspace.Object.Add.Request](#anytype.Rpc.Workspace.Object.Add.Request) | [Rpc.Workspace.Object.Add.Response](#anytype.Rpc.Workspace.Object.Add.Response) | | -| WorkspaceObjectListAdd | [Rpc.Workspace.Object.ListAdd.Request](#anytype.Rpc.Workspace.Object.ListAdd.Request) | [Rpc.Workspace.Object.ListAdd.Response](#anytype.Rpc.Workspace.Object.ListAdd.Response) | | -| WorkspaceObjectListRemove | [Rpc.Workspace.Object.ListRemove.Request](#anytype.Rpc.Workspace.Object.ListRemove.Request) | [Rpc.Workspace.Object.ListRemove.Response](#anytype.Rpc.Workspace.Object.ListRemove.Response) | | -| WorkspaceSelect | [Rpc.Workspace.Select.Request](#anytype.Rpc.Workspace.Select.Request) | [Rpc.Workspace.Select.Response](#anytype.Rpc.Workspace.Select.Response) | | -| WorkspaceGetCurrent | [Rpc.Workspace.GetCurrent.Request](#anytype.Rpc.Workspace.GetCurrent.Request) | [Rpc.Workspace.GetCurrent.Response](#anytype.Rpc.Workspace.GetCurrent.Response) | | -| WorkspaceGetAll | [Rpc.Workspace.GetAll.Request](#anytype.Rpc.Workspace.GetAll.Request) | [Rpc.Workspace.GetAll.Response](#anytype.Rpc.Workspace.GetAll.Response) | | -| WorkspaceSetIsHighlighted | [Rpc.Workspace.SetIsHighlighted.Request](#anytype.Rpc.Workspace.SetIsHighlighted.Request) | [Rpc.Workspace.SetIsHighlighted.Response](#anytype.Rpc.Workspace.SetIsHighlighted.Response) | | -| WorkspaceExport | [Rpc.Workspace.Export.Request](#anytype.Rpc.Workspace.Export.Request) | [Rpc.Workspace.Export.Response](#anytype.Rpc.Workspace.Export.Response) | | -| AccountRecover | [Rpc.Account.Recover.Request](#anytype.Rpc.Account.Recover.Request) | [Rpc.Account.Recover.Response](#anytype.Rpc.Account.Recover.Response) | Account *** | -| AccountCreate | [Rpc.Account.Create.Request](#anytype.Rpc.Account.Create.Request) | [Rpc.Account.Create.Response](#anytype.Rpc.Account.Create.Response) | | -| AccountDelete | [Rpc.Account.Delete.Request](#anytype.Rpc.Account.Delete.Request) | [Rpc.Account.Delete.Response](#anytype.Rpc.Account.Delete.Response) | | -| AccountSelect | [Rpc.Account.Select.Request](#anytype.Rpc.Account.Select.Request) | [Rpc.Account.Select.Response](#anytype.Rpc.Account.Select.Response) | | -| AccountStop | [Rpc.Account.Stop.Request](#anytype.Rpc.Account.Stop.Request) | [Rpc.Account.Stop.Response](#anytype.Rpc.Account.Stop.Response) | | -| AccountMove | [Rpc.Account.Move.Request](#anytype.Rpc.Account.Move.Request) | [Rpc.Account.Move.Response](#anytype.Rpc.Account.Move.Response) | | -| AccountConfigUpdate | [Rpc.Account.ConfigUpdate.Request](#anytype.Rpc.Account.ConfigUpdate.Request) | [Rpc.Account.ConfigUpdate.Response](#anytype.Rpc.Account.ConfigUpdate.Response) | | -| AccountRecoverFromLegacyExport | [Rpc.Account.RecoverFromLegacyExport.Request](#anytype.Rpc.Account.RecoverFromLegacyExport.Request) | [Rpc.Account.RecoverFromLegacyExport.Response](#anytype.Rpc.Account.RecoverFromLegacyExport.Response) | | -| ObjectOpen | [Rpc.Object.Open.Request](#anytype.Rpc.Object.Open.Request) | [Rpc.Object.Open.Response](#anytype.Rpc.Object.Open.Response) | Object *** | -| ObjectClose | [Rpc.Object.Close.Request](#anytype.Rpc.Object.Close.Request) | [Rpc.Object.Close.Response](#anytype.Rpc.Object.Close.Response) | | -| ObjectShow | [Rpc.Object.Show.Request](#anytype.Rpc.Object.Show.Request) | [Rpc.Object.Show.Response](#anytype.Rpc.Object.Show.Response) | | -| ObjectCreate | [Rpc.Object.Create.Request](#anytype.Rpc.Object.Create.Request) | [Rpc.Object.Create.Response](#anytype.Rpc.Object.Create.Response) | ObjectCreate just creates the new page, without adding the link to it from some other page | -| ObjectCreateBookmark | [Rpc.Object.CreateBookmark.Request](#anytype.Rpc.Object.CreateBookmark.Request) | [Rpc.Object.CreateBookmark.Response](#anytype.Rpc.Object.CreateBookmark.Response) | | -| ObjectCreateSet | [Rpc.Object.CreateSet.Request](#anytype.Rpc.Object.CreateSet.Request) | [Rpc.Object.CreateSet.Response](#anytype.Rpc.Object.CreateSet.Response) | ObjectCreateSet just creates the new set, without adding the link to it from some other page | -| ObjectGraph | [Rpc.Object.Graph.Request](#anytype.Rpc.Object.Graph.Request) | [Rpc.Object.Graph.Response](#anytype.Rpc.Object.Graph.Response) | | -| ObjectSearch | [Rpc.Object.Search.Request](#anytype.Rpc.Object.Search.Request) | [Rpc.Object.Search.Response](#anytype.Rpc.Object.Search.Response) | | -| ObjectSearchSubscribe | [Rpc.Object.SearchSubscribe.Request](#anytype.Rpc.Object.SearchSubscribe.Request) | [Rpc.Object.SearchSubscribe.Response](#anytype.Rpc.Object.SearchSubscribe.Response) | | -| ObjectSubscribeIds | [Rpc.Object.SubscribeIds.Request](#anytype.Rpc.Object.SubscribeIds.Request) | [Rpc.Object.SubscribeIds.Response](#anytype.Rpc.Object.SubscribeIds.Response) | | -| ObjectGroupsSubscribe | [Rpc.Object.GroupsSubscribe.Request](#anytype.Rpc.Object.GroupsSubscribe.Request) | [Rpc.Object.GroupsSubscribe.Response](#anytype.Rpc.Object.GroupsSubscribe.Response) | | -| ObjectSearchUnsubscribe | [Rpc.Object.SearchUnsubscribe.Request](#anytype.Rpc.Object.SearchUnsubscribe.Request) | [Rpc.Object.SearchUnsubscribe.Response](#anytype.Rpc.Object.SearchUnsubscribe.Response) | | -| ObjectSetDetails | [Rpc.Object.SetDetails.Request](#anytype.Rpc.Object.SetDetails.Request) | [Rpc.Object.SetDetails.Response](#anytype.Rpc.Object.SetDetails.Response) | | -| ObjectDuplicate | [Rpc.Object.Duplicate.Request](#anytype.Rpc.Object.Duplicate.Request) | [Rpc.Object.Duplicate.Response](#anytype.Rpc.Object.Duplicate.Response) | | -| ObjectSetObjectType | [Rpc.Object.SetObjectType.Request](#anytype.Rpc.Object.SetObjectType.Request) | [Rpc.Object.SetObjectType.Response](#anytype.Rpc.Object.SetObjectType.Response) | ObjectSetObjectType sets an existing object type to the object so it will appear in sets and suggests relations from this type | -| ObjectSetLayout | [Rpc.Object.SetLayout.Request](#anytype.Rpc.Object.SetLayout.Request) | [Rpc.Object.SetLayout.Response](#anytype.Rpc.Object.SetLayout.Response) | | -| ObjectSetInternalFlags | [Rpc.Object.SetInternalFlags.Request](#anytype.Rpc.Object.SetInternalFlags.Request) | [Rpc.Object.SetInternalFlags.Response](#anytype.Rpc.Object.SetInternalFlags.Response) | | -| ObjectSetIsFavorite | [Rpc.Object.SetIsFavorite.Request](#anytype.Rpc.Object.SetIsFavorite.Request) | [Rpc.Object.SetIsFavorite.Response](#anytype.Rpc.Object.SetIsFavorite.Response) | | -| ObjectSetIsArchived | [Rpc.Object.SetIsArchived.Request](#anytype.Rpc.Object.SetIsArchived.Request) | [Rpc.Object.SetIsArchived.Response](#anytype.Rpc.Object.SetIsArchived.Response) | | -| ObjectSetSource | [Rpc.Object.SetSource.Request](#anytype.Rpc.Object.SetSource.Request) | [Rpc.Object.SetSource.Response](#anytype.Rpc.Object.SetSource.Response) | | -| ObjectWorkspaceSetDashboard | [Rpc.Object.WorkspaceSetDashboard.Request](#anytype.Rpc.Object.WorkspaceSetDashboard.Request) | [Rpc.Object.WorkspaceSetDashboard.Response](#anytype.Rpc.Object.WorkspaceSetDashboard.Response) | | -| ObjectListDuplicate | [Rpc.Object.ListDuplicate.Request](#anytype.Rpc.Object.ListDuplicate.Request) | [Rpc.Object.ListDuplicate.Response](#anytype.Rpc.Object.ListDuplicate.Response) | | -| ObjectListDelete | [Rpc.Object.ListDelete.Request](#anytype.Rpc.Object.ListDelete.Request) | [Rpc.Object.ListDelete.Response](#anytype.Rpc.Object.ListDelete.Response) | | -| ObjectListSetIsArchived | [Rpc.Object.ListSetIsArchived.Request](#anytype.Rpc.Object.ListSetIsArchived.Request) | [Rpc.Object.ListSetIsArchived.Response](#anytype.Rpc.Object.ListSetIsArchived.Response) | | -| ObjectListSetIsFavorite | [Rpc.Object.ListSetIsFavorite.Request](#anytype.Rpc.Object.ListSetIsFavorite.Request) | [Rpc.Object.ListSetIsFavorite.Response](#anytype.Rpc.Object.ListSetIsFavorite.Response) | | -| ObjectApplyTemplate | [Rpc.Object.ApplyTemplate.Request](#anytype.Rpc.Object.ApplyTemplate.Request) | [Rpc.Object.ApplyTemplate.Response](#anytype.Rpc.Object.ApplyTemplate.Response) | | -| ObjectToSet | [Rpc.Object.ToSet.Request](#anytype.Rpc.Object.ToSet.Request) | [Rpc.Object.ToSet.Response](#anytype.Rpc.Object.ToSet.Response) | ObjectToSet creates new set from given object and removes object | -| ObjectToCollection | [Rpc.Object.ToCollection.Request](#anytype.Rpc.Object.ToCollection.Request) | [Rpc.Object.ToCollection.Response](#anytype.Rpc.Object.ToCollection.Response) | | -| ObjectShareByLink | [Rpc.Object.ShareByLink.Request](#anytype.Rpc.Object.ShareByLink.Request) | [Rpc.Object.ShareByLink.Response](#anytype.Rpc.Object.ShareByLink.Response) | | -| ObjectUndo | [Rpc.Object.Undo.Request](#anytype.Rpc.Object.Undo.Request) | [Rpc.Object.Undo.Response](#anytype.Rpc.Object.Undo.Response) | | -| ObjectRedo | [Rpc.Object.Redo.Request](#anytype.Rpc.Object.Redo.Request) | [Rpc.Object.Redo.Response](#anytype.Rpc.Object.Redo.Response) | | -| ObjectListExport | [Rpc.Object.ListExport.Request](#anytype.Rpc.Object.ListExport.Request) | [Rpc.Object.ListExport.Response](#anytype.Rpc.Object.ListExport.Response) | | -| ObjectBookmarkFetch | [Rpc.Object.BookmarkFetch.Request](#anytype.Rpc.Object.BookmarkFetch.Request) | [Rpc.Object.BookmarkFetch.Response](#anytype.Rpc.Object.BookmarkFetch.Response) | | -| ObjectToBookmark | [Rpc.Object.ToBookmark.Request](#anytype.Rpc.Object.ToBookmark.Request) | [Rpc.Object.ToBookmark.Response](#anytype.Rpc.Object.ToBookmark.Response) | | -| ObjectImport | [Rpc.Object.Import.Request](#anytype.Rpc.Object.Import.Request) | [Rpc.Object.Import.Response](#anytype.Rpc.Object.Import.Response) | | -| ObjectImportList | [Rpc.Object.ImportList.Request](#anytype.Rpc.Object.ImportList.Request) | [Rpc.Object.ImportList.Response](#anytype.Rpc.Object.ImportList.Response) | | -| ObjectImportNotionValidateToken | [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype.Rpc.Object.Import.Notion.ValidateToken.Request) | [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response) | | -| ObjectImportUseCase | [Rpc.Object.ImportUseCase.Request](#anytype.Rpc.Object.ImportUseCase.Request) | [Rpc.Object.ImportUseCase.Response](#anytype.Rpc.Object.ImportUseCase.Response) | | -| ObjectCollectionAdd | [Rpc.ObjectCollection.Add.Request](#anytype.Rpc.ObjectCollection.Add.Request) | [Rpc.ObjectCollection.Add.Response](#anytype.Rpc.ObjectCollection.Add.Response) | Collections *** | -| ObjectCollectionRemove | [Rpc.ObjectCollection.Remove.Request](#anytype.Rpc.ObjectCollection.Remove.Request) | [Rpc.ObjectCollection.Remove.Response](#anytype.Rpc.ObjectCollection.Remove.Response) | | -| ObjectCollectionSort | [Rpc.ObjectCollection.Sort.Request](#anytype.Rpc.ObjectCollection.Sort.Request) | [Rpc.ObjectCollection.Sort.Response](#anytype.Rpc.ObjectCollection.Sort.Response) | | -| ObjectCreateRelation | [Rpc.Object.CreateRelation.Request](#anytype.Rpc.Object.CreateRelation.Request) | [Rpc.Object.CreateRelation.Response](#anytype.Rpc.Object.CreateRelation.Response) | Relations *** | -| ObjectCreateRelationOption | [Rpc.Object.CreateRelationOption.Request](#anytype.Rpc.Object.CreateRelationOption.Request) | [Rpc.Object.CreateRelationOption.Response](#anytype.Rpc.Object.CreateRelationOption.Response) | | -| RelationListRemoveOption | [Rpc.Relation.ListRemoveOption.Request](#anytype.Rpc.Relation.ListRemoveOption.Request) | [Rpc.Relation.ListRemoveOption.Response](#anytype.Rpc.Relation.ListRemoveOption.Response) | | -| RelationOptions | [Rpc.Relation.Options.Request](#anytype.Rpc.Relation.Options.Request) | [Rpc.Relation.Options.Response](#anytype.Rpc.Relation.Options.Response) | | -| ObjectRelationAdd | [Rpc.ObjectRelation.Add.Request](#anytype.Rpc.ObjectRelation.Add.Request) | [Rpc.ObjectRelation.Add.Response](#anytype.Rpc.ObjectRelation.Add.Response) | Object Relations *** | -| ObjectRelationDelete | [Rpc.ObjectRelation.Delete.Request](#anytype.Rpc.ObjectRelation.Delete.Request) | [Rpc.ObjectRelation.Delete.Response](#anytype.Rpc.ObjectRelation.Delete.Response) | | -| ObjectRelationAddFeatured | [Rpc.ObjectRelation.AddFeatured.Request](#anytype.Rpc.ObjectRelation.AddFeatured.Request) | [Rpc.ObjectRelation.AddFeatured.Response](#anytype.Rpc.ObjectRelation.AddFeatured.Response) | | -| ObjectRelationRemoveFeatured | [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype.Rpc.ObjectRelation.RemoveFeatured.Request) | [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response) | | -| ObjectRelationListAvailable | [Rpc.ObjectRelation.ListAvailable.Request](#anytype.Rpc.ObjectRelation.ListAvailable.Request) | [Rpc.ObjectRelation.ListAvailable.Response](#anytype.Rpc.ObjectRelation.ListAvailable.Response) | | -| ObjectCreateObjectType | [Rpc.Object.CreateObjectType.Request](#anytype.Rpc.Object.CreateObjectType.Request) | [Rpc.Object.CreateObjectType.Response](#anytype.Rpc.Object.CreateObjectType.Response) | ObjectType commands *** | -| ObjectTypeRelationList | [Rpc.ObjectType.Relation.List.Request](#anytype.Rpc.ObjectType.Relation.List.Request) | [Rpc.ObjectType.Relation.List.Response](#anytype.Rpc.ObjectType.Relation.List.Response) | | -| ObjectTypeRelationAdd | [Rpc.ObjectType.Relation.Add.Request](#anytype.Rpc.ObjectType.Relation.Add.Request) | [Rpc.ObjectType.Relation.Add.Response](#anytype.Rpc.ObjectType.Relation.Add.Response) | | -| ObjectTypeRelationRemove | [Rpc.ObjectType.Relation.Remove.Request](#anytype.Rpc.ObjectType.Relation.Remove.Request) | [Rpc.ObjectType.Relation.Remove.Response](#anytype.Rpc.ObjectType.Relation.Remove.Response) | | -| HistoryShowVersion | [Rpc.History.ShowVersion.Request](#anytype.Rpc.History.ShowVersion.Request) | [Rpc.History.ShowVersion.Response](#anytype.Rpc.History.ShowVersion.Response) | | -| HistoryGetVersions | [Rpc.History.GetVersions.Request](#anytype.Rpc.History.GetVersions.Request) | [Rpc.History.GetVersions.Response](#anytype.Rpc.History.GetVersions.Response) | | -| HistorySetVersion | [Rpc.History.SetVersion.Request](#anytype.Rpc.History.SetVersion.Request) | [Rpc.History.SetVersion.Response](#anytype.Rpc.History.SetVersion.Response) | | -| FileOffload | [Rpc.File.Offload.Request](#anytype.Rpc.File.Offload.Request) | [Rpc.File.Offload.Response](#anytype.Rpc.File.Offload.Response) | Files *** | -| FileListOffload | [Rpc.File.ListOffload.Request](#anytype.Rpc.File.ListOffload.Request) | [Rpc.File.ListOffload.Response](#anytype.Rpc.File.ListOffload.Response) | | -| FileUpload | [Rpc.File.Upload.Request](#anytype.Rpc.File.Upload.Request) | [Rpc.File.Upload.Response](#anytype.Rpc.File.Upload.Response) | | -| FileDownload | [Rpc.File.Download.Request](#anytype.Rpc.File.Download.Request) | [Rpc.File.Download.Response](#anytype.Rpc.File.Download.Response) | | -| FileDrop | [Rpc.File.Drop.Request](#anytype.Rpc.File.Drop.Request) | [Rpc.File.Drop.Response](#anytype.Rpc.File.Drop.Response) | | -| FileSpaceUsage | [Rpc.File.SpaceUsage.Request](#anytype.Rpc.File.SpaceUsage.Request) | [Rpc.File.SpaceUsage.Response](#anytype.Rpc.File.SpaceUsage.Response) | | -| NavigationListObjects | [Rpc.Navigation.ListObjects.Request](#anytype.Rpc.Navigation.ListObjects.Request) | [Rpc.Navigation.ListObjects.Response](#anytype.Rpc.Navigation.ListObjects.Response) | | -| NavigationGetObjectInfoWithLinks | [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Request) | [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response) | | -| TemplateCreateFromObject | [Rpc.Template.CreateFromObject.Request](#anytype.Rpc.Template.CreateFromObject.Request) | [Rpc.Template.CreateFromObject.Response](#anytype.Rpc.Template.CreateFromObject.Response) | | -| TemplateCreateFromObjectType | [Rpc.Template.CreateFromObjectType.Request](#anytype.Rpc.Template.CreateFromObjectType.Request) | [Rpc.Template.CreateFromObjectType.Response](#anytype.Rpc.Template.CreateFromObjectType.Response) | to be renamed to ObjectCreateTemplate | -| TemplateClone | [Rpc.Template.Clone.Request](#anytype.Rpc.Template.Clone.Request) | [Rpc.Template.Clone.Response](#anytype.Rpc.Template.Clone.Response) | | -| TemplateExportAll | [Rpc.Template.ExportAll.Request](#anytype.Rpc.Template.ExportAll.Request) | [Rpc.Template.ExportAll.Response](#anytype.Rpc.Template.ExportAll.Response) | | -| LinkPreview | [Rpc.LinkPreview.Request](#anytype.Rpc.LinkPreview.Request) | [Rpc.LinkPreview.Response](#anytype.Rpc.LinkPreview.Response) | | -| UnsplashSearch | [Rpc.Unsplash.Search.Request](#anytype.Rpc.Unsplash.Search.Request) | [Rpc.Unsplash.Search.Response](#anytype.Rpc.Unsplash.Search.Response) | | -| UnsplashDownload | [Rpc.Unsplash.Download.Request](#anytype.Rpc.Unsplash.Download.Request) | [Rpc.Unsplash.Download.Response](#anytype.Rpc.Unsplash.Download.Response) | UnsplashDownload downloads picture from unsplash by ID, put it to the IPFS and returns the hash. The artist info is available in the object details | -| BlockUpload | [Rpc.Block.Upload.Request](#anytype.Rpc.Block.Upload.Request) | [Rpc.Block.Upload.Response](#anytype.Rpc.Block.Upload.Response) | General Block commands *** | -| BlockReplace | [Rpc.Block.Replace.Request](#anytype.Rpc.Block.Replace.Request) | [Rpc.Block.Replace.Response](#anytype.Rpc.Block.Replace.Response) | | -| BlockCreate | [Rpc.Block.Create.Request](#anytype.Rpc.Block.Create.Request) | [Rpc.Block.Create.Response](#anytype.Rpc.Block.Create.Response) | | -| BlockSplit | [Rpc.Block.Split.Request](#anytype.Rpc.Block.Split.Request) | [Rpc.Block.Split.Response](#anytype.Rpc.Block.Split.Response) | | -| BlockMerge | [Rpc.Block.Merge.Request](#anytype.Rpc.Block.Merge.Request) | [Rpc.Block.Merge.Response](#anytype.Rpc.Block.Merge.Response) | | -| BlockCopy | [Rpc.Block.Copy.Request](#anytype.Rpc.Block.Copy.Request) | [Rpc.Block.Copy.Response](#anytype.Rpc.Block.Copy.Response) | | -| BlockPaste | [Rpc.Block.Paste.Request](#anytype.Rpc.Block.Paste.Request) | [Rpc.Block.Paste.Response](#anytype.Rpc.Block.Paste.Response) | | -| BlockCut | [Rpc.Block.Cut.Request](#anytype.Rpc.Block.Cut.Request) | [Rpc.Block.Cut.Response](#anytype.Rpc.Block.Cut.Response) | | -| BlockSetFields | [Rpc.Block.SetFields.Request](#anytype.Rpc.Block.SetFields.Request) | [Rpc.Block.SetFields.Response](#anytype.Rpc.Block.SetFields.Response) | | -| BlockExport | [Rpc.Block.Export.Request](#anytype.Rpc.Block.Export.Request) | [Rpc.Block.Export.Response](#anytype.Rpc.Block.Export.Response) | | -| BlockListDelete | [Rpc.Block.ListDelete.Request](#anytype.Rpc.Block.ListDelete.Request) | [Rpc.Block.ListDelete.Response](#anytype.Rpc.Block.ListDelete.Response) | | -| BlockListMoveToExistingObject | [Rpc.Block.ListMoveToExistingObject.Request](#anytype.Rpc.Block.ListMoveToExistingObject.Request) | [Rpc.Block.ListMoveToExistingObject.Response](#anytype.Rpc.Block.ListMoveToExistingObject.Response) | | -| BlockListMoveToNewObject | [Rpc.Block.ListMoveToNewObject.Request](#anytype.Rpc.Block.ListMoveToNewObject.Request) | [Rpc.Block.ListMoveToNewObject.Response](#anytype.Rpc.Block.ListMoveToNewObject.Response) | | -| BlockListConvertToObjects | [Rpc.Block.ListConvertToObjects.Request](#anytype.Rpc.Block.ListConvertToObjects.Request) | [Rpc.Block.ListConvertToObjects.Response](#anytype.Rpc.Block.ListConvertToObjects.Response) | | -| BlockListSetFields | [Rpc.Block.ListSetFields.Request](#anytype.Rpc.Block.ListSetFields.Request) | [Rpc.Block.ListSetFields.Response](#anytype.Rpc.Block.ListSetFields.Response) | | -| BlockListDuplicate | [Rpc.Block.ListDuplicate.Request](#anytype.Rpc.Block.ListDuplicate.Request) | [Rpc.Block.ListDuplicate.Response](#anytype.Rpc.Block.ListDuplicate.Response) | | -| BlockListSetBackgroundColor | [Rpc.Block.ListSetBackgroundColor.Request](#anytype.Rpc.Block.ListSetBackgroundColor.Request) | [Rpc.Block.ListSetBackgroundColor.Response](#anytype.Rpc.Block.ListSetBackgroundColor.Response) | | -| BlockListSetAlign | [Rpc.Block.ListSetAlign.Request](#anytype.Rpc.Block.ListSetAlign.Request) | [Rpc.Block.ListSetAlign.Response](#anytype.Rpc.Block.ListSetAlign.Response) | | -| BlockListSetVerticalAlign | [Rpc.Block.ListSetVerticalAlign.Request](#anytype.Rpc.Block.ListSetVerticalAlign.Request) | [Rpc.Block.ListSetVerticalAlign.Response](#anytype.Rpc.Block.ListSetVerticalAlign.Response) | | -| BlockListTurnInto | [Rpc.Block.ListTurnInto.Request](#anytype.Rpc.Block.ListTurnInto.Request) | [Rpc.Block.ListTurnInto.Response](#anytype.Rpc.Block.ListTurnInto.Response) | | -| BlockTextSetText | [Rpc.BlockText.SetText.Request](#anytype.Rpc.BlockText.SetText.Request) | [Rpc.BlockText.SetText.Response](#anytype.Rpc.BlockText.SetText.Response) | Text Block commands *** | -| BlockTextSetColor | [Rpc.BlockText.SetColor.Request](#anytype.Rpc.BlockText.SetColor.Request) | [Rpc.BlockText.SetColor.Response](#anytype.Rpc.BlockText.SetColor.Response) | | -| BlockTextSetStyle | [Rpc.BlockText.SetStyle.Request](#anytype.Rpc.BlockText.SetStyle.Request) | [Rpc.BlockText.SetStyle.Response](#anytype.Rpc.BlockText.SetStyle.Response) | | -| BlockTextSetChecked | [Rpc.BlockText.SetChecked.Request](#anytype.Rpc.BlockText.SetChecked.Request) | [Rpc.BlockText.SetChecked.Response](#anytype.Rpc.BlockText.SetChecked.Response) | | -| BlockTextSetIcon | [Rpc.BlockText.SetIcon.Request](#anytype.Rpc.BlockText.SetIcon.Request) | [Rpc.BlockText.SetIcon.Response](#anytype.Rpc.BlockText.SetIcon.Response) | | -| BlockTextListSetColor | [Rpc.BlockText.ListSetColor.Request](#anytype.Rpc.BlockText.ListSetColor.Request) | [Rpc.BlockText.ListSetColor.Response](#anytype.Rpc.BlockText.ListSetColor.Response) | | -| BlockTextListSetMark | [Rpc.BlockText.ListSetMark.Request](#anytype.Rpc.BlockText.ListSetMark.Request) | [Rpc.BlockText.ListSetMark.Response](#anytype.Rpc.BlockText.ListSetMark.Response) | | -| BlockTextListSetStyle | [Rpc.BlockText.ListSetStyle.Request](#anytype.Rpc.BlockText.ListSetStyle.Request) | [Rpc.BlockText.ListSetStyle.Response](#anytype.Rpc.BlockText.ListSetStyle.Response) | | -| BlockTextListClearStyle | [Rpc.BlockText.ListClearStyle.Request](#anytype.Rpc.BlockText.ListClearStyle.Request) | [Rpc.BlockText.ListClearStyle.Response](#anytype.Rpc.BlockText.ListClearStyle.Response) | | -| BlockTextListClearContent | [Rpc.BlockText.ListClearContent.Request](#anytype.Rpc.BlockText.ListClearContent.Request) | [Rpc.BlockText.ListClearContent.Response](#anytype.Rpc.BlockText.ListClearContent.Response) | | -| BlockFileSetName | [Rpc.BlockFile.SetName.Request](#anytype.Rpc.BlockFile.SetName.Request) | [Rpc.BlockFile.SetName.Response](#anytype.Rpc.BlockFile.SetName.Response) | File block commands *** | -| BlockImageSetName | [Rpc.BlockImage.SetName.Request](#anytype.Rpc.BlockImage.SetName.Request) | [Rpc.BlockImage.SetName.Response](#anytype.Rpc.BlockImage.SetName.Response) | | -| BlockVideoSetName | [Rpc.BlockVideo.SetName.Request](#anytype.Rpc.BlockVideo.SetName.Request) | [Rpc.BlockVideo.SetName.Response](#anytype.Rpc.BlockVideo.SetName.Response) | | -| BlockFileCreateAndUpload | [Rpc.BlockFile.CreateAndUpload.Request](#anytype.Rpc.BlockFile.CreateAndUpload.Request) | [Rpc.BlockFile.CreateAndUpload.Response](#anytype.Rpc.BlockFile.CreateAndUpload.Response) | | -| BlockFileListSetStyle | [Rpc.BlockFile.ListSetStyle.Request](#anytype.Rpc.BlockFile.ListSetStyle.Request) | [Rpc.BlockFile.ListSetStyle.Response](#anytype.Rpc.BlockFile.ListSetStyle.Response) | | -| BlockDataviewViewCreate | [Rpc.BlockDataview.View.Create.Request](#anytype.Rpc.BlockDataview.View.Create.Request) | [Rpc.BlockDataview.View.Create.Response](#anytype.Rpc.BlockDataview.View.Create.Response) | Dataview block commands *** | -| BlockDataviewViewDelete | [Rpc.BlockDataview.View.Delete.Request](#anytype.Rpc.BlockDataview.View.Delete.Request) | [Rpc.BlockDataview.View.Delete.Response](#anytype.Rpc.BlockDataview.View.Delete.Response) | | -| BlockDataviewViewUpdate | [Rpc.BlockDataview.View.Update.Request](#anytype.Rpc.BlockDataview.View.Update.Request) | [Rpc.BlockDataview.View.Update.Response](#anytype.Rpc.BlockDataview.View.Update.Response) | | -| BlockDataviewViewSetActive | [Rpc.BlockDataview.View.SetActive.Request](#anytype.Rpc.BlockDataview.View.SetActive.Request) | [Rpc.BlockDataview.View.SetActive.Response](#anytype.Rpc.BlockDataview.View.SetActive.Response) | | -| BlockDataviewViewSetPosition | [Rpc.BlockDataview.View.SetPosition.Request](#anytype.Rpc.BlockDataview.View.SetPosition.Request) | [Rpc.BlockDataview.View.SetPosition.Response](#anytype.Rpc.BlockDataview.View.SetPosition.Response) | | -| BlockDataviewSetSource | [Rpc.BlockDataview.SetSource.Request](#anytype.Rpc.BlockDataview.SetSource.Request) | [Rpc.BlockDataview.SetSource.Response](#anytype.Rpc.BlockDataview.SetSource.Response) | | -| BlockDataviewRelationAdd | [Rpc.BlockDataview.Relation.Add.Request](#anytype.Rpc.BlockDataview.Relation.Add.Request) | [Rpc.BlockDataview.Relation.Add.Response](#anytype.Rpc.BlockDataview.Relation.Add.Response) | | -| BlockDataviewRelationDelete | [Rpc.BlockDataview.Relation.Delete.Request](#anytype.Rpc.BlockDataview.Relation.Delete.Request) | [Rpc.BlockDataview.Relation.Delete.Response](#anytype.Rpc.BlockDataview.Relation.Delete.Response) | | -| BlockDataviewRelationListAvailable | [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Request) | [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response) | | -| BlockDataviewGroupOrderUpdate | [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype.Rpc.BlockDataview.GroupOrder.Update.Request) | [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response) | | -| BlockDataviewObjectOrderUpdate | [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Request) | [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response) | | -| BlockDataviewObjectOrderMove | [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Request) | [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response) | | -| BlockDataviewCreateFromExistingObject | [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Request) | [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response) | | -| BlockDataviewFilterAdd | [Rpc.BlockDataview.Filter.Add.Request](#anytype.Rpc.BlockDataview.Filter.Add.Request) | [Rpc.BlockDataview.Filter.Add.Response](#anytype.Rpc.BlockDataview.Filter.Add.Response) | | -| BlockDataviewFilterRemove | [Rpc.BlockDataview.Filter.Remove.Request](#anytype.Rpc.BlockDataview.Filter.Remove.Request) | [Rpc.BlockDataview.Filter.Remove.Response](#anytype.Rpc.BlockDataview.Filter.Remove.Response) | | -| BlockDataviewFilterReplace | [Rpc.BlockDataview.Filter.Replace.Request](#anytype.Rpc.BlockDataview.Filter.Replace.Request) | [Rpc.BlockDataview.Filter.Replace.Response](#anytype.Rpc.BlockDataview.Filter.Replace.Response) | | -| BlockDataviewFilterSort | [Rpc.BlockDataview.Filter.Sort.Request](#anytype.Rpc.BlockDataview.Filter.Sort.Request) | [Rpc.BlockDataview.Filter.Sort.Response](#anytype.Rpc.BlockDataview.Filter.Sort.Response) | | -| BlockDataviewSortAdd | [Rpc.BlockDataview.Sort.Add.Request](#anytype.Rpc.BlockDataview.Sort.Add.Request) | [Rpc.BlockDataview.Sort.Add.Response](#anytype.Rpc.BlockDataview.Sort.Add.Response) | | -| BlockDataviewSortRemove | [Rpc.BlockDataview.Sort.Remove.Request](#anytype.Rpc.BlockDataview.Sort.Remove.Request) | [Rpc.BlockDataview.Sort.Remove.Response](#anytype.Rpc.BlockDataview.Sort.Remove.Response) | | -| BlockDataviewSortReplace | [Rpc.BlockDataview.Sort.Replace.Request](#anytype.Rpc.BlockDataview.Sort.Replace.Request) | [Rpc.BlockDataview.Sort.Replace.Response](#anytype.Rpc.BlockDataview.Sort.Replace.Response) | | -| BlockDataviewSortSort | [Rpc.BlockDataview.Sort.Sort.Request](#anytype.Rpc.BlockDataview.Sort.Sort.Request) | [Rpc.BlockDataview.Sort.Sort.Response](#anytype.Rpc.BlockDataview.Sort.Sort.Response) | | -| BlockDataviewViewRelationAdd | [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype.Rpc.BlockDataview.ViewRelation.Add.Request) | [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response) | | -| BlockDataviewViewRelationRemove | [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Request) | [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response) | | -| BlockDataviewViewRelationReplace | [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Request) | [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response) | | -| BlockDataviewViewRelationSort | [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Request) | [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response) | | -| BlockTableCreate | [Rpc.BlockTable.Create.Request](#anytype.Rpc.BlockTable.Create.Request) | [Rpc.BlockTable.Create.Response](#anytype.Rpc.BlockTable.Create.Response) | Simple table block commands *** | -| BlockTableExpand | [Rpc.BlockTable.Expand.Request](#anytype.Rpc.BlockTable.Expand.Request) | [Rpc.BlockTable.Expand.Response](#anytype.Rpc.BlockTable.Expand.Response) | | -| BlockTableRowCreate | [Rpc.BlockTable.RowCreate.Request](#anytype.Rpc.BlockTable.RowCreate.Request) | [Rpc.BlockTable.RowCreate.Response](#anytype.Rpc.BlockTable.RowCreate.Response) | | -| BlockTableRowDelete | [Rpc.BlockTable.RowDelete.Request](#anytype.Rpc.BlockTable.RowDelete.Request) | [Rpc.BlockTable.RowDelete.Response](#anytype.Rpc.BlockTable.RowDelete.Response) | | -| BlockTableRowDuplicate | [Rpc.BlockTable.RowDuplicate.Request](#anytype.Rpc.BlockTable.RowDuplicate.Request) | [Rpc.BlockTable.RowDuplicate.Response](#anytype.Rpc.BlockTable.RowDuplicate.Response) | | -| BlockTableRowSetHeader | [Rpc.BlockTable.RowSetHeader.Request](#anytype.Rpc.BlockTable.RowSetHeader.Request) | [Rpc.BlockTable.RowSetHeader.Response](#anytype.Rpc.BlockTable.RowSetHeader.Response) | | -| BlockTableColumnCreate | [Rpc.BlockTable.ColumnCreate.Request](#anytype.Rpc.BlockTable.ColumnCreate.Request) | [Rpc.BlockTable.ColumnCreate.Response](#anytype.Rpc.BlockTable.ColumnCreate.Response) | | -| BlockTableColumnMove | [Rpc.BlockTable.ColumnMove.Request](#anytype.Rpc.BlockTable.ColumnMove.Request) | [Rpc.BlockTable.ColumnMove.Response](#anytype.Rpc.BlockTable.ColumnMove.Response) | | -| BlockTableColumnDelete | [Rpc.BlockTable.ColumnDelete.Request](#anytype.Rpc.BlockTable.ColumnDelete.Request) | [Rpc.BlockTable.ColumnDelete.Response](#anytype.Rpc.BlockTable.ColumnDelete.Response) | | -| BlockTableColumnDuplicate | [Rpc.BlockTable.ColumnDuplicate.Request](#anytype.Rpc.BlockTable.ColumnDuplicate.Request) | [Rpc.BlockTable.ColumnDuplicate.Response](#anytype.Rpc.BlockTable.ColumnDuplicate.Response) | | -| BlockTableRowListFill | [Rpc.BlockTable.RowListFill.Request](#anytype.Rpc.BlockTable.RowListFill.Request) | [Rpc.BlockTable.RowListFill.Response](#anytype.Rpc.BlockTable.RowListFill.Response) | | -| BlockTableRowListClean | [Rpc.BlockTable.RowListClean.Request](#anytype.Rpc.BlockTable.RowListClean.Request) | [Rpc.BlockTable.RowListClean.Response](#anytype.Rpc.BlockTable.RowListClean.Response) | | -| BlockTableColumnListFill | [Rpc.BlockTable.ColumnListFill.Request](#anytype.Rpc.BlockTable.ColumnListFill.Request) | [Rpc.BlockTable.ColumnListFill.Response](#anytype.Rpc.BlockTable.ColumnListFill.Response) | | -| BlockTableSort | [Rpc.BlockTable.Sort.Request](#anytype.Rpc.BlockTable.Sort.Request) | [Rpc.BlockTable.Sort.Response](#anytype.Rpc.BlockTable.Sort.Response) | | -| BlockCreateWidget | [Rpc.Block.CreateWidget.Request](#anytype.Rpc.Block.CreateWidget.Request) | [Rpc.Block.CreateWidget.Response](#anytype.Rpc.Block.CreateWidget.Response) | Widget commands *** | -| BlockWidgetSetTargetId | [Rpc.BlockWidget.SetTargetId.Request](#anytype.Rpc.BlockWidget.SetTargetId.Request) | [Rpc.BlockWidget.SetTargetId.Response](#anytype.Rpc.BlockWidget.SetTargetId.Response) | | -| BlockWidgetSetLayout | [Rpc.BlockWidget.SetLayout.Request](#anytype.Rpc.BlockWidget.SetLayout.Request) | [Rpc.BlockWidget.SetLayout.Response](#anytype.Rpc.BlockWidget.SetLayout.Response) | | -| BlockWidgetSetLimit | [Rpc.BlockWidget.SetLimit.Request](#anytype.Rpc.BlockWidget.SetLimit.Request) | [Rpc.BlockWidget.SetLimit.Response](#anytype.Rpc.BlockWidget.SetLimit.Response) | | -| BlockWidgetSetViewId | [Rpc.BlockWidget.SetViewId.Request](#anytype.Rpc.BlockWidget.SetViewId.Request) | [Rpc.BlockWidget.SetViewId.Response](#anytype.Rpc.BlockWidget.SetViewId.Response) | | -| BlockLinkCreateWithObject | [Rpc.BlockLink.CreateWithObject.Request](#anytype.Rpc.BlockLink.CreateWithObject.Request) | [Rpc.BlockLink.CreateWithObject.Response](#anytype.Rpc.BlockLink.CreateWithObject.Response) | Other specific block commands *** | -| BlockLinkListSetAppearance | [Rpc.BlockLink.ListSetAppearance.Request](#anytype.Rpc.BlockLink.ListSetAppearance.Request) | [Rpc.BlockLink.ListSetAppearance.Response](#anytype.Rpc.BlockLink.ListSetAppearance.Response) | | -| BlockBookmarkFetch | [Rpc.BlockBookmark.Fetch.Request](#anytype.Rpc.BlockBookmark.Fetch.Request) | [Rpc.BlockBookmark.Fetch.Response](#anytype.Rpc.BlockBookmark.Fetch.Response) | | -| BlockBookmarkCreateAndFetch | [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype.Rpc.BlockBookmark.CreateAndFetch.Request) | [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response) | | -| BlockRelationSetKey | [Rpc.BlockRelation.SetKey.Request](#anytype.Rpc.BlockRelation.SetKey.Request) | [Rpc.BlockRelation.SetKey.Response](#anytype.Rpc.BlockRelation.SetKey.Response) | | -| BlockRelationAdd | [Rpc.BlockRelation.Add.Request](#anytype.Rpc.BlockRelation.Add.Request) | [Rpc.BlockRelation.Add.Response](#anytype.Rpc.BlockRelation.Add.Response) | | -| BlockDivListSetStyle | [Rpc.BlockDiv.ListSetStyle.Request](#anytype.Rpc.BlockDiv.ListSetStyle.Request) | [Rpc.BlockDiv.ListSetStyle.Response](#anytype.Rpc.BlockDiv.ListSetStyle.Response) | | -| BlockLatexSetText | [Rpc.BlockLatex.SetText.Request](#anytype.Rpc.BlockLatex.SetText.Request) | [Rpc.BlockLatex.SetText.Response](#anytype.Rpc.BlockLatex.SetText.Response) | | -| ProcessCancel | [Rpc.Process.Cancel.Request](#anytype.Rpc.Process.Cancel.Request) | [Rpc.Process.Cancel.Response](#anytype.Rpc.Process.Cancel.Response) | | -| LogSend | [Rpc.Log.Send.Request](#anytype.Rpc.Log.Send.Request) | [Rpc.Log.Send.Response](#anytype.Rpc.Log.Send.Response) | | -| DebugTree | [Rpc.Debug.Tree.Request](#anytype.Rpc.Debug.Tree.Request) | [Rpc.Debug.Tree.Response](#anytype.Rpc.Debug.Tree.Response) | | -| DebugTreeHeads | [Rpc.Debug.TreeHeads.Request](#anytype.Rpc.Debug.TreeHeads.Request) | [Rpc.Debug.TreeHeads.Response](#anytype.Rpc.Debug.TreeHeads.Response) | | -| DebugSpaceSummary | [Rpc.Debug.SpaceSummary.Request](#anytype.Rpc.Debug.SpaceSummary.Request) | [Rpc.Debug.SpaceSummary.Response](#anytype.Rpc.Debug.SpaceSummary.Response) | | -| DebugExportLocalstore | [Rpc.Debug.ExportLocalstore.Request](#anytype.Rpc.Debug.ExportLocalstore.Request) | [Rpc.Debug.ExportLocalstore.Response](#anytype.Rpc.Debug.ExportLocalstore.Response) | | -| DebugPing | [Rpc.Debug.Ping.Request](#anytype.Rpc.Debug.Ping.Request) | [Rpc.Debug.Ping.Response](#anytype.Rpc.Debug.Ping.Response) | | -| MetricsSetParameters | [Rpc.Metrics.SetParameters.Request](#anytype.Rpc.Metrics.SetParameters.Request) | [Rpc.Metrics.SetParameters.Response](#anytype.Rpc.Metrics.SetParameters.Response) | | -| ListenSessionEvents | [StreamRequest](#anytype.StreamRequest) | [Event](#anytype.Event) stream | used only for lib-server via grpc | +| AppGetVersion | [Rpc.App.GetVersion.Request](#anytype-Rpc-App-GetVersion-Request) | [Rpc.App.GetVersion.Response](#anytype-Rpc-App-GetVersion-Response) | | +| AppSetDeviceState | [Rpc.App.SetDeviceState.Request](#anytype-Rpc-App-SetDeviceState-Request) | [Rpc.App.SetDeviceState.Response](#anytype-Rpc-App-SetDeviceState-Response) | | +| AppShutdown | [Rpc.App.Shutdown.Request](#anytype-Rpc-App-Shutdown-Request) | [Rpc.App.Shutdown.Response](#anytype-Rpc-App-Shutdown-Response) | | +| WalletCreate | [Rpc.Wallet.Create.Request](#anytype-Rpc-Wallet-Create-Request) | [Rpc.Wallet.Create.Response](#anytype-Rpc-Wallet-Create-Response) | Wallet *** | +| WalletRecover | [Rpc.Wallet.Recover.Request](#anytype-Rpc-Wallet-Recover-Request) | [Rpc.Wallet.Recover.Response](#anytype-Rpc-Wallet-Recover-Response) | | +| WalletConvert | [Rpc.Wallet.Convert.Request](#anytype-Rpc-Wallet-Convert-Request) | [Rpc.Wallet.Convert.Response](#anytype-Rpc-Wallet-Convert-Response) | | +| WalletCreateSession | [Rpc.Wallet.CreateSession.Request](#anytype-Rpc-Wallet-CreateSession-Request) | [Rpc.Wallet.CreateSession.Response](#anytype-Rpc-Wallet-CreateSession-Response) | | +| WalletCloseSession | [Rpc.Wallet.CloseSession.Request](#anytype-Rpc-Wallet-CloseSession-Request) | [Rpc.Wallet.CloseSession.Response](#anytype-Rpc-Wallet-CloseSession-Response) | | +| WorkspaceCreate | [Rpc.Workspace.Create.Request](#anytype-Rpc-Workspace-Create-Request) | [Rpc.Workspace.Create.Response](#anytype-Rpc-Workspace-Create-Response) | Workspace *** | +| WorkspaceObjectAdd | [Rpc.Workspace.Object.Add.Request](#anytype-Rpc-Workspace-Object-Add-Request) | [Rpc.Workspace.Object.Add.Response](#anytype-Rpc-Workspace-Object-Add-Response) | | +| WorkspaceObjectListAdd | [Rpc.Workspace.Object.ListAdd.Request](#anytype-Rpc-Workspace-Object-ListAdd-Request) | [Rpc.Workspace.Object.ListAdd.Response](#anytype-Rpc-Workspace-Object-ListAdd-Response) | | +| WorkspaceObjectListRemove | [Rpc.Workspace.Object.ListRemove.Request](#anytype-Rpc-Workspace-Object-ListRemove-Request) | [Rpc.Workspace.Object.ListRemove.Response](#anytype-Rpc-Workspace-Object-ListRemove-Response) | | +| WorkspaceSelect | [Rpc.Workspace.Select.Request](#anytype-Rpc-Workspace-Select-Request) | [Rpc.Workspace.Select.Response](#anytype-Rpc-Workspace-Select-Response) | | +| WorkspaceGetCurrent | [Rpc.Workspace.GetCurrent.Request](#anytype-Rpc-Workspace-GetCurrent-Request) | [Rpc.Workspace.GetCurrent.Response](#anytype-Rpc-Workspace-GetCurrent-Response) | | +| WorkspaceGetAll | [Rpc.Workspace.GetAll.Request](#anytype-Rpc-Workspace-GetAll-Request) | [Rpc.Workspace.GetAll.Response](#anytype-Rpc-Workspace-GetAll-Response) | | +| WorkspaceSetIsHighlighted | [Rpc.Workspace.SetIsHighlighted.Request](#anytype-Rpc-Workspace-SetIsHighlighted-Request) | [Rpc.Workspace.SetIsHighlighted.Response](#anytype-Rpc-Workspace-SetIsHighlighted-Response) | | +| WorkspaceExport | [Rpc.Workspace.Export.Request](#anytype-Rpc-Workspace-Export-Request) | [Rpc.Workspace.Export.Response](#anytype-Rpc-Workspace-Export-Response) | | +| AccountRecover | [Rpc.Account.Recover.Request](#anytype-Rpc-Account-Recover-Request) | [Rpc.Account.Recover.Response](#anytype-Rpc-Account-Recover-Response) | Account *** | +| AccountCreate | [Rpc.Account.Create.Request](#anytype-Rpc-Account-Create-Request) | [Rpc.Account.Create.Response](#anytype-Rpc-Account-Create-Response) | | +| AccountDelete | [Rpc.Account.Delete.Request](#anytype-Rpc-Account-Delete-Request) | [Rpc.Account.Delete.Response](#anytype-Rpc-Account-Delete-Response) | | +| AccountSelect | [Rpc.Account.Select.Request](#anytype-Rpc-Account-Select-Request) | [Rpc.Account.Select.Response](#anytype-Rpc-Account-Select-Response) | | +| AccountStop | [Rpc.Account.Stop.Request](#anytype-Rpc-Account-Stop-Request) | [Rpc.Account.Stop.Response](#anytype-Rpc-Account-Stop-Response) | | +| AccountMove | [Rpc.Account.Move.Request](#anytype-Rpc-Account-Move-Request) | [Rpc.Account.Move.Response](#anytype-Rpc-Account-Move-Response) | | +| AccountConfigUpdate | [Rpc.Account.ConfigUpdate.Request](#anytype-Rpc-Account-ConfigUpdate-Request) | [Rpc.Account.ConfigUpdate.Response](#anytype-Rpc-Account-ConfigUpdate-Response) | | +| AccountRecoverFromLegacyExport | [Rpc.Account.RecoverFromLegacyExport.Request](#anytype-Rpc-Account-RecoverFromLegacyExport-Request) | [Rpc.Account.RecoverFromLegacyExport.Response](#anytype-Rpc-Account-RecoverFromLegacyExport-Response) | | +| ObjectOpen | [Rpc.Object.Open.Request](#anytype-Rpc-Object-Open-Request) | [Rpc.Object.Open.Response](#anytype-Rpc-Object-Open-Response) | Object *** | +| ObjectClose | [Rpc.Object.Close.Request](#anytype-Rpc-Object-Close-Request) | [Rpc.Object.Close.Response](#anytype-Rpc-Object-Close-Response) | | +| ObjectShow | [Rpc.Object.Show.Request](#anytype-Rpc-Object-Show-Request) | [Rpc.Object.Show.Response](#anytype-Rpc-Object-Show-Response) | | +| ObjectCreate | [Rpc.Object.Create.Request](#anytype-Rpc-Object-Create-Request) | [Rpc.Object.Create.Response](#anytype-Rpc-Object-Create-Response) | ObjectCreate just creates the new page, without adding the link to it from some other page | +| ObjectCreateBookmark | [Rpc.Object.CreateBookmark.Request](#anytype-Rpc-Object-CreateBookmark-Request) | [Rpc.Object.CreateBookmark.Response](#anytype-Rpc-Object-CreateBookmark-Response) | | +| ObjectCreateSet | [Rpc.Object.CreateSet.Request](#anytype-Rpc-Object-CreateSet-Request) | [Rpc.Object.CreateSet.Response](#anytype-Rpc-Object-CreateSet-Response) | ObjectCreateSet just creates the new set, without adding the link to it from some other page | +| ObjectGraph | [Rpc.Object.Graph.Request](#anytype-Rpc-Object-Graph-Request) | [Rpc.Object.Graph.Response](#anytype-Rpc-Object-Graph-Response) | | +| ObjectSearch | [Rpc.Object.Search.Request](#anytype-Rpc-Object-Search-Request) | [Rpc.Object.Search.Response](#anytype-Rpc-Object-Search-Response) | | +| ObjectSearchSubscribe | [Rpc.Object.SearchSubscribe.Request](#anytype-Rpc-Object-SearchSubscribe-Request) | [Rpc.Object.SearchSubscribe.Response](#anytype-Rpc-Object-SearchSubscribe-Response) | | +| ObjectSubscribeIds | [Rpc.Object.SubscribeIds.Request](#anytype-Rpc-Object-SubscribeIds-Request) | [Rpc.Object.SubscribeIds.Response](#anytype-Rpc-Object-SubscribeIds-Response) | | +| ObjectGroupsSubscribe | [Rpc.Object.GroupsSubscribe.Request](#anytype-Rpc-Object-GroupsSubscribe-Request) | [Rpc.Object.GroupsSubscribe.Response](#anytype-Rpc-Object-GroupsSubscribe-Response) | | +| ObjectSearchUnsubscribe | [Rpc.Object.SearchUnsubscribe.Request](#anytype-Rpc-Object-SearchUnsubscribe-Request) | [Rpc.Object.SearchUnsubscribe.Response](#anytype-Rpc-Object-SearchUnsubscribe-Response) | | +| ObjectSetDetails | [Rpc.Object.SetDetails.Request](#anytype-Rpc-Object-SetDetails-Request) | [Rpc.Object.SetDetails.Response](#anytype-Rpc-Object-SetDetails-Response) | | +| ObjectDuplicate | [Rpc.Object.Duplicate.Request](#anytype-Rpc-Object-Duplicate-Request) | [Rpc.Object.Duplicate.Response](#anytype-Rpc-Object-Duplicate-Response) | | +| ObjectSetObjectType | [Rpc.Object.SetObjectType.Request](#anytype-Rpc-Object-SetObjectType-Request) | [Rpc.Object.SetObjectType.Response](#anytype-Rpc-Object-SetObjectType-Response) | ObjectSetObjectType sets an existing object type to the object so it will appear in sets and suggests relations from this type | +| ObjectSetLayout | [Rpc.Object.SetLayout.Request](#anytype-Rpc-Object-SetLayout-Request) | [Rpc.Object.SetLayout.Response](#anytype-Rpc-Object-SetLayout-Response) | | +| ObjectSetInternalFlags | [Rpc.Object.SetInternalFlags.Request](#anytype-Rpc-Object-SetInternalFlags-Request) | [Rpc.Object.SetInternalFlags.Response](#anytype-Rpc-Object-SetInternalFlags-Response) | | +| ObjectSetIsFavorite | [Rpc.Object.SetIsFavorite.Request](#anytype-Rpc-Object-SetIsFavorite-Request) | [Rpc.Object.SetIsFavorite.Response](#anytype-Rpc-Object-SetIsFavorite-Response) | | +| ObjectSetIsArchived | [Rpc.Object.SetIsArchived.Request](#anytype-Rpc-Object-SetIsArchived-Request) | [Rpc.Object.SetIsArchived.Response](#anytype-Rpc-Object-SetIsArchived-Response) | | +| ObjectSetSource | [Rpc.Object.SetSource.Request](#anytype-Rpc-Object-SetSource-Request) | [Rpc.Object.SetSource.Response](#anytype-Rpc-Object-SetSource-Response) | | +| ObjectWorkspaceSetDashboard | [Rpc.Object.WorkspaceSetDashboard.Request](#anytype-Rpc-Object-WorkspaceSetDashboard-Request) | [Rpc.Object.WorkspaceSetDashboard.Response](#anytype-Rpc-Object-WorkspaceSetDashboard-Response) | | +| ObjectListDuplicate | [Rpc.Object.ListDuplicate.Request](#anytype-Rpc-Object-ListDuplicate-Request) | [Rpc.Object.ListDuplicate.Response](#anytype-Rpc-Object-ListDuplicate-Response) | | +| ObjectListDelete | [Rpc.Object.ListDelete.Request](#anytype-Rpc-Object-ListDelete-Request) | [Rpc.Object.ListDelete.Response](#anytype-Rpc-Object-ListDelete-Response) | | +| ObjectListSetIsArchived | [Rpc.Object.ListSetIsArchived.Request](#anytype-Rpc-Object-ListSetIsArchived-Request) | [Rpc.Object.ListSetIsArchived.Response](#anytype-Rpc-Object-ListSetIsArchived-Response) | | +| ObjectListSetIsFavorite | [Rpc.Object.ListSetIsFavorite.Request](#anytype-Rpc-Object-ListSetIsFavorite-Request) | [Rpc.Object.ListSetIsFavorite.Response](#anytype-Rpc-Object-ListSetIsFavorite-Response) | | +| ObjectApplyTemplate | [Rpc.Object.ApplyTemplate.Request](#anytype-Rpc-Object-ApplyTemplate-Request) | [Rpc.Object.ApplyTemplate.Response](#anytype-Rpc-Object-ApplyTemplate-Response) | | +| ObjectToSet | [Rpc.Object.ToSet.Request](#anytype-Rpc-Object-ToSet-Request) | [Rpc.Object.ToSet.Response](#anytype-Rpc-Object-ToSet-Response) | ObjectToSet creates new set from given object and removes object | +| ObjectToCollection | [Rpc.Object.ToCollection.Request](#anytype-Rpc-Object-ToCollection-Request) | [Rpc.Object.ToCollection.Response](#anytype-Rpc-Object-ToCollection-Response) | | +| ObjectShareByLink | [Rpc.Object.ShareByLink.Request](#anytype-Rpc-Object-ShareByLink-Request) | [Rpc.Object.ShareByLink.Response](#anytype-Rpc-Object-ShareByLink-Response) | | +| ObjectUndo | [Rpc.Object.Undo.Request](#anytype-Rpc-Object-Undo-Request) | [Rpc.Object.Undo.Response](#anytype-Rpc-Object-Undo-Response) | | +| ObjectRedo | [Rpc.Object.Redo.Request](#anytype-Rpc-Object-Redo-Request) | [Rpc.Object.Redo.Response](#anytype-Rpc-Object-Redo-Response) | | +| ObjectListExport | [Rpc.Object.ListExport.Request](#anytype-Rpc-Object-ListExport-Request) | [Rpc.Object.ListExport.Response](#anytype-Rpc-Object-ListExport-Response) | | +| ObjectBookmarkFetch | [Rpc.Object.BookmarkFetch.Request](#anytype-Rpc-Object-BookmarkFetch-Request) | [Rpc.Object.BookmarkFetch.Response](#anytype-Rpc-Object-BookmarkFetch-Response) | | +| ObjectToBookmark | [Rpc.Object.ToBookmark.Request](#anytype-Rpc-Object-ToBookmark-Request) | [Rpc.Object.ToBookmark.Response](#anytype-Rpc-Object-ToBookmark-Response) | | +| ObjectImport | [Rpc.Object.Import.Request](#anytype-Rpc-Object-Import-Request) | [Rpc.Object.Import.Response](#anytype-Rpc-Object-Import-Response) | | +| ObjectImportList | [Rpc.Object.ImportList.Request](#anytype-Rpc-Object-ImportList-Request) | [Rpc.Object.ImportList.Response](#anytype-Rpc-Object-ImportList-Response) | | +| ObjectImportNotionValidateToken | [Rpc.Object.Import.Notion.ValidateToken.Request](#anytype-Rpc-Object-Import-Notion-ValidateToken-Request) | [Rpc.Object.Import.Notion.ValidateToken.Response](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response) | | +| ObjectImportUseCase | [Rpc.Object.ImportUseCase.Request](#anytype-Rpc-Object-ImportUseCase-Request) | [Rpc.Object.ImportUseCase.Response](#anytype-Rpc-Object-ImportUseCase-Response) | | +| ObjectCollectionAdd | [Rpc.ObjectCollection.Add.Request](#anytype-Rpc-ObjectCollection-Add-Request) | [Rpc.ObjectCollection.Add.Response](#anytype-Rpc-ObjectCollection-Add-Response) | Collections *** | +| ObjectCollectionRemove | [Rpc.ObjectCollection.Remove.Request](#anytype-Rpc-ObjectCollection-Remove-Request) | [Rpc.ObjectCollection.Remove.Response](#anytype-Rpc-ObjectCollection-Remove-Response) | | +| ObjectCollectionSort | [Rpc.ObjectCollection.Sort.Request](#anytype-Rpc-ObjectCollection-Sort-Request) | [Rpc.ObjectCollection.Sort.Response](#anytype-Rpc-ObjectCollection-Sort-Response) | | +| ObjectCreateRelation | [Rpc.Object.CreateRelation.Request](#anytype-Rpc-Object-CreateRelation-Request) | [Rpc.Object.CreateRelation.Response](#anytype-Rpc-Object-CreateRelation-Response) | Relations *** | +| ObjectCreateRelationOption | [Rpc.Object.CreateRelationOption.Request](#anytype-Rpc-Object-CreateRelationOption-Request) | [Rpc.Object.CreateRelationOption.Response](#anytype-Rpc-Object-CreateRelationOption-Response) | | +| RelationListRemoveOption | [Rpc.Relation.ListRemoveOption.Request](#anytype-Rpc-Relation-ListRemoveOption-Request) | [Rpc.Relation.ListRemoveOption.Response](#anytype-Rpc-Relation-ListRemoveOption-Response) | | +| RelationOptions | [Rpc.Relation.Options.Request](#anytype-Rpc-Relation-Options-Request) | [Rpc.Relation.Options.Response](#anytype-Rpc-Relation-Options-Response) | | +| ObjectRelationAdd | [Rpc.ObjectRelation.Add.Request](#anytype-Rpc-ObjectRelation-Add-Request) | [Rpc.ObjectRelation.Add.Response](#anytype-Rpc-ObjectRelation-Add-Response) | Object Relations *** | +| ObjectRelationDelete | [Rpc.ObjectRelation.Delete.Request](#anytype-Rpc-ObjectRelation-Delete-Request) | [Rpc.ObjectRelation.Delete.Response](#anytype-Rpc-ObjectRelation-Delete-Response) | | +| ObjectRelationAddFeatured | [Rpc.ObjectRelation.AddFeatured.Request](#anytype-Rpc-ObjectRelation-AddFeatured-Request) | [Rpc.ObjectRelation.AddFeatured.Response](#anytype-Rpc-ObjectRelation-AddFeatured-Response) | | +| ObjectRelationRemoveFeatured | [Rpc.ObjectRelation.RemoveFeatured.Request](#anytype-Rpc-ObjectRelation-RemoveFeatured-Request) | [Rpc.ObjectRelation.RemoveFeatured.Response](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response) | | +| ObjectRelationListAvailable | [Rpc.ObjectRelation.ListAvailable.Request](#anytype-Rpc-ObjectRelation-ListAvailable-Request) | [Rpc.ObjectRelation.ListAvailable.Response](#anytype-Rpc-ObjectRelation-ListAvailable-Response) | | +| ObjectCreateObjectType | [Rpc.Object.CreateObjectType.Request](#anytype-Rpc-Object-CreateObjectType-Request) | [Rpc.Object.CreateObjectType.Response](#anytype-Rpc-Object-CreateObjectType-Response) | ObjectType commands *** | +| ObjectTypeRelationList | [Rpc.ObjectType.Relation.List.Request](#anytype-Rpc-ObjectType-Relation-List-Request) | [Rpc.ObjectType.Relation.List.Response](#anytype-Rpc-ObjectType-Relation-List-Response) | | +| ObjectTypeRelationAdd | [Rpc.ObjectType.Relation.Add.Request](#anytype-Rpc-ObjectType-Relation-Add-Request) | [Rpc.ObjectType.Relation.Add.Response](#anytype-Rpc-ObjectType-Relation-Add-Response) | | +| ObjectTypeRelationRemove | [Rpc.ObjectType.Relation.Remove.Request](#anytype-Rpc-ObjectType-Relation-Remove-Request) | [Rpc.ObjectType.Relation.Remove.Response](#anytype-Rpc-ObjectType-Relation-Remove-Response) | | +| HistoryShowVersion | [Rpc.History.ShowVersion.Request](#anytype-Rpc-History-ShowVersion-Request) | [Rpc.History.ShowVersion.Response](#anytype-Rpc-History-ShowVersion-Response) | | +| HistoryGetVersions | [Rpc.History.GetVersions.Request](#anytype-Rpc-History-GetVersions-Request) | [Rpc.History.GetVersions.Response](#anytype-Rpc-History-GetVersions-Response) | | +| HistorySetVersion | [Rpc.History.SetVersion.Request](#anytype-Rpc-History-SetVersion-Request) | [Rpc.History.SetVersion.Response](#anytype-Rpc-History-SetVersion-Response) | | +| FileOffload | [Rpc.File.Offload.Request](#anytype-Rpc-File-Offload-Request) | [Rpc.File.Offload.Response](#anytype-Rpc-File-Offload-Response) | Files *** | +| FileListOffload | [Rpc.File.ListOffload.Request](#anytype-Rpc-File-ListOffload-Request) | [Rpc.File.ListOffload.Response](#anytype-Rpc-File-ListOffload-Response) | | +| FileUpload | [Rpc.File.Upload.Request](#anytype-Rpc-File-Upload-Request) | [Rpc.File.Upload.Response](#anytype-Rpc-File-Upload-Response) | | +| FileDownload | [Rpc.File.Download.Request](#anytype-Rpc-File-Download-Request) | [Rpc.File.Download.Response](#anytype-Rpc-File-Download-Response) | | +| FileDrop | [Rpc.File.Drop.Request](#anytype-Rpc-File-Drop-Request) | [Rpc.File.Drop.Response](#anytype-Rpc-File-Drop-Response) | | +| FileSpaceUsage | [Rpc.File.SpaceUsage.Request](#anytype-Rpc-File-SpaceUsage-Request) | [Rpc.File.SpaceUsage.Response](#anytype-Rpc-File-SpaceUsage-Response) | | +| NavigationListObjects | [Rpc.Navigation.ListObjects.Request](#anytype-Rpc-Navigation-ListObjects-Request) | [Rpc.Navigation.ListObjects.Response](#anytype-Rpc-Navigation-ListObjects-Response) | | +| NavigationGetObjectInfoWithLinks | [Rpc.Navigation.GetObjectInfoWithLinks.Request](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Request) | [Rpc.Navigation.GetObjectInfoWithLinks.Response](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response) | | +| TemplateCreateFromObject | [Rpc.Template.CreateFromObject.Request](#anytype-Rpc-Template-CreateFromObject-Request) | [Rpc.Template.CreateFromObject.Response](#anytype-Rpc-Template-CreateFromObject-Response) | | +| TemplateCreateFromObjectType | [Rpc.Template.CreateFromObjectType.Request](#anytype-Rpc-Template-CreateFromObjectType-Request) | [Rpc.Template.CreateFromObjectType.Response](#anytype-Rpc-Template-CreateFromObjectType-Response) | to be renamed to ObjectCreateTemplate | +| TemplateClone | [Rpc.Template.Clone.Request](#anytype-Rpc-Template-Clone-Request) | [Rpc.Template.Clone.Response](#anytype-Rpc-Template-Clone-Response) | | +| TemplateExportAll | [Rpc.Template.ExportAll.Request](#anytype-Rpc-Template-ExportAll-Request) | [Rpc.Template.ExportAll.Response](#anytype-Rpc-Template-ExportAll-Response) | | +| LinkPreview | [Rpc.LinkPreview.Request](#anytype-Rpc-LinkPreview-Request) | [Rpc.LinkPreview.Response](#anytype-Rpc-LinkPreview-Response) | | +| UnsplashSearch | [Rpc.Unsplash.Search.Request](#anytype-Rpc-Unsplash-Search-Request) | [Rpc.Unsplash.Search.Response](#anytype-Rpc-Unsplash-Search-Response) | | +| UnsplashDownload | [Rpc.Unsplash.Download.Request](#anytype-Rpc-Unsplash-Download-Request) | [Rpc.Unsplash.Download.Response](#anytype-Rpc-Unsplash-Download-Response) | UnsplashDownload downloads picture from unsplash by ID, put it to the IPFS and returns the hash. The artist info is available in the object details | +| BlockUpload | [Rpc.Block.Upload.Request](#anytype-Rpc-Block-Upload-Request) | [Rpc.Block.Upload.Response](#anytype-Rpc-Block-Upload-Response) | General Block commands *** | +| BlockReplace | [Rpc.Block.Replace.Request](#anytype-Rpc-Block-Replace-Request) | [Rpc.Block.Replace.Response](#anytype-Rpc-Block-Replace-Response) | | +| BlockCreate | [Rpc.Block.Create.Request](#anytype-Rpc-Block-Create-Request) | [Rpc.Block.Create.Response](#anytype-Rpc-Block-Create-Response) | | +| BlockSplit | [Rpc.Block.Split.Request](#anytype-Rpc-Block-Split-Request) | [Rpc.Block.Split.Response](#anytype-Rpc-Block-Split-Response) | | +| BlockMerge | [Rpc.Block.Merge.Request](#anytype-Rpc-Block-Merge-Request) | [Rpc.Block.Merge.Response](#anytype-Rpc-Block-Merge-Response) | | +| BlockCopy | [Rpc.Block.Copy.Request](#anytype-Rpc-Block-Copy-Request) | [Rpc.Block.Copy.Response](#anytype-Rpc-Block-Copy-Response) | | +| BlockPaste | [Rpc.Block.Paste.Request](#anytype-Rpc-Block-Paste-Request) | [Rpc.Block.Paste.Response](#anytype-Rpc-Block-Paste-Response) | | +| BlockCut | [Rpc.Block.Cut.Request](#anytype-Rpc-Block-Cut-Request) | [Rpc.Block.Cut.Response](#anytype-Rpc-Block-Cut-Response) | | +| BlockSetFields | [Rpc.Block.SetFields.Request](#anytype-Rpc-Block-SetFields-Request) | [Rpc.Block.SetFields.Response](#anytype-Rpc-Block-SetFields-Response) | | +| BlockExport | [Rpc.Block.Export.Request](#anytype-Rpc-Block-Export-Request) | [Rpc.Block.Export.Response](#anytype-Rpc-Block-Export-Response) | | +| BlockListDelete | [Rpc.Block.ListDelete.Request](#anytype-Rpc-Block-ListDelete-Request) | [Rpc.Block.ListDelete.Response](#anytype-Rpc-Block-ListDelete-Response) | | +| BlockListMoveToExistingObject | [Rpc.Block.ListMoveToExistingObject.Request](#anytype-Rpc-Block-ListMoveToExistingObject-Request) | [Rpc.Block.ListMoveToExistingObject.Response](#anytype-Rpc-Block-ListMoveToExistingObject-Response) | | +| BlockListMoveToNewObject | [Rpc.Block.ListMoveToNewObject.Request](#anytype-Rpc-Block-ListMoveToNewObject-Request) | [Rpc.Block.ListMoveToNewObject.Response](#anytype-Rpc-Block-ListMoveToNewObject-Response) | | +| BlockListConvertToObjects | [Rpc.Block.ListConvertToObjects.Request](#anytype-Rpc-Block-ListConvertToObjects-Request) | [Rpc.Block.ListConvertToObjects.Response](#anytype-Rpc-Block-ListConvertToObjects-Response) | | +| BlockListSetFields | [Rpc.Block.ListSetFields.Request](#anytype-Rpc-Block-ListSetFields-Request) | [Rpc.Block.ListSetFields.Response](#anytype-Rpc-Block-ListSetFields-Response) | | +| BlockListDuplicate | [Rpc.Block.ListDuplicate.Request](#anytype-Rpc-Block-ListDuplicate-Request) | [Rpc.Block.ListDuplicate.Response](#anytype-Rpc-Block-ListDuplicate-Response) | | +| BlockListSetBackgroundColor | [Rpc.Block.ListSetBackgroundColor.Request](#anytype-Rpc-Block-ListSetBackgroundColor-Request) | [Rpc.Block.ListSetBackgroundColor.Response](#anytype-Rpc-Block-ListSetBackgroundColor-Response) | | +| BlockListSetAlign | [Rpc.Block.ListSetAlign.Request](#anytype-Rpc-Block-ListSetAlign-Request) | [Rpc.Block.ListSetAlign.Response](#anytype-Rpc-Block-ListSetAlign-Response) | | +| BlockListSetVerticalAlign | [Rpc.Block.ListSetVerticalAlign.Request](#anytype-Rpc-Block-ListSetVerticalAlign-Request) | [Rpc.Block.ListSetVerticalAlign.Response](#anytype-Rpc-Block-ListSetVerticalAlign-Response) | | +| BlockListTurnInto | [Rpc.Block.ListTurnInto.Request](#anytype-Rpc-Block-ListTurnInto-Request) | [Rpc.Block.ListTurnInto.Response](#anytype-Rpc-Block-ListTurnInto-Response) | | +| BlockTextSetText | [Rpc.BlockText.SetText.Request](#anytype-Rpc-BlockText-SetText-Request) | [Rpc.BlockText.SetText.Response](#anytype-Rpc-BlockText-SetText-Response) | Text Block commands *** | +| BlockTextSetColor | [Rpc.BlockText.SetColor.Request](#anytype-Rpc-BlockText-SetColor-Request) | [Rpc.BlockText.SetColor.Response](#anytype-Rpc-BlockText-SetColor-Response) | | +| BlockTextSetStyle | [Rpc.BlockText.SetStyle.Request](#anytype-Rpc-BlockText-SetStyle-Request) | [Rpc.BlockText.SetStyle.Response](#anytype-Rpc-BlockText-SetStyle-Response) | | +| BlockTextSetChecked | [Rpc.BlockText.SetChecked.Request](#anytype-Rpc-BlockText-SetChecked-Request) | [Rpc.BlockText.SetChecked.Response](#anytype-Rpc-BlockText-SetChecked-Response) | | +| BlockTextSetIcon | [Rpc.BlockText.SetIcon.Request](#anytype-Rpc-BlockText-SetIcon-Request) | [Rpc.BlockText.SetIcon.Response](#anytype-Rpc-BlockText-SetIcon-Response) | | +| BlockTextListSetColor | [Rpc.BlockText.ListSetColor.Request](#anytype-Rpc-BlockText-ListSetColor-Request) | [Rpc.BlockText.ListSetColor.Response](#anytype-Rpc-BlockText-ListSetColor-Response) | | +| BlockTextListSetMark | [Rpc.BlockText.ListSetMark.Request](#anytype-Rpc-BlockText-ListSetMark-Request) | [Rpc.BlockText.ListSetMark.Response](#anytype-Rpc-BlockText-ListSetMark-Response) | | +| BlockTextListSetStyle | [Rpc.BlockText.ListSetStyle.Request](#anytype-Rpc-BlockText-ListSetStyle-Request) | [Rpc.BlockText.ListSetStyle.Response](#anytype-Rpc-BlockText-ListSetStyle-Response) | | +| BlockTextListClearStyle | [Rpc.BlockText.ListClearStyle.Request](#anytype-Rpc-BlockText-ListClearStyle-Request) | [Rpc.BlockText.ListClearStyle.Response](#anytype-Rpc-BlockText-ListClearStyle-Response) | | +| BlockTextListClearContent | [Rpc.BlockText.ListClearContent.Request](#anytype-Rpc-BlockText-ListClearContent-Request) | [Rpc.BlockText.ListClearContent.Response](#anytype-Rpc-BlockText-ListClearContent-Response) | | +| BlockFileSetName | [Rpc.BlockFile.SetName.Request](#anytype-Rpc-BlockFile-SetName-Request) | [Rpc.BlockFile.SetName.Response](#anytype-Rpc-BlockFile-SetName-Response) | File block commands *** | +| BlockImageSetName | [Rpc.BlockImage.SetName.Request](#anytype-Rpc-BlockImage-SetName-Request) | [Rpc.BlockImage.SetName.Response](#anytype-Rpc-BlockImage-SetName-Response) | | +| BlockVideoSetName | [Rpc.BlockVideo.SetName.Request](#anytype-Rpc-BlockVideo-SetName-Request) | [Rpc.BlockVideo.SetName.Response](#anytype-Rpc-BlockVideo-SetName-Response) | | +| BlockFileCreateAndUpload | [Rpc.BlockFile.CreateAndUpload.Request](#anytype-Rpc-BlockFile-CreateAndUpload-Request) | [Rpc.BlockFile.CreateAndUpload.Response](#anytype-Rpc-BlockFile-CreateAndUpload-Response) | | +| BlockFileListSetStyle | [Rpc.BlockFile.ListSetStyle.Request](#anytype-Rpc-BlockFile-ListSetStyle-Request) | [Rpc.BlockFile.ListSetStyle.Response](#anytype-Rpc-BlockFile-ListSetStyle-Response) | | +| BlockDataviewViewCreate | [Rpc.BlockDataview.View.Create.Request](#anytype-Rpc-BlockDataview-View-Create-Request) | [Rpc.BlockDataview.View.Create.Response](#anytype-Rpc-BlockDataview-View-Create-Response) | Dataview block commands *** | +| BlockDataviewViewDelete | [Rpc.BlockDataview.View.Delete.Request](#anytype-Rpc-BlockDataview-View-Delete-Request) | [Rpc.BlockDataview.View.Delete.Response](#anytype-Rpc-BlockDataview-View-Delete-Response) | | +| BlockDataviewViewUpdate | [Rpc.BlockDataview.View.Update.Request](#anytype-Rpc-BlockDataview-View-Update-Request) | [Rpc.BlockDataview.View.Update.Response](#anytype-Rpc-BlockDataview-View-Update-Response) | | +| BlockDataviewViewSetActive | [Rpc.BlockDataview.View.SetActive.Request](#anytype-Rpc-BlockDataview-View-SetActive-Request) | [Rpc.BlockDataview.View.SetActive.Response](#anytype-Rpc-BlockDataview-View-SetActive-Response) | | +| BlockDataviewViewSetPosition | [Rpc.BlockDataview.View.SetPosition.Request](#anytype-Rpc-BlockDataview-View-SetPosition-Request) | [Rpc.BlockDataview.View.SetPosition.Response](#anytype-Rpc-BlockDataview-View-SetPosition-Response) | | +| BlockDataviewSetSource | [Rpc.BlockDataview.SetSource.Request](#anytype-Rpc-BlockDataview-SetSource-Request) | [Rpc.BlockDataview.SetSource.Response](#anytype-Rpc-BlockDataview-SetSource-Response) | | +| BlockDataviewRelationAdd | [Rpc.BlockDataview.Relation.Add.Request](#anytype-Rpc-BlockDataview-Relation-Add-Request) | [Rpc.BlockDataview.Relation.Add.Response](#anytype-Rpc-BlockDataview-Relation-Add-Response) | | +| BlockDataviewRelationDelete | [Rpc.BlockDataview.Relation.Delete.Request](#anytype-Rpc-BlockDataview-Relation-Delete-Request) | [Rpc.BlockDataview.Relation.Delete.Response](#anytype-Rpc-BlockDataview-Relation-Delete-Response) | | +| BlockDataviewRelationListAvailable | [Rpc.BlockDataview.Relation.ListAvailable.Request](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Request) | [Rpc.BlockDataview.Relation.ListAvailable.Response](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response) | | +| BlockDataviewGroupOrderUpdate | [Rpc.BlockDataview.GroupOrder.Update.Request](#anytype-Rpc-BlockDataview-GroupOrder-Update-Request) | [Rpc.BlockDataview.GroupOrder.Update.Response](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response) | | +| BlockDataviewObjectOrderUpdate | [Rpc.BlockDataview.ObjectOrder.Update.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Request) | [Rpc.BlockDataview.ObjectOrder.Update.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response) | | +| BlockDataviewObjectOrderMove | [Rpc.BlockDataview.ObjectOrder.Move.Request](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Request) | [Rpc.BlockDataview.ObjectOrder.Move.Response](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response) | | +| BlockDataviewCreateFromExistingObject | [Rpc.BlockDataview.CreateFromExistingObject.Request](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Request) | [Rpc.BlockDataview.CreateFromExistingObject.Response](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response) | | +| BlockDataviewFilterAdd | [Rpc.BlockDataview.Filter.Add.Request](#anytype-Rpc-BlockDataview-Filter-Add-Request) | [Rpc.BlockDataview.Filter.Add.Response](#anytype-Rpc-BlockDataview-Filter-Add-Response) | | +| BlockDataviewFilterRemove | [Rpc.BlockDataview.Filter.Remove.Request](#anytype-Rpc-BlockDataview-Filter-Remove-Request) | [Rpc.BlockDataview.Filter.Remove.Response](#anytype-Rpc-BlockDataview-Filter-Remove-Response) | | +| BlockDataviewFilterReplace | [Rpc.BlockDataview.Filter.Replace.Request](#anytype-Rpc-BlockDataview-Filter-Replace-Request) | [Rpc.BlockDataview.Filter.Replace.Response](#anytype-Rpc-BlockDataview-Filter-Replace-Response) | | +| BlockDataviewFilterSort | [Rpc.BlockDataview.Filter.Sort.Request](#anytype-Rpc-BlockDataview-Filter-Sort-Request) | [Rpc.BlockDataview.Filter.Sort.Response](#anytype-Rpc-BlockDataview-Filter-Sort-Response) | | +| BlockDataviewSortAdd | [Rpc.BlockDataview.Sort.Add.Request](#anytype-Rpc-BlockDataview-Sort-Add-Request) | [Rpc.BlockDataview.Sort.Add.Response](#anytype-Rpc-BlockDataview-Sort-Add-Response) | | +| BlockDataviewSortRemove | [Rpc.BlockDataview.Sort.Remove.Request](#anytype-Rpc-BlockDataview-Sort-Remove-Request) | [Rpc.BlockDataview.Sort.Remove.Response](#anytype-Rpc-BlockDataview-Sort-Remove-Response) | | +| BlockDataviewSortReplace | [Rpc.BlockDataview.Sort.Replace.Request](#anytype-Rpc-BlockDataview-Sort-Replace-Request) | [Rpc.BlockDataview.Sort.Replace.Response](#anytype-Rpc-BlockDataview-Sort-Replace-Response) | | +| BlockDataviewSortSort | [Rpc.BlockDataview.Sort.Sort.Request](#anytype-Rpc-BlockDataview-Sort-Sort-Request) | [Rpc.BlockDataview.Sort.Sort.Response](#anytype-Rpc-BlockDataview-Sort-Sort-Response) | | +| BlockDataviewViewRelationAdd | [Rpc.BlockDataview.ViewRelation.Add.Request](#anytype-Rpc-BlockDataview-ViewRelation-Add-Request) | [Rpc.BlockDataview.ViewRelation.Add.Response](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response) | | +| BlockDataviewViewRelationRemove | [Rpc.BlockDataview.ViewRelation.Remove.Request](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Request) | [Rpc.BlockDataview.ViewRelation.Remove.Response](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response) | | +| BlockDataviewViewRelationReplace | [Rpc.BlockDataview.ViewRelation.Replace.Request](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Request) | [Rpc.BlockDataview.ViewRelation.Replace.Response](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response) | | +| BlockDataviewViewRelationSort | [Rpc.BlockDataview.ViewRelation.Sort.Request](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Request) | [Rpc.BlockDataview.ViewRelation.Sort.Response](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response) | | +| BlockTableCreate | [Rpc.BlockTable.Create.Request](#anytype-Rpc-BlockTable-Create-Request) | [Rpc.BlockTable.Create.Response](#anytype-Rpc-BlockTable-Create-Response) | Simple table block commands *** | +| BlockTableExpand | [Rpc.BlockTable.Expand.Request](#anytype-Rpc-BlockTable-Expand-Request) | [Rpc.BlockTable.Expand.Response](#anytype-Rpc-BlockTable-Expand-Response) | | +| BlockTableRowCreate | [Rpc.BlockTable.RowCreate.Request](#anytype-Rpc-BlockTable-RowCreate-Request) | [Rpc.BlockTable.RowCreate.Response](#anytype-Rpc-BlockTable-RowCreate-Response) | | +| BlockTableRowDelete | [Rpc.BlockTable.RowDelete.Request](#anytype-Rpc-BlockTable-RowDelete-Request) | [Rpc.BlockTable.RowDelete.Response](#anytype-Rpc-BlockTable-RowDelete-Response) | | +| BlockTableRowDuplicate | [Rpc.BlockTable.RowDuplicate.Request](#anytype-Rpc-BlockTable-RowDuplicate-Request) | [Rpc.BlockTable.RowDuplicate.Response](#anytype-Rpc-BlockTable-RowDuplicate-Response) | | +| BlockTableRowSetHeader | [Rpc.BlockTable.RowSetHeader.Request](#anytype-Rpc-BlockTable-RowSetHeader-Request) | [Rpc.BlockTable.RowSetHeader.Response](#anytype-Rpc-BlockTable-RowSetHeader-Response) | | +| BlockTableColumnCreate | [Rpc.BlockTable.ColumnCreate.Request](#anytype-Rpc-BlockTable-ColumnCreate-Request) | [Rpc.BlockTable.ColumnCreate.Response](#anytype-Rpc-BlockTable-ColumnCreate-Response) | | +| BlockTableColumnMove | [Rpc.BlockTable.ColumnMove.Request](#anytype-Rpc-BlockTable-ColumnMove-Request) | [Rpc.BlockTable.ColumnMove.Response](#anytype-Rpc-BlockTable-ColumnMove-Response) | | +| BlockTableColumnDelete | [Rpc.BlockTable.ColumnDelete.Request](#anytype-Rpc-BlockTable-ColumnDelete-Request) | [Rpc.BlockTable.ColumnDelete.Response](#anytype-Rpc-BlockTable-ColumnDelete-Response) | | +| BlockTableColumnDuplicate | [Rpc.BlockTable.ColumnDuplicate.Request](#anytype-Rpc-BlockTable-ColumnDuplicate-Request) | [Rpc.BlockTable.ColumnDuplicate.Response](#anytype-Rpc-BlockTable-ColumnDuplicate-Response) | | +| BlockTableRowListFill | [Rpc.BlockTable.RowListFill.Request](#anytype-Rpc-BlockTable-RowListFill-Request) | [Rpc.BlockTable.RowListFill.Response](#anytype-Rpc-BlockTable-RowListFill-Response) | | +| BlockTableRowListClean | [Rpc.BlockTable.RowListClean.Request](#anytype-Rpc-BlockTable-RowListClean-Request) | [Rpc.BlockTable.RowListClean.Response](#anytype-Rpc-BlockTable-RowListClean-Response) | | +| BlockTableColumnListFill | [Rpc.BlockTable.ColumnListFill.Request](#anytype-Rpc-BlockTable-ColumnListFill-Request) | [Rpc.BlockTable.ColumnListFill.Response](#anytype-Rpc-BlockTable-ColumnListFill-Response) | | +| BlockTableSort | [Rpc.BlockTable.Sort.Request](#anytype-Rpc-BlockTable-Sort-Request) | [Rpc.BlockTable.Sort.Response](#anytype-Rpc-BlockTable-Sort-Response) | | +| BlockCreateWidget | [Rpc.Block.CreateWidget.Request](#anytype-Rpc-Block-CreateWidget-Request) | [Rpc.Block.CreateWidget.Response](#anytype-Rpc-Block-CreateWidget-Response) | Widget commands *** | +| BlockWidgetSetTargetId | [Rpc.BlockWidget.SetTargetId.Request](#anytype-Rpc-BlockWidget-SetTargetId-Request) | [Rpc.BlockWidget.SetTargetId.Response](#anytype-Rpc-BlockWidget-SetTargetId-Response) | | +| BlockWidgetSetLayout | [Rpc.BlockWidget.SetLayout.Request](#anytype-Rpc-BlockWidget-SetLayout-Request) | [Rpc.BlockWidget.SetLayout.Response](#anytype-Rpc-BlockWidget-SetLayout-Response) | | +| BlockWidgetSetLimit | [Rpc.BlockWidget.SetLimit.Request](#anytype-Rpc-BlockWidget-SetLimit-Request) | [Rpc.BlockWidget.SetLimit.Response](#anytype-Rpc-BlockWidget-SetLimit-Response) | | +| BlockWidgetSetViewId | [Rpc.BlockWidget.SetViewId.Request](#anytype-Rpc-BlockWidget-SetViewId-Request) | [Rpc.BlockWidget.SetViewId.Response](#anytype-Rpc-BlockWidget-SetViewId-Response) | | +| BlockLinkCreateWithObject | [Rpc.BlockLink.CreateWithObject.Request](#anytype-Rpc-BlockLink-CreateWithObject-Request) | [Rpc.BlockLink.CreateWithObject.Response](#anytype-Rpc-BlockLink-CreateWithObject-Response) | Other specific block commands *** | +| BlockLinkListSetAppearance | [Rpc.BlockLink.ListSetAppearance.Request](#anytype-Rpc-BlockLink-ListSetAppearance-Request) | [Rpc.BlockLink.ListSetAppearance.Response](#anytype-Rpc-BlockLink-ListSetAppearance-Response) | | +| BlockBookmarkFetch | [Rpc.BlockBookmark.Fetch.Request](#anytype-Rpc-BlockBookmark-Fetch-Request) | [Rpc.BlockBookmark.Fetch.Response](#anytype-Rpc-BlockBookmark-Fetch-Response) | | +| BlockBookmarkCreateAndFetch | [Rpc.BlockBookmark.CreateAndFetch.Request](#anytype-Rpc-BlockBookmark-CreateAndFetch-Request) | [Rpc.BlockBookmark.CreateAndFetch.Response](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response) | | +| BlockRelationSetKey | [Rpc.BlockRelation.SetKey.Request](#anytype-Rpc-BlockRelation-SetKey-Request) | [Rpc.BlockRelation.SetKey.Response](#anytype-Rpc-BlockRelation-SetKey-Response) | | +| BlockRelationAdd | [Rpc.BlockRelation.Add.Request](#anytype-Rpc-BlockRelation-Add-Request) | [Rpc.BlockRelation.Add.Response](#anytype-Rpc-BlockRelation-Add-Response) | | +| BlockDivListSetStyle | [Rpc.BlockDiv.ListSetStyle.Request](#anytype-Rpc-BlockDiv-ListSetStyle-Request) | [Rpc.BlockDiv.ListSetStyle.Response](#anytype-Rpc-BlockDiv-ListSetStyle-Response) | | +| BlockLatexSetText | [Rpc.BlockLatex.SetText.Request](#anytype-Rpc-BlockLatex-SetText-Request) | [Rpc.BlockLatex.SetText.Response](#anytype-Rpc-BlockLatex-SetText-Response) | | +| ProcessCancel | [Rpc.Process.Cancel.Request](#anytype-Rpc-Process-Cancel-Request) | [Rpc.Process.Cancel.Response](#anytype-Rpc-Process-Cancel-Response) | | +| LogSend | [Rpc.Log.Send.Request](#anytype-Rpc-Log-Send-Request) | [Rpc.Log.Send.Response](#anytype-Rpc-Log-Send-Response) | | +| DebugTree | [Rpc.Debug.Tree.Request](#anytype-Rpc-Debug-Tree-Request) | [Rpc.Debug.Tree.Response](#anytype-Rpc-Debug-Tree-Response) | | +| DebugTreeHeads | [Rpc.Debug.TreeHeads.Request](#anytype-Rpc-Debug-TreeHeads-Request) | [Rpc.Debug.TreeHeads.Response](#anytype-Rpc-Debug-TreeHeads-Response) | | +| DebugSpaceSummary | [Rpc.Debug.SpaceSummary.Request](#anytype-Rpc-Debug-SpaceSummary-Request) | [Rpc.Debug.SpaceSummary.Response](#anytype-Rpc-Debug-SpaceSummary-Response) | | +| DebugExportLocalstore | [Rpc.Debug.ExportLocalstore.Request](#anytype-Rpc-Debug-ExportLocalstore-Request) | [Rpc.Debug.ExportLocalstore.Response](#anytype-Rpc-Debug-ExportLocalstore-Response) | | +| DebugPing | [Rpc.Debug.Ping.Request](#anytype-Rpc-Debug-Ping-Request) | [Rpc.Debug.Ping.Response](#anytype-Rpc-Debug-Ping-Response) | | +| MetricsSetParameters | [Rpc.Metrics.SetParameters.Request](#anytype-Rpc-Metrics-SetParameters-Request) | [Rpc.Metrics.SetParameters.Response](#anytype-Rpc-Metrics-SetParameters-Response) | | +| ListenSessionEvents | [StreamRequest](#anytype-StreamRequest) | [Event](#anytype-Event) stream | used only for lib-server via grpc | - +

Top

## pb/protos/changes.proto - + ### Change the element of change tree used to store and internal apply smartBlock history @@ -1663,9 +1663,9 @@ the element of change tree used to store and internal apply smartBlock history | previous_ids | [string](#string) | repeated | ids of previous changes | | last_snapshot_id | [string](#string) | | id of the last snapshot | | previous_meta_ids | [string](#string) | repeated | ids of the last changes with details/relations content | -| content | [Change.Content](#anytype.Change.Content) | repeated | set of actions to apply | -| snapshot | [Change.Snapshot](#anytype.Change.Snapshot) | | snapshot - when not null, the Content will be ignored | -| fileKeys | [Change.FileKeys](#anytype.Change.FileKeys) | repeated | file keys related to changes content | +| content | [Change.Content](#anytype-Change-Content) | repeated | set of actions to apply | +| snapshot | [Change.Snapshot](#anytype-Change-Snapshot) | | snapshot - when not null, the Content will be ignored | +| fileKeys | [Change.FileKeys](#anytype-Change-FileKeys) | repeated | file keys related to changes content | | timestamp | [int64](#int64) | | creation timestamp | | version | [uint32](#uint32) | | version of business logic | @@ -1674,7 +1674,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockCreate @@ -1683,15 +1683,15 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | -| blocks | [model.Block](#anytype.model.Block) | repeated | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| blocks | [model.Block](#anytype-model-Block) | repeated | | - + ### Change.BlockDuplicate @@ -1700,7 +1700,7 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | | ids | [string](#string) | repeated | | @@ -1708,7 +1708,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockMove @@ -1717,7 +1717,7 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | | ids | [string](#string) | repeated | | @@ -1725,7 +1725,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockRemove @@ -1740,7 +1740,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.BlockUpdate @@ -1748,14 +1748,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| events | [Event.Message](#anytype.Event.Message) | repeated | | +| events | [Event.Message](#anytype-Event-Message) | repeated | | - + ### Change.Content @@ -1763,30 +1763,30 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| blockCreate | [Change.BlockCreate](#anytype.Change.BlockCreate) | | | -| blockUpdate | [Change.BlockUpdate](#anytype.Change.BlockUpdate) | | | -| blockRemove | [Change.BlockRemove](#anytype.Change.BlockRemove) | | | -| blockMove | [Change.BlockMove](#anytype.Change.BlockMove) | | | -| blockDuplicate | [Change.BlockDuplicate](#anytype.Change.BlockDuplicate) | | | -| relationAdd | [Change.RelationAdd](#anytype.Change.RelationAdd) | | | -| relationRemove | [Change.RelationRemove](#anytype.Change.RelationRemove) | | | -| detailsSet | [Change.DetailsSet](#anytype.Change.DetailsSet) | | | -| detailsUnset | [Change.DetailsUnset](#anytype.Change.DetailsUnset) | | | -| old_relationAdd | [Change._RelationAdd](#anytype.Change._RelationAdd) | | deprecated | -| old_relationRemove | [Change._RelationRemove](#anytype.Change._RelationRemove) | | | -| old_relationUpdate | [Change._RelationUpdate](#anytype.Change._RelationUpdate) | | | -| objectTypeAdd | [Change.ObjectTypeAdd](#anytype.Change.ObjectTypeAdd) | | | -| objectTypeRemove | [Change.ObjectTypeRemove](#anytype.Change.ObjectTypeRemove) | | | -| storeKeySet | [Change.StoreKeySet](#anytype.Change.StoreKeySet) | | | -| storeKeyUnset | [Change.StoreKeyUnset](#anytype.Change.StoreKeyUnset) | | | -| storeSliceUpdate | [Change.StoreSliceUpdate](#anytype.Change.StoreSliceUpdate) | | | +| blockCreate | [Change.BlockCreate](#anytype-Change-BlockCreate) | | | +| blockUpdate | [Change.BlockUpdate](#anytype-Change-BlockUpdate) | | | +| blockRemove | [Change.BlockRemove](#anytype-Change-BlockRemove) | | | +| blockMove | [Change.BlockMove](#anytype-Change-BlockMove) | | | +| blockDuplicate | [Change.BlockDuplicate](#anytype-Change-BlockDuplicate) | | | +| relationAdd | [Change.RelationAdd](#anytype-Change-RelationAdd) | | | +| relationRemove | [Change.RelationRemove](#anytype-Change-RelationRemove) | | | +| detailsSet | [Change.DetailsSet](#anytype-Change-DetailsSet) | | | +| detailsUnset | [Change.DetailsUnset](#anytype-Change-DetailsUnset) | | | +| old_relationAdd | [Change._RelationAdd](#anytype-Change-_RelationAdd) | | deprecated | +| old_relationRemove | [Change._RelationRemove](#anytype-Change-_RelationRemove) | | | +| old_relationUpdate | [Change._RelationUpdate](#anytype-Change-_RelationUpdate) | | | +| objectTypeAdd | [Change.ObjectTypeAdd](#anytype-Change-ObjectTypeAdd) | | | +| objectTypeRemove | [Change.ObjectTypeRemove](#anytype-Change-ObjectTypeRemove) | | | +| storeKeySet | [Change.StoreKeySet](#anytype-Change-StoreKeySet) | | | +| storeKeyUnset | [Change.StoreKeyUnset](#anytype-Change-StoreKeyUnset) | | | +| storeSliceUpdate | [Change.StoreSliceUpdate](#anytype-Change-StoreSliceUpdate) | | | - + ### Change.DetailsSet @@ -1795,14 +1795,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| value | [google.protobuf.Value](#google.protobuf.Value) | | | +| value | [google.protobuf.Value](#google-protobuf-Value) | | | - + ### Change.DetailsUnset @@ -1817,7 +1817,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.FileKeys @@ -1826,14 +1826,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | hash | [string](#string) | | | -| keys | [Change.FileKeys.KeysEntry](#anytype.Change.FileKeys.KeysEntry) | repeated | | +| keys | [Change.FileKeys.KeysEntry](#anytype-Change-FileKeys-KeysEntry) | repeated | | - + ### Change.FileKeys.KeysEntry @@ -1849,7 +1849,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.ObjectTypeAdd @@ -1864,7 +1864,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.ObjectTypeRemove @@ -1879,7 +1879,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.RelationAdd @@ -1887,14 +1887,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relationLinks | [model.RelationLink](#anytype.model.RelationLink) | repeated | | +| relationLinks | [model.RelationLink](#anytype-model-RelationLink) | repeated | | - + ### Change.RelationRemove @@ -1909,7 +1909,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.Snapshot @@ -1917,16 +1917,16 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| logHeads | [Change.Snapshot.LogHeadsEntry](#anytype.Change.Snapshot.LogHeadsEntry) | repeated | logId -> lastChangeId | -| data | [model.SmartBlockSnapshotBase](#anytype.model.SmartBlockSnapshotBase) | | snapshot data | -| fileKeys | [Change.FileKeys](#anytype.Change.FileKeys) | repeated | all file keys related to doc | +| logHeads | [Change.Snapshot.LogHeadsEntry](#anytype-Change-Snapshot-LogHeadsEntry) | repeated | logId -> lastChangeId | +| data | [model.SmartBlockSnapshotBase](#anytype-model-SmartBlockSnapshotBase) | | snapshot data | +| fileKeys | [Change.FileKeys](#anytype-Change-FileKeys) | repeated | all file keys related to doc | - + ### Change.Snapshot.LogHeadsEntry @@ -1942,7 +1942,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreKeySet @@ -1951,14 +1951,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | path | [string](#string) | repeated | | -| value | [google.protobuf.Value](#google.protobuf.Value) | | | +| value | [google.protobuf.Value](#google-protobuf-Value) | | | - + ### Change.StoreKeyUnset @@ -1973,7 +1973,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate @@ -1982,16 +1982,16 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| add | [Change.StoreSliceUpdate.Add](#anytype.Change.StoreSliceUpdate.Add) | | | -| remove | [Change.StoreSliceUpdate.Remove](#anytype.Change.StoreSliceUpdate.Remove) | | | -| move | [Change.StoreSliceUpdate.Move](#anytype.Change.StoreSliceUpdate.Move) | | | +| add | [Change.StoreSliceUpdate.Add](#anytype-Change-StoreSliceUpdate-Add) | | | +| remove | [Change.StoreSliceUpdate.Remove](#anytype-Change-StoreSliceUpdate-Remove) | | | +| move | [Change.StoreSliceUpdate.Move](#anytype-Change-StoreSliceUpdate-Move) | | | - + ### Change.StoreSliceUpdate.Add @@ -2007,7 +2007,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate.Move @@ -2023,7 +2023,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change.StoreSliceUpdate.Remove @@ -2038,7 +2038,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change._RelationAdd @@ -2046,14 +2046,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relation | [model.Relation](#anytype.model.Relation) | | | +| relation | [model.Relation](#anytype-model-Relation) | | | - + ### Change._RelationRemove @@ -2068,7 +2068,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Change._RelationUpdate @@ -2077,19 +2077,19 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| format | [model.RelationFormat](#anytype.model.RelationFormat) | | | +| format | [model.RelationFormat](#anytype-model-RelationFormat) | | | | name | [string](#string) | | | -| defaultValue | [google.protobuf.Value](#google.protobuf.Value) | | | -| objectTypes | [Change._RelationUpdate.ObjectTypes](#anytype.Change._RelationUpdate.ObjectTypes) | | | +| defaultValue | [google.protobuf.Value](#google-protobuf-Value) | | | +| objectTypes | [Change._RelationUpdate.ObjectTypes](#anytype-Change-_RelationUpdate-ObjectTypes) | | | | multi | [bool](#bool) | | | -| selectDict | [Change._RelationUpdate.Dict](#anytype.Change._RelationUpdate.Dict) | | | +| selectDict | [Change._RelationUpdate.Dict](#anytype-Change-_RelationUpdate-Dict) | | | - + ### Change._RelationUpdate.Dict @@ -2097,14 +2097,14 @@ the element of change tree used to store and internal apply smartBlock history | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| dict | [model.Relation.Option](#anytype.model.Relation.Option) | repeated | | +| dict | [model.Relation.Option](#anytype-model-Relation-Option) | repeated | | - + ### Change._RelationUpdate.ObjectTypes @@ -2128,14 +2128,14 @@ the element of change tree used to store and internal apply smartBlock history - +

Top

## pb/protos/commands.proto - + ### Empty @@ -2145,7 +2145,7 @@ the element of change tree used to store and internal apply smartBlock history - + ### Rpc Rpc is a namespace, that agregates all of the service commands between client and middleware. @@ -2158,7 +2158,7 @@ Response – message from a middleware. - + ### Rpc.Account @@ -2168,7 +2168,7 @@ Response – message from a middleware. - + ### Rpc.Account.Config @@ -2180,14 +2180,14 @@ Response – message from a middleware. | enableDebug | [bool](#bool) | | | | enablePrereleaseChannel | [bool](#bool) | | | | enableSpaces | [bool](#bool) | | | -| extra | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| extra | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Account.ConfigUpdate @@ -2197,7 +2197,7 @@ Response – message from a middleware. - + ### Rpc.Account.ConfigUpdate.Request @@ -2213,7 +2213,7 @@ Response – message from a middleware. - + ### Rpc.Account.ConfigUpdate.Response @@ -2221,14 +2221,14 @@ Response – message from a middleware. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.ConfigUpdate.Response.Error](#anytype.Rpc.Account.ConfigUpdate.Response.Error) | | | +| error | [Rpc.Account.ConfigUpdate.Response.Error](#anytype-Rpc-Account-ConfigUpdate-Response-Error) | | | - + ### Rpc.Account.ConfigUpdate.Response.Error @@ -2236,7 +2236,7 @@ Response – message from a middleware. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype.Rpc.Account.ConfigUpdate.Response.Error.Code) | | | +| code | [Rpc.Account.ConfigUpdate.Response.Error.Code](#anytype-Rpc-Account-ConfigUpdate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2244,7 +2244,7 @@ Response – message from a middleware. - + ### Rpc.Account.Create @@ -2254,7 +2254,7 @@ Response – message from a middleware. - + ### Rpc.Account.Create.Request Front end to middleware request-to-create-an account @@ -2273,7 +2273,7 @@ Front end to middleware request-to-create-an account - + ### Rpc.Account.Create.Response Middleware-to-front-end response for an account creation request, that can contain a NULL error and created account or a non-NULL error and an empty account @@ -2281,16 +2281,16 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Create.Response.Error](#anytype.Rpc.Account.Create.Response.Error) | | Error while trying to create an account | -| account | [model.Account](#anytype.model.Account) | | A newly created account; In case of a failure, i.e. error is non-NULL, the account model should contain empty/default-value fields | -| config | [Rpc.Account.Config](#anytype.Rpc.Account.Config) | | deprecated, use account | +| error | [Rpc.Account.Create.Response.Error](#anytype-Rpc-Account-Create-Response-Error) | | Error while trying to create an account | +| account | [model.Account](#anytype-model-Account) | | A newly created account; In case of a failure, i.e. error is non-NULL, the account model should contain empty/default-value fields | +| config | [Rpc.Account.Config](#anytype-Rpc-Account-Config) | | deprecated, use account | - + ### Rpc.Account.Create.Response.Error @@ -2298,7 +2298,7 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Create.Response.Error.Code](#anytype.Rpc.Account.Create.Response.Error.Code) | | | +| code | [Rpc.Account.Create.Response.Error.Code](#anytype-Rpc-Account-Create-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2306,7 +2306,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete @@ -2316,7 +2316,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete.Request @@ -2331,7 +2331,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Delete.Response @@ -2339,15 +2339,15 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Delete.Response.Error](#anytype.Rpc.Account.Delete.Response.Error) | | Error while trying to recover an account | -| status | [model.Account.Status](#anytype.model.Account.Status) | | | +| error | [Rpc.Account.Delete.Response.Error](#anytype-Rpc-Account-Delete-Response-Error) | | Error while trying to recover an account | +| status | [model.Account.Status](#anytype-model-Account-Status) | | | - + ### Rpc.Account.Delete.Response.Error @@ -2355,7 +2355,7 @@ Middleware-to-front-end response for an account creation request, that can conta | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Delete.Response.Error.Code](#anytype.Rpc.Account.Delete.Response.Error.Code) | | | +| code | [Rpc.Account.Delete.Response.Error.Code](#anytype-Rpc-Account-Delete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2363,7 +2363,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig @@ -2373,7 +2373,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig.Get @@ -2383,7 +2383,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.GetConfig.Get.Request @@ -2393,7 +2393,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Move @@ -2403,7 +2403,7 @@ Middleware-to-front-end response for an account creation request, that can conta - + ### Rpc.Account.Move.Request Front-end-to-middleware request to move a account to a new disk location @@ -2418,7 +2418,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Move.Response @@ -2426,14 +2426,14 @@ Front-end-to-middleware request to move a account to a new disk location | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Move.Response.Error](#anytype.Rpc.Account.Move.Response.Error) | | | +| error | [Rpc.Account.Move.Response.Error](#anytype-Rpc-Account-Move-Response-Error) | | | - + ### Rpc.Account.Move.Response.Error @@ -2441,7 +2441,7 @@ Front-end-to-middleware request to move a account to a new disk location | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Move.Response.Error.Code](#anytype.Rpc.Account.Move.Response.Error.Code) | | | +| code | [Rpc.Account.Move.Response.Error.Code](#anytype-Rpc-Account-Move-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2449,7 +2449,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Recover @@ -2459,7 +2459,7 @@ Front-end-to-middleware request to move a account to a new disk location - + ### Rpc.Account.Recover.Request Front end to middleware request-to-start-search of an accounts for a recovered mnemonic. @@ -2470,7 +2470,7 @@ Each of an account that would be found will come with an AccountAdd event - + ### Rpc.Account.Recover.Response Middleware-to-front-end response to an account recover request, that can contain a NULL error and created account or a non-NULL error and an empty account @@ -2478,14 +2478,14 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Recover.Response.Error](#anytype.Rpc.Account.Recover.Response.Error) | | Error while trying to recover an account | +| error | [Rpc.Account.Recover.Response.Error](#anytype-Rpc-Account-Recover-Response-Error) | | Error while trying to recover an account | - + ### Rpc.Account.Recover.Response.Error @@ -2493,7 +2493,7 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Recover.Response.Error.Code](#anytype.Rpc.Account.Recover.Response.Error.Code) | | | +| code | [Rpc.Account.Recover.Response.Error.Code](#anytype-Rpc-Account-Recover-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2501,7 +2501,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport @@ -2511,7 +2511,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport.Request @@ -2528,7 +2528,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.RecoverFromLegacyExport.Response @@ -2537,14 +2537,14 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | accountId | [string](#string) | | | -| error | [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error) | | | +| error | [Rpc.Account.RecoverFromLegacyExport.Response.Error](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error) | | | - + ### Rpc.Account.RecoverFromLegacyExport.Response.Error @@ -2552,7 +2552,7 @@ Middleware-to-front-end response to an account recover request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype.Rpc.Account.RecoverFromLegacyExport.Response.Error.Code) | | | +| code | [Rpc.Account.RecoverFromLegacyExport.Response.Error.Code](#anytype-Rpc-Account-RecoverFromLegacyExport-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2560,7 +2560,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.Select @@ -2570,7 +2570,7 @@ Middleware-to-front-end response to an account recover request, that can contain - + ### Rpc.Account.Select.Request Front end to middleware request-to-launch-a specific account using account id and a root path @@ -2587,7 +2587,7 @@ User can select an account from those, that came with an AccountAdd events - + ### Rpc.Account.Select.Response Middleware-to-front-end response for an account select request, that can contain a NULL error and selected account or a non-NULL error and an empty account @@ -2595,16 +2595,16 @@ Middleware-to-front-end response for an account select request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Select.Response.Error](#anytype.Rpc.Account.Select.Response.Error) | | Error while trying to launch/select an account | -| account | [model.Account](#anytype.model.Account) | | Selected account | -| config | [Rpc.Account.Config](#anytype.Rpc.Account.Config) | | deprecated, use account | +| error | [Rpc.Account.Select.Response.Error](#anytype-Rpc-Account-Select-Response-Error) | | Error while trying to launch/select an account | +| account | [model.Account](#anytype-model-Account) | | Selected account | +| config | [Rpc.Account.Config](#anytype-Rpc-Account-Config) | | deprecated, use account | - + ### Rpc.Account.Select.Response.Error @@ -2612,7 +2612,7 @@ Middleware-to-front-end response for an account select request, that can contain | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Select.Response.Error.Code](#anytype.Rpc.Account.Select.Response.Error.Code) | | | +| code | [Rpc.Account.Select.Response.Error.Code](#anytype-Rpc-Account-Select-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2620,7 +2620,7 @@ Middleware-to-front-end response for an account select request, that can contain - + ### Rpc.Account.Stop @@ -2630,7 +2630,7 @@ Middleware-to-front-end response for an account select request, that can contain - + ### Rpc.Account.Stop.Request Front end to middleware request to stop currently running account node and optionally remove the locally stored data @@ -2645,7 +2645,7 @@ Front end to middleware request to stop currently running account node and optio - + ### Rpc.Account.Stop.Response Middleware-to-front-end response for an account stop request @@ -2653,14 +2653,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Account.Stop.Response.Error](#anytype.Rpc.Account.Stop.Response.Error) | | Error while trying to launch/select an account | +| error | [Rpc.Account.Stop.Response.Error](#anytype-Rpc-Account-Stop-Response-Error) | | Error while trying to launch/select an account | - + ### Rpc.Account.Stop.Response.Error @@ -2668,7 +2668,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Account.Stop.Response.Error.Code](#anytype.Rpc.Account.Stop.Response.Error.Code) | | | +| code | [Rpc.Account.Stop.Response.Error.Code](#anytype-Rpc-Account-Stop-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2676,7 +2676,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App @@ -2686,7 +2686,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion @@ -2696,7 +2696,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Request @@ -2706,7 +2706,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Response @@ -2714,7 +2714,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.App.GetVersion.Response.Error](#anytype.Rpc.App.GetVersion.Response.Error) | | | +| error | [Rpc.App.GetVersion.Response.Error](#anytype-Rpc-App-GetVersion-Response-Error) | | | | version | [string](#string) | | | | details | [string](#string) | | build date, branch and commit | @@ -2723,7 +2723,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.GetVersion.Response.Error @@ -2731,7 +2731,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.App.GetVersion.Response.Error.Code](#anytype.Rpc.App.GetVersion.Response.Error.Code) | | | +| code | [Rpc.App.GetVersion.Response.Error.Code](#anytype-Rpc-App-GetVersion-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2739,7 +2739,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.SetDeviceState @@ -2749,7 +2749,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.SetDeviceState.Request @@ -2757,14 +2757,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| deviceState | [Rpc.App.SetDeviceState.Request.DeviceState](#anytype.Rpc.App.SetDeviceState.Request.DeviceState) | | | +| deviceState | [Rpc.App.SetDeviceState.Request.DeviceState](#anytype-Rpc-App-SetDeviceState-Request-DeviceState) | | | - + ### Rpc.App.SetDeviceState.Response @@ -2772,14 +2772,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.App.SetDeviceState.Response.Error](#anytype.Rpc.App.SetDeviceState.Response.Error) | | | +| error | [Rpc.App.SetDeviceState.Response.Error](#anytype-Rpc-App-SetDeviceState-Response-Error) | | | - + ### Rpc.App.SetDeviceState.Response.Error @@ -2787,7 +2787,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.App.SetDeviceState.Response.Error.Code](#anytype.Rpc.App.SetDeviceState.Response.Error.Code) | | | +| code | [Rpc.App.SetDeviceState.Response.Error.Code](#anytype-Rpc-App-SetDeviceState-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2795,7 +2795,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown @@ -2805,7 +2805,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown.Request @@ -2815,7 +2815,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.App.Shutdown.Response @@ -2823,14 +2823,14 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.App.Shutdown.Response.Error](#anytype.Rpc.App.Shutdown.Response.Error) | | | +| error | [Rpc.App.Shutdown.Response.Error](#anytype-Rpc-App-Shutdown-Response-Error) | | | - + ### Rpc.App.Shutdown.Response.Error @@ -2838,7 +2838,7 @@ Middleware-to-front-end response for an account stop request | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.App.Shutdown.Response.Error.Code](#anytype.Rpc.App.Shutdown.Response.Error.Code) | | | +| code | [Rpc.App.Shutdown.Response.Error.Code](#anytype-Rpc-App-Shutdown-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2846,7 +2846,7 @@ Middleware-to-front-end response for an account stop request - + ### Rpc.Block Block commands @@ -2856,7 +2856,7 @@ Block commands - + ### Rpc.Block.Copy @@ -2866,7 +2866,7 @@ Block commands - + ### Rpc.Block.Copy.Request @@ -2875,15 +2875,15 @@ Block commands | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blocks | [model.Block](#anytype.model.Block) | repeated | | -| selectedTextRange | [model.Range](#anytype.model.Range) | | | +| blocks | [model.Block](#anytype-model-Block) | repeated | | +| selectedTextRange | [model.Range](#anytype-model-Range) | | | - + ### Rpc.Block.Copy.Response @@ -2891,17 +2891,17 @@ Block commands | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Copy.Response.Error](#anytype.Rpc.Block.Copy.Response.Error) | | | +| error | [Rpc.Block.Copy.Response.Error](#anytype-Rpc-Block-Copy-Response-Error) | | | | textSlot | [string](#string) | | | | htmlSlot | [string](#string) | | | -| anySlot | [model.Block](#anytype.model.Block) | repeated | | +| anySlot | [model.Block](#anytype-model-Block) | repeated | | - + ### Rpc.Block.Copy.Response.Error @@ -2909,7 +2909,7 @@ Block commands | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Copy.Response.Error.Code](#anytype.Rpc.Block.Copy.Response.Error.Code) | | | +| code | [Rpc.Block.Copy.Response.Error.Code](#anytype-Rpc-Block-Copy-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2917,7 +2917,7 @@ Block commands - + ### Rpc.Block.Create Create a Smart/Internal block. Request can contain a block with a content, or it can be an empty block with a specific block.content. @@ -2939,7 +2939,7 @@ Create a Smart/Internal block. Request can contain a block with a content, or it - + ### Rpc.Block.Create.Request common simple block command @@ -2949,15 +2949,15 @@ common simple block command | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | -| block | [model.Block](#anytype.model.Block) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| block | [model.Block](#anytype-model-Block) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | - + ### Rpc.Block.Create.Response @@ -2965,16 +2965,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Create.Response.Error](#anytype.Rpc.Block.Create.Response.Error) | | | +| error | [Rpc.Block.Create.Response.Error](#anytype-Rpc-Block-Create-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Create.Response.Error @@ -2982,7 +2982,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Create.Response.Error.Code](#anytype.Rpc.Block.Create.Response.Error.Code) | | | +| code | [Rpc.Block.Create.Response.Error.Code](#anytype-Rpc-Block-Create-Response-Error-Code) | | | | description | [string](#string) | | | @@ -2990,7 +2990,7 @@ common simple block command - + ### Rpc.Block.CreateWidget @@ -3000,7 +3000,7 @@ common simple block command - + ### Rpc.Block.CreateWidget.Request @@ -3010,9 +3010,9 @@ common simple block command | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | -| block | [model.Block](#anytype.model.Block) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | -| widgetLayout | [model.Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) | | | +| block | [model.Block](#anytype-model-Block) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| widgetLayout | [model.Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) | | | | objectLimit | [int32](#int32) | | | | viewId | [string](#string) | | | @@ -3021,7 +3021,7 @@ common simple block command - + ### Rpc.Block.CreateWidget.Response @@ -3029,16 +3029,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.CreateWidget.Response.Error](#anytype.Rpc.Block.CreateWidget.Response.Error) | | | +| error | [Rpc.Block.CreateWidget.Response.Error](#anytype-Rpc-Block-CreateWidget-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.CreateWidget.Response.Error @@ -3046,7 +3046,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.CreateWidget.Response.Error.Code](#anytype.Rpc.Block.CreateWidget.Response.Error.Code) | | | +| code | [Rpc.Block.CreateWidget.Response.Error.Code](#anytype-Rpc-Block-CreateWidget-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3054,7 +3054,7 @@ common simple block command - + ### Rpc.Block.Cut @@ -3064,7 +3064,7 @@ common simple block command - + ### Rpc.Block.Cut.Request @@ -3073,15 +3073,15 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blocks | [model.Block](#anytype.model.Block) | repeated | | -| selectedTextRange | [model.Range](#anytype.model.Range) | | | +| blocks | [model.Block](#anytype-model-Block) | repeated | | +| selectedTextRange | [model.Range](#anytype-model-Range) | | | - + ### Rpc.Block.Cut.Response @@ -3089,18 +3089,18 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Cut.Response.Error](#anytype.Rpc.Block.Cut.Response.Error) | | | +| error | [Rpc.Block.Cut.Response.Error](#anytype-Rpc-Block-Cut-Response-Error) | | | | textSlot | [string](#string) | | | | htmlSlot | [string](#string) | | | -| anySlot | [model.Block](#anytype.model.Block) | repeated | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| anySlot | [model.Block](#anytype-model-Block) | repeated | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Cut.Response.Error @@ -3108,7 +3108,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Cut.Response.Error.Code](#anytype.Rpc.Block.Cut.Response.Error.Code) | | | +| code | [Rpc.Block.Cut.Response.Error.Code](#anytype-Rpc-Block-Cut-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3116,7 +3116,7 @@ common simple block command - + ### Rpc.Block.Download @@ -3126,7 +3126,7 @@ common simple block command - + ### Rpc.Block.Download.Request @@ -3142,7 +3142,7 @@ common simple block command - + ### Rpc.Block.Download.Response @@ -3150,15 +3150,15 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Download.Response.Error](#anytype.Rpc.Block.Download.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.Download.Response.Error](#anytype-Rpc-Block-Download-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Download.Response.Error @@ -3166,7 +3166,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Download.Response.Error.Code](#anytype.Rpc.Block.Download.Response.Error.Code) | | | +| code | [Rpc.Block.Download.Response.Error.Code](#anytype-Rpc-Block-Download-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3174,7 +3174,7 @@ common simple block command - + ### Rpc.Block.Export @@ -3184,7 +3184,7 @@ common simple block command - + ### Rpc.Block.Export.Request @@ -3193,14 +3193,14 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blocks | [model.Block](#anytype.model.Block) | repeated | | +| blocks | [model.Block](#anytype-model-Block) | repeated | | - + ### Rpc.Block.Export.Response @@ -3208,16 +3208,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Export.Response.Error](#anytype.Rpc.Block.Export.Response.Error) | | | +| error | [Rpc.Block.Export.Response.Error](#anytype-Rpc-Block-Export-Response-Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Export.Response.Error @@ -3225,7 +3225,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Export.Response.Error.Code](#anytype.Rpc.Block.Export.Response.Error.Code) | | | +| code | [Rpc.Block.Export.Response.Error.Code](#anytype-Rpc-Block-Export-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3233,7 +3233,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects @@ -3243,7 +3243,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects.Request @@ -3260,7 +3260,7 @@ common simple block command - + ### Rpc.Block.ListConvertToObjects.Response @@ -3268,16 +3268,16 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListConvertToObjects.Response.Error](#anytype.Rpc.Block.ListConvertToObjects.Response.Error) | | | +| error | [Rpc.Block.ListConvertToObjects.Response.Error](#anytype-Rpc-Block-ListConvertToObjects-Response-Error) | | | | linkIds | [string](#string) | repeated | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListConvertToObjects.Response.Error @@ -3285,7 +3285,7 @@ common simple block command | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype.Rpc.Block.ListConvertToObjects.Response.Error.Code) | | | +| code | [Rpc.Block.ListConvertToObjects.Response.Error.Code](#anytype-Rpc-Block-ListConvertToObjects-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3293,7 +3293,7 @@ common simple block command - + ### Rpc.Block.ListDelete Remove blocks from the childrenIds of its parents @@ -3303,7 +3303,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDelete.Request @@ -3319,7 +3319,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDelete.Response @@ -3327,15 +3327,15 @@ Remove blocks from the childrenIds of its parents | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListDelete.Response.Error](#anytype.Rpc.Block.ListDelete.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.ListDelete.Response.Error](#anytype-Rpc-Block-ListDelete-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListDelete.Response.Error @@ -3343,7 +3343,7 @@ Remove blocks from the childrenIds of its parents | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListDelete.Response.Error.Code](#anytype.Rpc.Block.ListDelete.Response.Error.Code) | | | +| code | [Rpc.Block.ListDelete.Response.Error.Code](#anytype-Rpc-Block-ListDelete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3351,7 +3351,7 @@ Remove blocks from the childrenIds of its parents - + ### Rpc.Block.ListDuplicate Makes blocks copy by given ids and paste it to shown place @@ -3361,7 +3361,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListDuplicate.Request @@ -3372,7 +3372,7 @@ Makes blocks copy by given ids and paste it to shown place | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | | blockIds | [string](#string) | repeated | id of block for duplicate | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | | targetContextId | [string](#string) | | | @@ -3380,7 +3380,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListDuplicate.Response @@ -3388,16 +3388,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListDuplicate.Response.Error](#anytype.Rpc.Block.ListDuplicate.Response.Error) | | | +| error | [Rpc.Block.ListDuplicate.Response.Error](#anytype-Rpc-Block-ListDuplicate-Response-Error) | | | | blockIds | [string](#string) | repeated | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListDuplicate.Response.Error @@ -3405,7 +3405,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype.Rpc.Block.ListDuplicate.Response.Error.Code) | | | +| code | [Rpc.Block.ListDuplicate.Response.Error.Code](#anytype-Rpc-Block-ListDuplicate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3413,7 +3413,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToExistingObject @@ -3423,7 +3423,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToExistingObject.Request @@ -3435,14 +3435,14 @@ Makes blocks copy by given ids and paste it to shown place | blockIds | [string](#string) | repeated | | | targetContextId | [string](#string) | | | | dropTargetId | [string](#string) | | id of the simple block to insert considering position | -| position | [model.Block.Position](#anytype.model.Block.Position) | | position relatively to the dropTargetId simple block | +| position | [model.Block.Position](#anytype-model-Block-Position) | | position relatively to the dropTargetId simple block | - + ### Rpc.Block.ListMoveToExistingObject.Response @@ -3450,15 +3450,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.ListMoveToExistingObject.Response.Error](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListMoveToExistingObject.Response.Error @@ -3466,7 +3466,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToExistingObject.Response.Error.Code) | | | +| code | [Rpc.Block.ListMoveToExistingObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToExistingObject-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3474,7 +3474,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToNewObject @@ -3484,7 +3484,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListMoveToNewObject.Request @@ -3494,16 +3494,16 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | new object details | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | new object details | | dropTargetId | [string](#string) | | id of the simple block to insert considering position | -| position | [model.Block.Position](#anytype.model.Block.Position) | | position relatively to the dropTargetId simple block | +| position | [model.Block.Position](#anytype-model-Block-Position) | | position relatively to the dropTargetId simple block | - + ### Rpc.Block.ListMoveToNewObject.Response @@ -3511,16 +3511,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error) | | | +| error | [Rpc.Block.ListMoveToNewObject.Response.Error](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error) | | | | linkId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListMoveToNewObject.Response.Error @@ -3528,7 +3528,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype.Rpc.Block.ListMoveToNewObject.Response.Error.Code) | | | +| code | [Rpc.Block.ListMoveToNewObject.Response.Error.Code](#anytype-Rpc-Block-ListMoveToNewObject-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3536,7 +3536,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetAlign @@ -3546,7 +3546,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetAlign.Request @@ -3556,14 +3556,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | when empty - align will be applied as layoutAlign | -| align | [model.Block.Align](#anytype.model.Block.Align) | | | +| align | [model.Block.Align](#anytype-model-Block-Align) | | | - + ### Rpc.Block.ListSetAlign.Response @@ -3571,15 +3571,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetAlign.Response.Error](#anytype.Rpc.Block.ListSetAlign.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.ListSetAlign.Response.Error](#anytype-Rpc-Block-ListSetAlign-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListSetAlign.Response.Error @@ -3587,7 +3587,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetAlign.Response.Error.Code) | | | +| code | [Rpc.Block.ListSetAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetAlign-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3595,7 +3595,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor @@ -3605,7 +3605,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor.Request @@ -3622,7 +3622,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetBackgroundColor.Response @@ -3630,15 +3630,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.ListSetBackgroundColor.Response.Error](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListSetBackgroundColor.Response.Error @@ -3646,7 +3646,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype.Rpc.Block.ListSetBackgroundColor.Response.Error.Code) | | | +| code | [Rpc.Block.ListSetBackgroundColor.Response.Error.Code](#anytype-Rpc-Block-ListSetBackgroundColor-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3654,7 +3654,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetFields @@ -3664,7 +3664,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetFields.Request @@ -3673,14 +3673,14 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| blockFields | [Rpc.Block.ListSetFields.Request.BlockField](#anytype.Rpc.Block.ListSetFields.Request.BlockField) | repeated | | +| blockFields | [Rpc.Block.ListSetFields.Request.BlockField](#anytype-Rpc-Block-ListSetFields-Request-BlockField) | repeated | | - + ### Rpc.Block.ListSetFields.Request.BlockField @@ -3689,14 +3689,14 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | blockId | [string](#string) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Block.ListSetFields.Response @@ -3704,15 +3704,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetFields.Response.Error](#anytype.Rpc.Block.ListSetFields.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.ListSetFields.Response.Error](#anytype-Rpc-Block-ListSetFields-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListSetFields.Response.Error @@ -3720,7 +3720,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetFields.Response.Error.Code](#anytype.Rpc.Block.ListSetFields.Response.Error.Code) | | | +| code | [Rpc.Block.ListSetFields.Response.Error.Code](#anytype-Rpc-Block-ListSetFields-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3728,7 +3728,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetVerticalAlign @@ -3738,7 +3738,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListSetVerticalAlign.Request @@ -3748,14 +3748,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | blockIds | [string](#string) | repeated | | -| verticalAlign | [model.Block.VerticalAlign](#anytype.model.Block.VerticalAlign) | | | +| verticalAlign | [model.Block.VerticalAlign](#anytype-model-Block-VerticalAlign) | | | - + ### Rpc.Block.ListSetVerticalAlign.Response @@ -3763,15 +3763,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.ListSetVerticalAlign.Response.Error](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListSetVerticalAlign.Response.Error @@ -3779,7 +3779,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype.Rpc.Block.ListSetVerticalAlign.Response.Error.Code) | | | +| code | [Rpc.Block.ListSetVerticalAlign.Response.Error.Code](#anytype-Rpc-Block-ListSetVerticalAlign-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3787,7 +3787,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListTurnInto @@ -3797,7 +3797,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListTurnInto.Request @@ -3807,14 +3807,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | - + ### Rpc.Block.ListTurnInto.Response @@ -3822,15 +3822,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.ListTurnInto.Response.Error](#anytype.Rpc.Block.ListTurnInto.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.ListTurnInto.Response.Error](#anytype-Rpc-Block-ListTurnInto-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.ListTurnInto.Response.Error @@ -3838,7 +3838,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype.Rpc.Block.ListTurnInto.Response.Error.Code) | | | +| code | [Rpc.Block.ListTurnInto.Response.Error.Code](#anytype-Rpc-Block-ListTurnInto-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3846,7 +3846,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListUpdate @@ -3856,7 +3856,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.ListUpdate.Request @@ -3866,19 +3866,19 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| text | [Rpc.Block.ListUpdate.Request.Text](#anytype.Rpc.Block.ListUpdate.Request.Text) | | | +| text | [Rpc.Block.ListUpdate.Request.Text](#anytype-Rpc-Block-ListUpdate-Request-Text) | | | | backgroundColor | [string](#string) | | | -| align | [model.Block.Align](#anytype.model.Block.Align) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | -| divStyle | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | -| fileStyle | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | +| align | [model.Block.Align](#anytype-model-Block-Align) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| divStyle | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | +| fileStyle | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | - + ### Rpc.Block.ListUpdate.Request.Text @@ -3886,16 +3886,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | | color | [string](#string) | | | -| mark | [model.Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) | | | +| mark | [model.Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) | | | - + ### Rpc.Block.Merge @@ -3905,7 +3905,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Merge.Request @@ -3922,7 +3922,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Merge.Response @@ -3930,15 +3930,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Merge.Response.Error](#anytype.Rpc.Block.Merge.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.Merge.Response.Error](#anytype-Rpc-Block-Merge-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Merge.Response.Error @@ -3946,7 +3946,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Merge.Response.Error.Code](#anytype.Rpc.Block.Merge.Response.Error.Code) | | | +| code | [Rpc.Block.Merge.Response.Error.Code](#anytype-Rpc-Block-Merge-Response-Error-Code) | | | | description | [string](#string) | | | @@ -3954,7 +3954,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste @@ -3964,7 +3964,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste.Request @@ -3974,20 +3974,20 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | focusedBlockId | [string](#string) | | | -| selectedTextRange | [model.Range](#anytype.model.Range) | | | +| selectedTextRange | [model.Range](#anytype-model-Range) | | | | selectedBlockIds | [string](#string) | repeated | | | isPartOfBlock | [bool](#bool) | | | | textSlot | [string](#string) | | | | htmlSlot | [string](#string) | | | -| anySlot | [model.Block](#anytype.model.Block) | repeated | | -| fileSlot | [Rpc.Block.Paste.Request.File](#anytype.Rpc.Block.Paste.Request.File) | repeated | | +| anySlot | [model.Block](#anytype-model-Block) | repeated | | +| fileSlot | [Rpc.Block.Paste.Request.File](#anytype-Rpc-Block-Paste-Request-File) | repeated | | - + ### Rpc.Block.Paste.Request.File @@ -4004,7 +4004,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Paste.Response @@ -4012,18 +4012,18 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Paste.Response.Error](#anytype.Rpc.Block.Paste.Response.Error) | | | +| error | [Rpc.Block.Paste.Response.Error](#anytype-Rpc-Block-Paste-Response-Error) | | | | blockIds | [string](#string) | repeated | | | caretPosition | [int32](#int32) | | | | isSameBlockCaret | [bool](#bool) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Paste.Response.Error @@ -4031,7 +4031,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Paste.Response.Error.Code](#anytype.Rpc.Block.Paste.Response.Error.Code) | | | +| code | [Rpc.Block.Paste.Response.Error.Code](#anytype-Rpc-Block-Paste-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4039,7 +4039,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Replace @@ -4049,7 +4049,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Replace.Request @@ -4059,14 +4059,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| block | [model.Block](#anytype.model.Block) | | | +| block | [model.Block](#anytype-model-Block) | | | - + ### Rpc.Block.Replace.Response @@ -4074,16 +4074,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Replace.Response.Error](#anytype.Rpc.Block.Replace.Response.Error) | | | +| error | [Rpc.Block.Replace.Response.Error](#anytype-Rpc-Block-Replace-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Replace.Response.Error @@ -4091,7 +4091,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Replace.Response.Error.Code](#anytype.Rpc.Block.Replace.Response.Error.Code) | | | +| code | [Rpc.Block.Replace.Response.Error.Code](#anytype-Rpc-Block-Replace-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4099,7 +4099,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.SetFields @@ -4109,7 +4109,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.SetFields.Request @@ -4119,14 +4119,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Block.SetFields.Response @@ -4134,15 +4134,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.SetFields.Response.Error](#anytype.Rpc.Block.SetFields.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.SetFields.Response.Error](#anytype-Rpc-Block-SetFields-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.SetFields.Response.Error @@ -4150,7 +4150,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.SetFields.Response.Error.Code](#anytype.Rpc.Block.SetFields.Response.Error.Code) | | | +| code | [Rpc.Block.SetFields.Response.Error.Code](#anytype-Rpc-Block-SetFields-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4158,7 +4158,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Split @@ -4168,7 +4168,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Split.Request @@ -4178,16 +4178,16 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| range | [model.Range](#anytype.model.Range) | | | -| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | -| mode | [Rpc.Block.Split.Request.Mode](#anytype.Rpc.Block.Split.Request.Mode) | | | +| range | [model.Range](#anytype-model-Range) | | | +| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| mode | [Rpc.Block.Split.Request.Mode](#anytype-Rpc-Block-Split-Request-Mode) | | | - + ### Rpc.Block.Split.Response @@ -4195,16 +4195,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Split.Response.Error](#anytype.Rpc.Block.Split.Response.Error) | | | +| error | [Rpc.Block.Split.Response.Error](#anytype-Rpc-Block-Split-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Split.Response.Error @@ -4212,7 +4212,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Split.Response.Error.Code](#anytype.Rpc.Block.Split.Response.Error.Code) | | | +| code | [Rpc.Block.Split.Response.Error.Code](#anytype-Rpc-Block-Split-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4220,7 +4220,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload @@ -4230,7 +4230,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload.Request @@ -4248,7 +4248,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.Block.Upload.Response @@ -4256,15 +4256,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Block.Upload.Response.Error](#anytype.Rpc.Block.Upload.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Block.Upload.Response.Error](#anytype-Rpc-Block-Upload-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Block.Upload.Response.Error @@ -4272,7 +4272,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Block.Upload.Response.Error.Code](#anytype.Rpc.Block.Upload.Response.Error.Code) | | | +| code | [Rpc.Block.Upload.Response.Error.Code](#anytype-Rpc-Block-Upload-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4280,7 +4280,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark @@ -4290,7 +4290,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch @@ -4300,7 +4300,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch.Request @@ -4310,7 +4310,7 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | | url | [string](#string) | | | @@ -4318,7 +4318,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.CreateAndFetch.Response @@ -4326,16 +4326,16 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error) | | | +| error | [Rpc.BlockBookmark.CreateAndFetch.Response.Error](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockBookmark.CreateAndFetch.Response.Error @@ -4343,7 +4343,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code) | | | +| code | [Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-CreateAndFetch-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4351,7 +4351,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch @@ -4361,7 +4361,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch.Request @@ -4378,7 +4378,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockBookmark.Fetch.Response @@ -4386,15 +4386,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockBookmark.Fetch.Response.Error](#anytype.Rpc.BlockBookmark.Fetch.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockBookmark.Fetch.Response.Error](#anytype-Rpc-BlockBookmark-Fetch-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockBookmark.Fetch.Response.Error @@ -4402,7 +4402,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype.Rpc.BlockBookmark.Fetch.Response.Error.Code) | | | +| code | [Rpc.BlockBookmark.Fetch.Response.Error.Code](#anytype-Rpc-BlockBookmark-Fetch-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4410,7 +4410,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview @@ -4420,7 +4420,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark @@ -4430,7 +4430,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Request @@ -4447,7 +4447,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Response @@ -4455,7 +4455,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error) | | | +| error | [Rpc.BlockDataview.CreateBookmark.Response.Error](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error) | | | | id | [string](#string) | | | @@ -4463,7 +4463,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateBookmark.Response.Error @@ -4471,7 +4471,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateBookmark.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.CreateBookmark.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateBookmark-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4479,7 +4479,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject @@ -4489,7 +4489,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject.Request @@ -4506,7 +4506,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.CreateFromExistingObject.Response @@ -4514,18 +4514,18 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error) | | | +| error | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error) | | | | blockId | [string](#string) | | | | targetObjectId | [string](#string) | | | -| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | repeated | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | repeated | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.CreateFromExistingObject.Response.Error @@ -4533,7 +4533,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype.Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code](#anytype-Rpc-BlockDataview-CreateFromExistingObject-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4541,7 +4541,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter @@ -4551,7 +4551,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Add @@ -4561,7 +4561,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Add.Request @@ -4572,14 +4572,14 @@ Makes blocks copy by given ids and paste it to shown place | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| filter | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | | | +| filter | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | | | - + ### Rpc.BlockDataview.Filter.Add.Response @@ -4587,15 +4587,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Add.Response.Error](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Add.Response.Error @@ -4603,7 +4603,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Add.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Filter.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4611,7 +4611,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove @@ -4621,7 +4621,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove.Request @@ -4639,7 +4639,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Remove.Response @@ -4647,15 +4647,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Remove.Response.Error](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Remove.Response.Error @@ -4663,7 +4663,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Remove.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Filter.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Remove-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4671,7 +4671,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Replace @@ -4681,7 +4681,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Replace.Request @@ -4693,14 +4693,14 @@ Makes blocks copy by given ids and paste it to shown place | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | | id | [string](#string) | | | -| filter | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | | | +| filter | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | | | - + ### Rpc.BlockDataview.Filter.Replace.Response @@ -4708,15 +4708,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Replace.Response.Error](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Replace.Response.Error @@ -4724,7 +4724,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Replace.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Filter.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Replace-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4732,7 +4732,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort @@ -4742,7 +4742,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort.Request @@ -4760,7 +4760,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Filter.Sort.Response @@ -4768,15 +4768,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Filter.Sort.Response.Error](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Filter.Sort.Response.Error @@ -4784,7 +4784,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Filter.Sort.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Filter.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Filter-Sort-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4792,7 +4792,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder @@ -4802,7 +4802,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder.Update @@ -4812,7 +4812,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.GroupOrder.Update.Request @@ -4822,14 +4822,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) | | | +| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) | | | - + ### Rpc.BlockDataview.GroupOrder.Update.Response @@ -4837,15 +4837,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.GroupOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.GroupOrder.Update.Response.Error @@ -4853,7 +4853,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-GroupOrder-Update-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4861,7 +4861,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder @@ -4871,7 +4871,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move @@ -4881,7 +4881,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move.Request @@ -4901,7 +4901,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Move.Response @@ -4909,15 +4909,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.ObjectOrder.Move.Response.Error @@ -4925,7 +4925,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Move-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4933,7 +4933,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Update @@ -4943,7 +4943,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.ObjectOrder.Update.Request @@ -4953,14 +4953,14 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| objectOrders | [model.Block.Content.Dataview.ObjectOrder](#anytype.model.Block.Content.Dataview.ObjectOrder) | repeated | | +| objectOrders | [model.Block.Content.Dataview.ObjectOrder](#anytype-model-Block-Content-Dataview-ObjectOrder) | repeated | | - + ### Rpc.BlockDataview.ObjectOrder.Update.Response @@ -4968,15 +4968,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.ObjectOrder.Update.Response.Error @@ -4984,7 +4984,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-ObjectOrder-Update-Response-Error-Code) | | | | description | [string](#string) | | | @@ -4992,7 +4992,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation @@ -5002,7 +5002,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add @@ -5012,7 +5012,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add.Request @@ -5029,7 +5029,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Add.Response @@ -5037,15 +5037,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Relation.Add.Response.Error](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Relation.Add.Response.Error @@ -5053,7 +5053,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Add.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Relation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5061,7 +5061,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete @@ -5071,7 +5071,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete.Request @@ -5088,7 +5088,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.Delete.Response @@ -5096,15 +5096,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Relation.Delete.Response.Error](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Relation.Delete.Response.Error @@ -5112,7 +5112,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.Delete.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Relation.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-Delete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5120,7 +5120,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable @@ -5130,7 +5130,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable.Request @@ -5146,7 +5146,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Relation.ListAvailable.Response @@ -5154,15 +5154,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error) | | | -| relations | [model.Relation](#anytype.model.Relation) | repeated | | +| error | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error) | | | +| relations | [model.Relation](#anytype-model-Relation) | repeated | | - + ### Rpc.BlockDataview.Relation.ListAvailable.Response.Error @@ -5170,7 +5170,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype.Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code](#anytype-Rpc-BlockDataview-Relation-ListAvailable-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5178,7 +5178,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource @@ -5188,7 +5188,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource.Request @@ -5205,7 +5205,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.SetSource.Response @@ -5213,15 +5213,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.SetSource.Response.Error](#anytype.Rpc.BlockDataview.SetSource.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.SetSource.Response.Error](#anytype-Rpc-BlockDataview-SetSource-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.SetSource.Response.Error @@ -5229,7 +5229,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype.Rpc.BlockDataview.SetSource.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.SetSource.Response.Error.Code](#anytype-Rpc-BlockDataview-SetSource-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5237,7 +5237,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort @@ -5247,7 +5247,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Add @@ -5257,7 +5257,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Add.Request @@ -5268,14 +5268,14 @@ Makes blocks copy by given ids and paste it to shown place | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| sort | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | | | +| sort | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | | | - + ### Rpc.BlockDataview.Sort.Add.Response @@ -5283,15 +5283,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Add.Response.Error](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Add.Response.Error @@ -5299,7 +5299,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Add.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Sort.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5307,7 +5307,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove @@ -5317,7 +5317,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove.Request @@ -5335,7 +5335,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Remove.Response @@ -5343,15 +5343,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Remove.Response.Error](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Remove.Response.Error @@ -5359,7 +5359,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Remove.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Sort.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Remove-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5367,7 +5367,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Replace @@ -5377,7 +5377,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Replace.Request @@ -5389,14 +5389,14 @@ Makes blocks copy by given ids and paste it to shown place | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | | id | [string](#string) | | | -| sort | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | | | +| sort | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | | | - + ### Rpc.BlockDataview.Sort.Replace.Response @@ -5404,15 +5404,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Replace.Response.Error](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Replace.Response.Error @@ -5420,7 +5420,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Replace.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Sort.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Replace-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5428,7 +5428,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort @@ -5438,7 +5438,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort.Request @@ -5456,7 +5456,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.Sort.Sort.Response @@ -5464,15 +5464,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.Sort.Sort.Response.Error](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.Sort.Sort.Response.Error @@ -5480,7 +5480,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.Sort.Sort.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.Sort.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-Sort-Sort-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5488,7 +5488,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View @@ -5498,7 +5498,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create @@ -5508,7 +5508,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Request @@ -5518,7 +5518,7 @@ Makes blocks copy by given ids and paste it to shown place | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to insert the new block | -| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | | | +| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | | | | source | [string](#string) | repeated | | @@ -5526,7 +5526,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Response @@ -5534,8 +5534,8 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.Create.Response.Error](#anytype.Rpc.BlockDataview.View.Create.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.Create.Response.Error](#anytype-Rpc-BlockDataview-View-Create-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | | viewId | [string](#string) | | | @@ -5543,7 +5543,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Create.Response.Error @@ -5551,7 +5551,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Create.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.View.Create.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Create-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5559,7 +5559,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete @@ -5569,7 +5569,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete.Request @@ -5586,7 +5586,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.Delete.Response @@ -5594,15 +5594,15 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.Delete.Response.Error](#anytype.Rpc.BlockDataview.View.Delete.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.Delete.Response.Error](#anytype-Rpc-BlockDataview-View-Delete-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.View.Delete.Response.Error @@ -5610,7 +5610,7 @@ Makes blocks copy by given ids and paste it to shown place | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Delete.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.View.Delete.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Delete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5618,7 +5618,7 @@ Makes blocks copy by given ids and paste it to shown place - + ### Rpc.BlockDataview.View.SetActive set the current active view (persisted only within a session) @@ -5628,7 +5628,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetActive.Request @@ -5647,7 +5647,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetActive.Response @@ -5655,15 +5655,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.SetActive.Response.Error](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.View.SetActive.Response.Error @@ -5671,7 +5671,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetActive.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.View.SetActive.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetActive-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5679,7 +5679,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition @@ -5689,7 +5689,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition.Request @@ -5707,7 +5707,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.SetPosition.Response @@ -5715,15 +5715,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.SetPosition.Response.Error](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.View.SetPosition.Response.Error @@ -5731,7 +5731,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype.Rpc.BlockDataview.View.SetPosition.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.View.SetPosition.Response.Error.Code](#anytype-Rpc-BlockDataview-View-SetPosition-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5739,7 +5739,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.Update @@ -5749,7 +5749,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.View.Update.Request @@ -5760,14 +5760,14 @@ set the current active view (persisted only within a session) | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | | | +| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | | | - + ### Rpc.BlockDataview.View.Update.Response @@ -5775,15 +5775,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.View.Update.Response.Error](#anytype.Rpc.BlockDataview.View.Update.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.View.Update.Response.Error](#anytype-Rpc-BlockDataview-View-Update-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.View.Update.Response.Error @@ -5791,7 +5791,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype.Rpc.BlockDataview.View.Update.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.View.Update.Response.Error.Code](#anytype-Rpc-BlockDataview-View-Update-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5799,7 +5799,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation @@ -5809,7 +5809,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Add @@ -5819,7 +5819,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Add.Request @@ -5830,14 +5830,14 @@ set the current active view (persisted only within a session) | contextId | [string](#string) | | | | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | -| relation | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | | | +| relation | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | | | - + ### Rpc.BlockDataview.ViewRelation.Add.Response @@ -5845,15 +5845,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Add.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Add.Response.Error @@ -5861,7 +5861,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5869,7 +5869,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove @@ -5879,7 +5879,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove.Request @@ -5897,7 +5897,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Remove.Response @@ -5905,15 +5905,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Remove.Response.Error @@ -5921,7 +5921,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Remove-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5929,7 +5929,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Replace @@ -5939,7 +5939,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Replace.Request @@ -5951,14 +5951,14 @@ set the current active view (persisted only within a session) | blockId | [string](#string) | | id of dataview block to update | | viewId | [string](#string) | | id of view to update | | relationKey | [string](#string) | | | -| relation | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | | | +| relation | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | | | - + ### Rpc.BlockDataview.ViewRelation.Replace.Response @@ -5966,15 +5966,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Replace.Response.Error @@ -5982,7 +5982,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Replace-Response-Error-Code) | | | | description | [string](#string) | | | @@ -5990,7 +5990,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort @@ -6000,7 +6000,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort.Request @@ -6018,7 +6018,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDataview.ViewRelation.Sort.Response @@ -6026,15 +6026,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDataview.ViewRelation.Sort.Response.Error @@ -6042,7 +6042,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype.Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code) | | | +| code | [Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code](#anytype-Rpc-BlockDataview-ViewRelation-Sort-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6050,7 +6050,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv @@ -6060,7 +6060,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv.ListSetStyle @@ -6070,7 +6070,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockDiv.ListSetStyle.Request @@ -6080,14 +6080,14 @@ set the current active view (persisted only within a session) | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | +| style | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | - + ### Rpc.BlockDiv.ListSetStyle.Response @@ -6095,15 +6095,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockDiv.ListSetStyle.Response.Error](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockDiv.ListSetStyle.Response.Error @@ -6111,7 +6111,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockDiv.ListSetStyle.Response.Error.Code) | | | +| code | [Rpc.BlockDiv.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockDiv-ListSetStyle-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6119,7 +6119,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile @@ -6129,7 +6129,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.CreateAndUpload @@ -6139,7 +6139,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.CreateAndUpload.Request @@ -6149,17 +6149,17 @@ set the current active view (persisted only within a session) | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | targetId | [string](#string) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | | url | [string](#string) | | | | localPath | [string](#string) | | | -| fileType | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | +| fileType | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | - + ### Rpc.BlockFile.CreateAndUpload.Response @@ -6167,16 +6167,16 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error) | | | +| error | [Rpc.BlockFile.CreateAndUpload.Response.Error](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockFile.CreateAndUpload.Response.Error @@ -6184,7 +6184,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype.Rpc.BlockFile.CreateAndUpload.Response.Error.Code) | | | +| code | [Rpc.BlockFile.CreateAndUpload.Response.Error.Code](#anytype-Rpc-BlockFile-CreateAndUpload-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6192,7 +6192,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.ListSetStyle @@ -6202,7 +6202,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.ListSetStyle.Request @@ -6212,14 +6212,14 @@ set the current active view (persisted only within a session) | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | +| style | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | - + ### Rpc.BlockFile.ListSetStyle.Response @@ -6227,15 +6227,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockFile.ListSetStyle.Response.Error](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockFile.ListSetStyle.Response.Error @@ -6243,7 +6243,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockFile.ListSetStyle.Response.Error.Code) | | | +| code | [Rpc.BlockFile.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockFile-ListSetStyle-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6251,7 +6251,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName @@ -6261,7 +6261,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName.Request @@ -6278,7 +6278,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockFile.SetName.Response @@ -6286,15 +6286,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockFile.SetName.Response.Error](#anytype.Rpc.BlockFile.SetName.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockFile.SetName.Response.Error](#anytype-Rpc-BlockFile-SetName-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockFile.SetName.Response.Error @@ -6302,7 +6302,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockFile.SetName.Response.Error.Code](#anytype.Rpc.BlockFile.SetName.Response.Error.Code) | | | +| code | [Rpc.BlockFile.SetName.Response.Error.Code](#anytype-Rpc-BlockFile-SetName-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6310,7 +6310,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage @@ -6320,7 +6320,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName @@ -6330,7 +6330,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName.Request @@ -6347,7 +6347,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetName.Response @@ -6355,14 +6355,14 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockImage.SetName.Response.Error](#anytype.Rpc.BlockImage.SetName.Response.Error) | | | +| error | [Rpc.BlockImage.SetName.Response.Error](#anytype-Rpc-BlockImage-SetName-Response-Error) | | | - + ### Rpc.BlockImage.SetName.Response.Error @@ -6370,7 +6370,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockImage.SetName.Response.Error.Code](#anytype.Rpc.BlockImage.SetName.Response.Error.Code) | | | +| code | [Rpc.BlockImage.SetName.Response.Error.Code](#anytype-Rpc-BlockImage-SetName-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6378,7 +6378,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth @@ -6388,7 +6388,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth.Request @@ -6405,7 +6405,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockImage.SetWidth.Response @@ -6413,14 +6413,14 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockImage.SetWidth.Response.Error](#anytype.Rpc.BlockImage.SetWidth.Response.Error) | | | +| error | [Rpc.BlockImage.SetWidth.Response.Error](#anytype-Rpc-BlockImage-SetWidth-Response-Error) | | | - + ### Rpc.BlockImage.SetWidth.Response.Error @@ -6428,7 +6428,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype.Rpc.BlockImage.SetWidth.Response.Error.Code) | | | +| code | [Rpc.BlockImage.SetWidth.Response.Error.Code](#anytype-Rpc-BlockImage-SetWidth-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6436,7 +6436,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex @@ -6446,7 +6446,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText @@ -6456,7 +6456,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText.Request @@ -6473,7 +6473,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLatex.SetText.Response @@ -6481,15 +6481,15 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockLatex.SetText.Response.Error](#anytype.Rpc.BlockLatex.SetText.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockLatex.SetText.Response.Error](#anytype-Rpc-BlockLatex-SetText-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockLatex.SetText.Response.Error @@ -6497,7 +6497,7 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype.Rpc.BlockLatex.SetText.Response.Error.Code) | | | +| code | [Rpc.BlockLatex.SetText.Response.Error.Code](#anytype-Rpc-BlockLatex-SetText-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6505,7 +6505,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink @@ -6515,7 +6515,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink.CreateWithObject @@ -6525,7 +6525,7 @@ set the current active view (persisted only within a session) - + ### Rpc.BlockLink.CreateWithObject.Request @@ -6534,21 +6534,21 @@ set the current active view (persisted only within a session) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | new object details | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | new object details | | templateId | [string](#string) | | optional template id for creating from template | -| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | +| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | | targetId | [string](#string) | | link block params id of the closest simple block | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | link block fields | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | link block fields | - + ### Rpc.BlockLink.CreateWithObject.Response @@ -6556,17 +6556,17 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error) | | | +| error | [Rpc.BlockLink.CreateWithObject.Response.Error](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error) | | | | blockId | [string](#string) | | | | targetId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockLink.CreateWithObject.Response.Error @@ -6574,7 +6574,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype.Rpc.BlockLink.CreateWithObject.Response.Error.Code) | | | +| code | [Rpc.BlockLink.CreateWithObject.Response.Error.Code](#anytype-Rpc-BlockLink-CreateWithObject-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6582,7 +6582,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance @@ -6592,7 +6592,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance.Request @@ -6602,9 +6602,9 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| iconSize | [model.Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) | | | -| cardStyle | [model.Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) | | | -| description | [model.Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) | | | +| iconSize | [model.Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) | | | +| cardStyle | [model.Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) | | | +| description | [model.Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) | | | | relations | [string](#string) | repeated | | @@ -6612,7 +6612,7 @@ id of the closest simple block | - + ### Rpc.BlockLink.ListSetAppearance.Response @@ -6620,15 +6620,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockLink.ListSetAppearance.Response.Error](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockLink.ListSetAppearance.Response.Error @@ -6636,7 +6636,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype.Rpc.BlockLink.ListSetAppearance.Response.Error.Code) | | | +| code | [Rpc.BlockLink.ListSetAppearance.Response.Error.Code](#anytype-Rpc-BlockLink-ListSetAppearance-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6644,7 +6644,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation @@ -6654,7 +6654,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add @@ -6664,7 +6664,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add.Request @@ -6681,7 +6681,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.Add.Response @@ -6689,15 +6689,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockRelation.Add.Response.Error](#anytype.Rpc.BlockRelation.Add.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockRelation.Add.Response.Error](#anytype-Rpc-BlockRelation-Add-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockRelation.Add.Response.Error @@ -6705,7 +6705,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockRelation.Add.Response.Error.Code](#anytype.Rpc.BlockRelation.Add.Response.Error.Code) | | | +| code | [Rpc.BlockRelation.Add.Response.Error.Code](#anytype-Rpc-BlockRelation-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6713,7 +6713,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey @@ -6723,7 +6723,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey.Request @@ -6740,7 +6740,7 @@ id of the closest simple block | - + ### Rpc.BlockRelation.SetKey.Response @@ -6748,15 +6748,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockRelation.SetKey.Response.Error](#anytype.Rpc.BlockRelation.SetKey.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockRelation.SetKey.Response.Error](#anytype-Rpc-BlockRelation-SetKey-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockRelation.SetKey.Response.Error @@ -6764,7 +6764,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype.Rpc.BlockRelation.SetKey.Response.Error.Code) | | | +| code | [Rpc.BlockRelation.SetKey.Response.Error.Code](#anytype-Rpc-BlockRelation-SetKey-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6772,7 +6772,7 @@ id of the closest simple block | - + ### Rpc.BlockTable @@ -6782,7 +6782,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnCreate @@ -6792,7 +6792,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnCreate.Request @@ -6802,14 +6802,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest column | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | - + ### Rpc.BlockTable.ColumnCreate.Response @@ -6817,15 +6817,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnCreate.Response.Error](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnCreate.Response.Error @@ -6833,7 +6833,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnCreate.Response.Error.Code) | | | +| code | [Rpc.BlockTable.ColumnCreate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnCreate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6841,7 +6841,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete @@ -6851,7 +6851,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete.Request @@ -6867,7 +6867,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDelete.Response @@ -6875,15 +6875,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnDelete.Response.Error](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnDelete.Response.Error @@ -6891,7 +6891,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDelete.Response.Error.Code) | | | +| code | [Rpc.BlockTable.ColumnDelete.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDelete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6899,7 +6899,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDuplicate @@ -6909,7 +6909,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnDuplicate.Request @@ -6920,14 +6920,14 @@ id of the closest simple block | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | | | blockId | [string](#string) | | block to duplicate | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | - + ### Rpc.BlockTable.ColumnDuplicate.Response @@ -6935,16 +6935,16 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error) | | | +| error | [Rpc.BlockTable.ColumnDuplicate.Response.Error](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnDuplicate.Response.Error @@ -6952,7 +6952,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnDuplicate.Response.Error.Code) | | | +| code | [Rpc.BlockTable.ColumnDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnDuplicate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -6960,7 +6960,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill @@ -6970,7 +6970,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill.Request @@ -6986,7 +6986,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnListFill.Response @@ -6994,15 +6994,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnListFill.Response.Error](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnListFill.Response.Error @@ -7010,7 +7010,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnListFill.Response.Error.Code) | | | +| code | [Rpc.BlockTable.ColumnListFill.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnListFill-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7018,7 +7018,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnMove @@ -7028,7 +7028,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.ColumnMove.Request @@ -7039,14 +7039,14 @@ id of the closest simple block | | contextId | [string](#string) | | | | targetId | [string](#string) | | | | dropTargetId | [string](#string) | | | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | - + ### Rpc.BlockTable.ColumnMove.Response @@ -7054,15 +7054,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.ColumnMove.Response.Error](#anytype.Rpc.BlockTable.ColumnMove.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.ColumnMove.Response.Error](#anytype-Rpc-BlockTable-ColumnMove-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.ColumnMove.Response.Error @@ -7070,7 +7070,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype.Rpc.BlockTable.ColumnMove.Response.Error.Code) | | | +| code | [Rpc.BlockTable.ColumnMove.Response.Error.Code](#anytype-Rpc-BlockTable-ColumnMove-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7078,7 +7078,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create @@ -7088,7 +7088,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create.Request @@ -7098,7 +7098,7 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest block | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | | rows | [uint32](#uint32) | | | | columns | [uint32](#uint32) | | | | withHeaderRow | [bool](#bool) | | | @@ -7108,7 +7108,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Create.Response @@ -7116,16 +7116,16 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.Create.Response.Error](#anytype.Rpc.BlockTable.Create.Response.Error) | | | +| error | [Rpc.BlockTable.Create.Response.Error](#anytype-Rpc-BlockTable-Create-Response-Error) | | | | blockId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.Create.Response.Error @@ -7133,7 +7133,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.Create.Response.Error.Code](#anytype.Rpc.BlockTable.Create.Response.Error.Code) | | | +| code | [Rpc.BlockTable.Create.Response.Error.Code](#anytype-Rpc-BlockTable-Create-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7141,7 +7141,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand @@ -7151,7 +7151,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand.Request @@ -7169,7 +7169,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Expand.Response @@ -7177,15 +7177,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.Expand.Response.Error](#anytype.Rpc.BlockTable.Expand.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.Expand.Response.Error](#anytype-Rpc-BlockTable-Expand-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.Expand.Response.Error @@ -7193,7 +7193,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.Expand.Response.Error.Code](#anytype.Rpc.BlockTable.Expand.Response.Error.Code) | | | +| code | [Rpc.BlockTable.Expand.Response.Error.Code](#anytype-Rpc-BlockTable-Expand-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7201,7 +7201,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowCreate @@ -7211,7 +7211,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowCreate.Request @@ -7221,14 +7221,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | id of the closest row | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | - + ### Rpc.BlockTable.RowCreate.Response @@ -7236,15 +7236,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowCreate.Response.Error](#anytype.Rpc.BlockTable.RowCreate.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.RowCreate.Response.Error](#anytype-Rpc-BlockTable-RowCreate-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.RowCreate.Response.Error @@ -7252,7 +7252,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype.Rpc.BlockTable.RowCreate.Response.Error.Code) | | | +| code | [Rpc.BlockTable.RowCreate.Response.Error.Code](#anytype-Rpc-BlockTable-RowCreate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7260,7 +7260,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete @@ -7270,7 +7270,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete.Request @@ -7286,7 +7286,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDelete.Response @@ -7294,15 +7294,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowDelete.Response.Error](#anytype.Rpc.BlockTable.RowDelete.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.RowDelete.Response.Error](#anytype-Rpc-BlockTable-RowDelete-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.RowDelete.Response.Error @@ -7310,7 +7310,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype.Rpc.BlockTable.RowDelete.Response.Error.Code) | | | +| code | [Rpc.BlockTable.RowDelete.Response.Error.Code](#anytype-Rpc-BlockTable-RowDelete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7318,7 +7318,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDuplicate @@ -7328,7 +7328,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowDuplicate.Request @@ -7339,14 +7339,14 @@ id of the closest simple block | | contextId | [string](#string) | | id of the context object | | targetId | [string](#string) | | | | blockId | [string](#string) | | block to duplicate | -| position | [model.Block.Position](#anytype.model.Block.Position) | | | +| position | [model.Block.Position](#anytype-model-Block-Position) | | | - + ### Rpc.BlockTable.RowDuplicate.Response @@ -7354,15 +7354,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.RowDuplicate.Response.Error](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.RowDuplicate.Response.Error @@ -7370,7 +7370,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype.Rpc.BlockTable.RowDuplicate.Response.Error.Code) | | | +| code | [Rpc.BlockTable.RowDuplicate.Response.Error.Code](#anytype-Rpc-BlockTable-RowDuplicate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7378,7 +7378,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean @@ -7388,7 +7388,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean.Request @@ -7404,7 +7404,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListClean.Response @@ -7412,15 +7412,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowListClean.Response.Error](#anytype.Rpc.BlockTable.RowListClean.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.RowListClean.Response.Error](#anytype-Rpc-BlockTable-RowListClean-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.RowListClean.Response.Error @@ -7428,7 +7428,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype.Rpc.BlockTable.RowListClean.Response.Error.Code) | | | +| code | [Rpc.BlockTable.RowListClean.Response.Error.Code](#anytype-Rpc-BlockTable-RowListClean-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7436,7 +7436,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill @@ -7446,7 +7446,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill.Request @@ -7462,7 +7462,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowListFill.Response @@ -7470,15 +7470,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowListFill.Response.Error](#anytype.Rpc.BlockTable.RowListFill.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.RowListFill.Response.Error](#anytype-Rpc-BlockTable-RowListFill-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.RowListFill.Response.Error @@ -7486,7 +7486,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype.Rpc.BlockTable.RowListFill.Response.Error.Code) | | | +| code | [Rpc.BlockTable.RowListFill.Response.Error.Code](#anytype-Rpc-BlockTable-RowListFill-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7494,7 +7494,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader @@ -7504,7 +7504,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader.Request @@ -7521,7 +7521,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.RowSetHeader.Response @@ -7529,15 +7529,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.RowSetHeader.Response.Error](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.RowSetHeader.Response.Error @@ -7545,7 +7545,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype.Rpc.BlockTable.RowSetHeader.Response.Error.Code) | | | +| code | [Rpc.BlockTable.RowSetHeader.Response.Error.Code](#anytype-Rpc-BlockTable-RowSetHeader-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7553,7 +7553,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Sort @@ -7563,7 +7563,7 @@ id of the closest simple block | - + ### Rpc.BlockTable.Sort.Request @@ -7573,14 +7573,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | id of the context object | | columnId | [string](#string) | | | -| type | [model.Block.Content.Dataview.Sort.Type](#anytype.model.Block.Content.Dataview.Sort.Type) | | | +| type | [model.Block.Content.Dataview.Sort.Type](#anytype-model-Block-Content-Dataview-Sort-Type) | | | - + ### Rpc.BlockTable.Sort.Response @@ -7588,15 +7588,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockTable.Sort.Response.Error](#anytype.Rpc.BlockTable.Sort.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockTable.Sort.Response.Error](#anytype-Rpc-BlockTable-Sort-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockTable.Sort.Response.Error @@ -7604,7 +7604,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockTable.Sort.Response.Error.Code](#anytype.Rpc.BlockTable.Sort.Response.Error.Code) | | | +| code | [Rpc.BlockTable.Sort.Response.Error.Code](#anytype-Rpc-BlockTable-Sort-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7612,7 +7612,7 @@ id of the closest simple block | - + ### Rpc.BlockText @@ -7622,7 +7622,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent @@ -7632,7 +7632,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent.Request @@ -7648,7 +7648,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearContent.Response @@ -7656,15 +7656,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListClearContent.Response.Error](#anytype.Rpc.BlockText.ListClearContent.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.ListClearContent.Response.Error](#anytype-Rpc-BlockText-ListClearContent-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.ListClearContent.Response.Error @@ -7672,7 +7672,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype.Rpc.BlockText.ListClearContent.Response.Error.Code) | | | +| code | [Rpc.BlockText.ListClearContent.Response.Error.Code](#anytype-Rpc-BlockText-ListClearContent-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7680,7 +7680,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle @@ -7690,7 +7690,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle.Request @@ -7706,7 +7706,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListClearStyle.Response @@ -7714,15 +7714,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListClearStyle.Response.Error](#anytype.Rpc.BlockText.ListClearStyle.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.ListClearStyle.Response.Error](#anytype-Rpc-BlockText-ListClearStyle-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.ListClearStyle.Response.Error @@ -7730,7 +7730,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListClearStyle.Response.Error.Code) | | | +| code | [Rpc.BlockText.ListClearStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListClearStyle-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7738,7 +7738,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor @@ -7748,7 +7748,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor.Request @@ -7765,7 +7765,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetColor.Response @@ -7773,15 +7773,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListSetColor.Response.Error](#anytype.Rpc.BlockText.ListSetColor.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.ListSetColor.Response.Error](#anytype-Rpc-BlockText-ListSetColor-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.ListSetColor.Response.Error @@ -7789,7 +7789,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype.Rpc.BlockText.ListSetColor.Response.Error.Code) | | | +| code | [Rpc.BlockText.ListSetColor.Response.Error.Code](#anytype-Rpc-BlockText-ListSetColor-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7797,7 +7797,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetMark @@ -7807,7 +7807,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetMark.Request @@ -7817,14 +7817,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| mark | [model.Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) | | | +| mark | [model.Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) | | | - + ### Rpc.BlockText.ListSetMark.Response @@ -7832,15 +7832,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListSetMark.Response.Error](#anytype.Rpc.BlockText.ListSetMark.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.ListSetMark.Response.Error](#anytype-Rpc-BlockText-ListSetMark-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.ListSetMark.Response.Error @@ -7848,7 +7848,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype.Rpc.BlockText.ListSetMark.Response.Error.Code) | | | +| code | [Rpc.BlockText.ListSetMark.Response.Error.Code](#anytype-Rpc-BlockText-ListSetMark-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7856,7 +7856,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetStyle @@ -7866,7 +7866,7 @@ id of the closest simple block | - + ### Rpc.BlockText.ListSetStyle.Request @@ -7876,14 +7876,14 @@ id of the closest simple block | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockIds | [string](#string) | repeated | | -| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | - + ### Rpc.BlockText.ListSetStyle.Response @@ -7891,15 +7891,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.ListSetStyle.Response.Error](#anytype.Rpc.BlockText.ListSetStyle.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.ListSetStyle.Response.Error](#anytype-Rpc-BlockText-ListSetStyle-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.ListSetStyle.Response.Error @@ -7907,7 +7907,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype.Rpc.BlockText.ListSetStyle.Response.Error.Code) | | | +| code | [Rpc.BlockText.ListSetStyle.Response.Error.Code](#anytype-Rpc-BlockText-ListSetStyle-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7915,7 +7915,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked @@ -7925,7 +7925,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked.Request @@ -7942,7 +7942,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetChecked.Response @@ -7950,15 +7950,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetChecked.Response.Error](#anytype.Rpc.BlockText.SetChecked.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.SetChecked.Response.Error](#anytype-Rpc-BlockText-SetChecked-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.SetChecked.Response.Error @@ -7966,7 +7966,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype.Rpc.BlockText.SetChecked.Response.Error.Code) | | | +| code | [Rpc.BlockText.SetChecked.Response.Error.Code](#anytype-Rpc-BlockText-SetChecked-Response-Error-Code) | | | | description | [string](#string) | | | @@ -7974,7 +7974,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor @@ -7984,7 +7984,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor.Request @@ -8001,7 +8001,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetColor.Response @@ -8009,15 +8009,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetColor.Response.Error](#anytype.Rpc.BlockText.SetColor.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.SetColor.Response.Error](#anytype-Rpc-BlockText-SetColor-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.SetColor.Response.Error @@ -8025,7 +8025,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetColor.Response.Error.Code](#anytype.Rpc.BlockText.SetColor.Response.Error.Code) | | | +| code | [Rpc.BlockText.SetColor.Response.Error.Code](#anytype-Rpc-BlockText-SetColor-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8033,7 +8033,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon @@ -8043,7 +8043,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon.Request @@ -8061,7 +8061,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetIcon.Response @@ -8069,15 +8069,15 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetIcon.Response.Error](#anytype.Rpc.BlockText.SetIcon.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.SetIcon.Response.Error](#anytype-Rpc-BlockText-SetIcon-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.SetIcon.Response.Error @@ -8085,7 +8085,7 @@ id of the closest simple block | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype.Rpc.BlockText.SetIcon.Response.Error.Code) | | | +| code | [Rpc.BlockText.SetIcon.Response.Error.Code](#anytype-Rpc-BlockText-SetIcon-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8093,7 +8093,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetMarks @@ -8103,7 +8103,7 @@ id of the closest simple block | - + ### Rpc.BlockText.SetMarks.Get Get marks list in the selected range in text block. @@ -8113,7 +8113,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetMarks.Get.Request @@ -8123,14 +8123,14 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| range | [model.Range](#anytype.model.Range) | | | +| range | [model.Range](#anytype-model-Range) | | | - + ### Rpc.BlockText.SetMarks.Get.Response @@ -8138,15 +8138,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.SetMarks.Get.Response.Error](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.SetMarks.Get.Response.Error @@ -8154,7 +8154,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype.Rpc.BlockText.SetMarks.Get.Response.Error.Code) | | | +| code | [Rpc.BlockText.SetMarks.Get.Response.Error.Code](#anytype-Rpc-BlockText-SetMarks-Get-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8162,7 +8162,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetStyle @@ -8172,7 +8172,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetStyle.Request @@ -8182,14 +8182,14 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| style | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| style | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | - + ### Rpc.BlockText.SetStyle.Response @@ -8197,15 +8197,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetStyle.Response.Error](#anytype.Rpc.BlockText.SetStyle.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.SetStyle.Response.Error](#anytype-Rpc-BlockText-SetStyle-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.SetStyle.Response.Error @@ -8213,7 +8213,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype.Rpc.BlockText.SetStyle.Response.Error.Code) | | | +| code | [Rpc.BlockText.SetStyle.Response.Error.Code](#anytype-Rpc-BlockText-SetStyle-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8221,7 +8221,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetText @@ -8231,7 +8231,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockText.SetText.Request @@ -8242,14 +8242,14 @@ Get marks list in the selected range in text block. | contextId | [string](#string) | | | | blockId | [string](#string) | | | | text | [string](#string) | | | -| marks | [model.Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | | +| marks | [model.Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | | - + ### Rpc.BlockText.SetText.Response @@ -8257,15 +8257,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockText.SetText.Response.Error](#anytype.Rpc.BlockText.SetText.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockText.SetText.Response.Error](#anytype-Rpc-BlockText-SetText-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockText.SetText.Response.Error @@ -8273,7 +8273,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockText.SetText.Response.Error.Code](#anytype.Rpc.BlockText.SetText.Response.Error.Code) | | | +| code | [Rpc.BlockText.SetText.Response.Error.Code](#anytype-Rpc-BlockText-SetText-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8281,7 +8281,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo @@ -8291,7 +8291,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName @@ -8301,7 +8301,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName.Request @@ -8318,7 +8318,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetName.Response @@ -8326,14 +8326,14 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockVideo.SetName.Response.Error](#anytype.Rpc.BlockVideo.SetName.Response.Error) | | | +| error | [Rpc.BlockVideo.SetName.Response.Error](#anytype-Rpc-BlockVideo-SetName-Response-Error) | | | - + ### Rpc.BlockVideo.SetName.Response.Error @@ -8341,7 +8341,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype.Rpc.BlockVideo.SetName.Response.Error.Code) | | | +| code | [Rpc.BlockVideo.SetName.Response.Error.Code](#anytype-Rpc-BlockVideo-SetName-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8349,7 +8349,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth @@ -8359,7 +8359,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth.Request @@ -8376,7 +8376,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockVideo.SetWidth.Response @@ -8384,14 +8384,14 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockVideo.SetWidth.Response.Error](#anytype.Rpc.BlockVideo.SetWidth.Response.Error) | | | +| error | [Rpc.BlockVideo.SetWidth.Response.Error](#anytype-Rpc-BlockVideo-SetWidth-Response-Error) | | | - + ### Rpc.BlockVideo.SetWidth.Response.Error @@ -8399,7 +8399,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype.Rpc.BlockVideo.SetWidth.Response.Error.Code) | | | +| code | [Rpc.BlockVideo.SetWidth.Response.Error.Code](#anytype-Rpc-BlockVideo-SetWidth-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8407,7 +8407,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget @@ -8417,7 +8417,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetLayout @@ -8427,7 +8427,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetLayout.Request @@ -8437,14 +8437,14 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | blockId | [string](#string) | | | -| layout | [model.Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) | | | +| layout | [model.Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) | | | - + ### Rpc.BlockWidget.SetLayout.Response @@ -8452,15 +8452,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockWidget.SetLayout.Response.Error](#anytype.Rpc.BlockWidget.SetLayout.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockWidget.SetLayout.Response.Error](#anytype-Rpc-BlockWidget-SetLayout-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockWidget.SetLayout.Response.Error @@ -8468,7 +8468,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockWidget.SetLayout.Response.Error.Code](#anytype.Rpc.BlockWidget.SetLayout.Response.Error.Code) | | | +| code | [Rpc.BlockWidget.SetLayout.Response.Error.Code](#anytype-Rpc-BlockWidget-SetLayout-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8476,7 +8476,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetLimit @@ -8486,7 +8486,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetLimit.Request @@ -8503,7 +8503,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetLimit.Response @@ -8511,15 +8511,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockWidget.SetLimit.Response.Error](#anytype.Rpc.BlockWidget.SetLimit.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockWidget.SetLimit.Response.Error](#anytype-Rpc-BlockWidget-SetLimit-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockWidget.SetLimit.Response.Error @@ -8527,7 +8527,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockWidget.SetLimit.Response.Error.Code](#anytype.Rpc.BlockWidget.SetLimit.Response.Error.Code) | | | +| code | [Rpc.BlockWidget.SetLimit.Response.Error.Code](#anytype-Rpc-BlockWidget-SetLimit-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8535,7 +8535,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetTargetId @@ -8545,7 +8545,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetTargetId.Request @@ -8562,7 +8562,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetTargetId.Response @@ -8570,15 +8570,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockWidget.SetTargetId.Response.Error](#anytype.Rpc.BlockWidget.SetTargetId.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockWidget.SetTargetId.Response.Error](#anytype-Rpc-BlockWidget-SetTargetId-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockWidget.SetTargetId.Response.Error @@ -8586,7 +8586,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockWidget.SetTargetId.Response.Error.Code](#anytype.Rpc.BlockWidget.SetTargetId.Response.Error.Code) | | | +| code | [Rpc.BlockWidget.SetTargetId.Response.Error.Code](#anytype-Rpc-BlockWidget-SetTargetId-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8594,7 +8594,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetViewId @@ -8604,7 +8604,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetViewId.Request @@ -8621,7 +8621,7 @@ Get marks list in the selected range in text block. - + ### Rpc.BlockWidget.SetViewId.Response @@ -8629,15 +8629,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.BlockWidget.SetViewId.Response.Error](#anytype.Rpc.BlockWidget.SetViewId.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.BlockWidget.SetViewId.Response.Error](#anytype-Rpc-BlockWidget-SetViewId-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.BlockWidget.SetViewId.Response.Error @@ -8645,7 +8645,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.BlockWidget.SetViewId.Response.Error.Code](#anytype.Rpc.BlockWidget.SetViewId.Response.Error.Code) | | | +| code | [Rpc.BlockWidget.SetViewId.Response.Error.Code](#anytype-Rpc-BlockWidget-SetViewId-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8653,7 +8653,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug @@ -8663,7 +8663,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore @@ -8673,7 +8673,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore.Request @@ -8689,7 +8689,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.ExportLocalstore.Response @@ -8697,16 +8697,16 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.ExportLocalstore.Response.Error](#anytype.Rpc.Debug.ExportLocalstore.Response.Error) | | | +| error | [Rpc.Debug.ExportLocalstore.Response.Error](#anytype-Rpc-Debug-ExportLocalstore-Response-Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Debug.ExportLocalstore.Response.Error @@ -8714,7 +8714,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype.Rpc.Debug.ExportLocalstore.Response.Error.Code) | | | +| code | [Rpc.Debug.ExportLocalstore.Response.Error.Code](#anytype-Rpc-Debug-ExportLocalstore-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8722,7 +8722,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping @@ -8732,7 +8732,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Request @@ -8748,7 +8748,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Response @@ -8756,7 +8756,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.Ping.Response.Error](#anytype.Rpc.Debug.Ping.Response.Error) | | | +| error | [Rpc.Debug.Ping.Response.Error](#anytype-Rpc-Debug-Ping-Response-Error) | | | | index | [int32](#int32) | | | @@ -8764,7 +8764,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Ping.Response.Error @@ -8772,7 +8772,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.Ping.Response.Error.Code](#anytype.Rpc.Debug.Ping.Response.Error.Code) | | | +| code | [Rpc.Debug.Ping.Response.Error.Code](#anytype-Rpc-Debug-Ping-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8780,7 +8780,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary @@ -8790,7 +8790,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary.Request @@ -8800,7 +8800,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.SpaceSummary.Response @@ -8808,16 +8808,16 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.SpaceSummary.Response.Error](#anytype.Rpc.Debug.SpaceSummary.Response.Error) | | | +| error | [Rpc.Debug.SpaceSummary.Response.Error](#anytype-Rpc-Debug-SpaceSummary-Response-Error) | | | | spaceId | [string](#string) | | | -| infos | [Rpc.Debug.TreeInfo](#anytype.Rpc.Debug.TreeInfo) | repeated | | +| infos | [Rpc.Debug.TreeInfo](#anytype-Rpc-Debug-TreeInfo) | repeated | | - + ### Rpc.Debug.SpaceSummary.Response.Error @@ -8825,7 +8825,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype.Rpc.Debug.SpaceSummary.Response.Error.Code) | | | +| code | [Rpc.Debug.SpaceSummary.Response.Error.Code](#anytype-Rpc-Debug-SpaceSummary-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8833,7 +8833,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree @@ -8843,7 +8843,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Request @@ -8861,7 +8861,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Response @@ -8869,7 +8869,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.Tree.Response.Error](#anytype.Rpc.Debug.Tree.Response.Error) | | | +| error | [Rpc.Debug.Tree.Response.Error](#anytype-Rpc-Debug-Tree-Response-Error) | | | | filename | [string](#string) | | | @@ -8877,7 +8877,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.Tree.Response.Error @@ -8885,7 +8885,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.Tree.Response.Error.Code](#anytype.Rpc.Debug.Tree.Response.Error.Code) | | | +| code | [Rpc.Debug.Tree.Response.Error.Code](#anytype-Rpc-Debug-Tree-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8893,7 +8893,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads @@ -8903,7 +8903,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads.Request @@ -8918,7 +8918,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeHeads.Response @@ -8926,16 +8926,16 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Debug.TreeHeads.Response.Error](#anytype.Rpc.Debug.TreeHeads.Response.Error) | | | +| error | [Rpc.Debug.TreeHeads.Response.Error](#anytype-Rpc-Debug-TreeHeads-Response-Error) | | | | spaceId | [string](#string) | | | -| info | [Rpc.Debug.TreeInfo](#anytype.Rpc.Debug.TreeInfo) | | | +| info | [Rpc.Debug.TreeInfo](#anytype-Rpc-Debug-TreeInfo) | | | - + ### Rpc.Debug.TreeHeads.Response.Error @@ -8943,7 +8943,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype.Rpc.Debug.TreeHeads.Response.Error.Code) | | | +| code | [Rpc.Debug.TreeHeads.Response.Error.Code](#anytype-Rpc-Debug-TreeHeads-Response-Error-Code) | | | | description | [string](#string) | | | @@ -8951,7 +8951,7 @@ Get marks list in the selected range in text block. - + ### Rpc.Debug.TreeInfo @@ -8967,7 +8967,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File @@ -8977,7 +8977,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download @@ -8987,7 +8987,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Request @@ -9003,7 +9003,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Response @@ -9011,7 +9011,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Download.Response.Error](#anytype.Rpc.File.Download.Response.Error) | | | +| error | [Rpc.File.Download.Response.Error](#anytype-Rpc-File-Download-Response-Error) | | | | localPath | [string](#string) | | | @@ -9019,7 +9019,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Download.Response.Error @@ -9027,7 +9027,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Download.Response.Error.Code](#anytype.Rpc.File.Download.Response.Error.Code) | | | +| code | [Rpc.File.Download.Response.Error.Code](#anytype-Rpc-File-Download-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9035,7 +9035,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop @@ -9045,7 +9045,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop.Request @@ -9055,7 +9055,7 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | | dropTargetId | [string](#string) | | id of the simple block to insert considering position | -| position | [model.Block.Position](#anytype.model.Block.Position) | | position relatively to the dropTargetId simple block | +| position | [model.Block.Position](#anytype-model-Block-Position) | | position relatively to the dropTargetId simple block | | localFilePaths | [string](#string) | repeated | | @@ -9063,7 +9063,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Drop.Response @@ -9071,15 +9071,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Drop.Response.Error](#anytype.Rpc.File.Drop.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.File.Drop.Response.Error](#anytype-Rpc-File-Drop-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.File.Drop.Response.Error @@ -9087,7 +9087,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Drop.Response.Error.Code](#anytype.Rpc.File.Drop.Response.Error.Code) | | | +| code | [Rpc.File.Drop.Response.Error.Code](#anytype-Rpc-File-Drop-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9095,7 +9095,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload @@ -9105,7 +9105,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Request @@ -9121,7 +9121,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Response @@ -9129,7 +9129,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.ListOffload.Response.Error](#anytype.Rpc.File.ListOffload.Response.Error) | | | +| error | [Rpc.File.ListOffload.Response.Error](#anytype-Rpc-File-ListOffload-Response-Error) | | | | filesOffloaded | [int32](#int32) | | | | bytesOffloaded | [uint64](#uint64) | | | @@ -9138,7 +9138,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.ListOffload.Response.Error @@ -9146,7 +9146,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.ListOffload.Response.Error.Code](#anytype.Rpc.File.ListOffload.Response.Error.Code) | | | +| code | [Rpc.File.ListOffload.Response.Error.Code](#anytype-Rpc-File-ListOffload-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9154,7 +9154,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload @@ -9164,7 +9164,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Request @@ -9180,7 +9180,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Response @@ -9188,7 +9188,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Offload.Response.Error](#anytype.Rpc.File.Offload.Response.Error) | | | +| error | [Rpc.File.Offload.Response.Error](#anytype-Rpc-File-Offload-Response-Error) | | | | bytesOffloaded | [uint64](#uint64) | | | @@ -9196,7 +9196,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Offload.Response.Error @@ -9204,7 +9204,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Offload.Response.Error.Code](#anytype.Rpc.File.Offload.Response.Error.Code) | | | +| code | [Rpc.File.Offload.Response.Error.Code](#anytype-Rpc-File-Offload-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9212,7 +9212,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.SpaceUsage @@ -9222,7 +9222,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.SpaceUsage.Request @@ -9232,7 +9232,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.SpaceUsage.Response @@ -9240,15 +9240,15 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.SpaceUsage.Response.Error](#anytype.Rpc.File.SpaceUsage.Response.Error) | | | -| usage | [Rpc.File.SpaceUsage.Response.Usage](#anytype.Rpc.File.SpaceUsage.Response.Usage) | | | +| error | [Rpc.File.SpaceUsage.Response.Error](#anytype-Rpc-File-SpaceUsage-Response-Error) | | | +| usage | [Rpc.File.SpaceUsage.Response.Usage](#anytype-Rpc-File-SpaceUsage-Response-Usage) | | | - + ### Rpc.File.SpaceUsage.Response.Error @@ -9256,7 +9256,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.SpaceUsage.Response.Error.Code](#anytype.Rpc.File.SpaceUsage.Response.Error.Code) | | | +| code | [Rpc.File.SpaceUsage.Response.Error.Code](#anytype-Rpc-File-SpaceUsage-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9264,7 +9264,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.SpaceUsage.Response.Usage @@ -9284,7 +9284,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload @@ -9294,7 +9294,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload.Request @@ -9304,16 +9304,16 @@ Get marks list in the selected range in text block. | ----- | ---- | ----- | ----------- | | url | [string](#string) | | | | localPath | [string](#string) | | | -| type | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | +| type | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | | disableEncryption | [bool](#bool) | | deprecated, has no affect | -| style | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | +| style | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | - + ### Rpc.File.Upload.Response @@ -9321,7 +9321,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.File.Upload.Response.Error](#anytype.Rpc.File.Upload.Response.Error) | | | +| error | [Rpc.File.Upload.Response.Error](#anytype-Rpc-File-Upload-Response-Error) | | | | hash | [string](#string) | | | @@ -9329,7 +9329,7 @@ Get marks list in the selected range in text block. - + ### Rpc.File.Upload.Response.Error @@ -9337,7 +9337,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.File.Upload.Response.Error.Code](#anytype.Rpc.File.Upload.Response.Error.Code) | | | +| code | [Rpc.File.Upload.Response.Error.Code](#anytype-Rpc-File-Upload-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9345,7 +9345,7 @@ Get marks list in the selected range in text block. - + ### Rpc.GenericErrorResponse @@ -9353,14 +9353,14 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.GenericErrorResponse.Error](#anytype.Rpc.GenericErrorResponse.Error) | | | +| error | [Rpc.GenericErrorResponse.Error](#anytype-Rpc-GenericErrorResponse-Error) | | | - + ### Rpc.GenericErrorResponse.Error @@ -9368,7 +9368,7 @@ Get marks list in the selected range in text block. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.GenericErrorResponse.Error.Code](#anytype.Rpc.GenericErrorResponse.Error.Code) | | | +| code | [Rpc.GenericErrorResponse.Error.Code](#anytype-Rpc-GenericErrorResponse-Error-Code) | | | | description | [string](#string) | | | @@ -9376,7 +9376,7 @@ Get marks list in the selected range in text block. - + ### Rpc.History @@ -9386,7 +9386,7 @@ Get marks list in the selected range in text block. - + ### Rpc.History.GetVersions returns list of versions (changes) @@ -9396,7 +9396,7 @@ returns list of versions (changes) - + ### Rpc.History.GetVersions.Request @@ -9413,7 +9413,7 @@ returns list of versions (changes) - + ### Rpc.History.GetVersions.Response @@ -9421,15 +9421,15 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.History.GetVersions.Response.Error](#anytype.Rpc.History.GetVersions.Response.Error) | | | -| versions | [Rpc.History.Version](#anytype.Rpc.History.Version) | repeated | | +| error | [Rpc.History.GetVersions.Response.Error](#anytype-Rpc-History-GetVersions-Response-Error) | | | +| versions | [Rpc.History.Version](#anytype-Rpc-History-Version) | repeated | | - + ### Rpc.History.GetVersions.Response.Error @@ -9437,7 +9437,7 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.History.GetVersions.Response.Error.Code](#anytype.Rpc.History.GetVersions.Response.Error.Code) | | | +| code | [Rpc.History.GetVersions.Response.Error.Code](#anytype-Rpc-History-GetVersions-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9445,7 +9445,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion @@ -9455,7 +9455,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion.Request @@ -9471,7 +9471,7 @@ returns list of versions (changes) - + ### Rpc.History.SetVersion.Response @@ -9479,14 +9479,14 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.History.SetVersion.Response.Error](#anytype.Rpc.History.SetVersion.Response.Error) | | | +| error | [Rpc.History.SetVersion.Response.Error](#anytype-Rpc-History-SetVersion-Response-Error) | | | - + ### Rpc.History.SetVersion.Response.Error @@ -9494,7 +9494,7 @@ returns list of versions (changes) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.History.SetVersion.Response.Error.Code](#anytype.Rpc.History.SetVersion.Response.Error.Code) | | | +| code | [Rpc.History.SetVersion.Response.Error.Code](#anytype-Rpc-History-SetVersion-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9502,7 +9502,7 @@ returns list of versions (changes) - + ### Rpc.History.ShowVersion returns blockShow event for given version @@ -9512,7 +9512,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Request @@ -9529,7 +9529,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Response @@ -9537,9 +9537,9 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.History.ShowVersion.Response.Error](#anytype.Rpc.History.ShowVersion.Response.Error) | | | -| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | -| version | [Rpc.History.Version](#anytype.Rpc.History.Version) | | | +| error | [Rpc.History.ShowVersion.Response.Error](#anytype-Rpc-History-ShowVersion-Response-Error) | | | +| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | +| version | [Rpc.History.Version](#anytype-Rpc-History-Version) | | | | traceId | [string](#string) | | | @@ -9547,7 +9547,7 @@ returns blockShow event for given version - + ### Rpc.History.ShowVersion.Response.Error @@ -9555,7 +9555,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.History.ShowVersion.Response.Error.Code](#anytype.Rpc.History.ShowVersion.Response.Error.Code) | | | +| code | [Rpc.History.ShowVersion.Response.Error.Code](#anytype-Rpc-History-ShowVersion-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9563,7 +9563,7 @@ returns blockShow event for given version - + ### Rpc.History.Version @@ -9583,7 +9583,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview @@ -9593,7 +9593,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview.Request @@ -9608,7 +9608,7 @@ returns blockShow event for given version - + ### Rpc.LinkPreview.Response @@ -9616,15 +9616,15 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.LinkPreview.Response.Error](#anytype.Rpc.LinkPreview.Response.Error) | | | -| linkPreview | [model.LinkPreview](#anytype.model.LinkPreview) | | | +| error | [Rpc.LinkPreview.Response.Error](#anytype-Rpc-LinkPreview-Response-Error) | | | +| linkPreview | [model.LinkPreview](#anytype-model-LinkPreview) | | | - + ### Rpc.LinkPreview.Response.Error @@ -9632,7 +9632,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.LinkPreview.Response.Error.Code](#anytype.Rpc.LinkPreview.Response.Error.Code) | | | +| code | [Rpc.LinkPreview.Response.Error.Code](#anytype-Rpc-LinkPreview-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9640,7 +9640,7 @@ returns blockShow event for given version - + ### Rpc.Log @@ -9650,7 +9650,7 @@ returns blockShow event for given version - + ### Rpc.Log.Send @@ -9660,7 +9660,7 @@ returns blockShow event for given version - + ### Rpc.Log.Send.Request @@ -9669,14 +9669,14 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | message | [string](#string) | | | -| level | [Rpc.Log.Send.Request.Level](#anytype.Rpc.Log.Send.Request.Level) | | | +| level | [Rpc.Log.Send.Request.Level](#anytype-Rpc-Log-Send-Request-Level) | | | - + ### Rpc.Log.Send.Response @@ -9684,14 +9684,14 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Log.Send.Response.Error](#anytype.Rpc.Log.Send.Response.Error) | | | +| error | [Rpc.Log.Send.Response.Error](#anytype-Rpc-Log-Send-Response-Error) | | | - + ### Rpc.Log.Send.Response.Error @@ -9699,7 +9699,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Log.Send.Response.Error.Code](#anytype.Rpc.Log.Send.Response.Error.Code) | | | +| code | [Rpc.Log.Send.Response.Error.Code](#anytype-Rpc-Log-Send-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9707,7 +9707,7 @@ returns blockShow event for given version - + ### Rpc.Metrics @@ -9717,7 +9717,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters @@ -9727,7 +9727,7 @@ returns blockShow event for given version - + ### Rpc.Metrics.SetParameters.Request @@ -9736,13 +9736,14 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | platform | [string](#string) | | | +| version | [string](#string) | | | - + ### Rpc.Metrics.SetParameters.Response @@ -9750,14 +9751,14 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Metrics.SetParameters.Response.Error](#anytype.Rpc.Metrics.SetParameters.Response.Error) | | | +| error | [Rpc.Metrics.SetParameters.Response.Error](#anytype-Rpc-Metrics-SetParameters-Response-Error) | | | - + ### Rpc.Metrics.SetParameters.Response.Error @@ -9765,7 +9766,7 @@ returns blockShow event for given version | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype.Rpc.Metrics.SetParameters.Response.Error.Code) | | | +| code | [Rpc.Metrics.SetParameters.Response.Error.Code](#anytype-Rpc-Metrics-SetParameters-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9773,7 +9774,7 @@ returns blockShow event for given version - + ### Rpc.Navigation @@ -9783,7 +9784,7 @@ returns blockShow event for given version - + ### Rpc.Navigation.GetObjectInfoWithLinks Get the info for page alongside with info for all inbound and outbound links from/to this page @@ -9793,7 +9794,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.GetObjectInfoWithLinks.Request @@ -9802,14 +9803,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | objectId | [string](#string) | | | -| context | [Rpc.Navigation.Context](#anytype.Rpc.Navigation.Context) | | | +| context | [Rpc.Navigation.Context](#anytype-Rpc-Navigation-Context) | | | - + ### Rpc.Navigation.GetObjectInfoWithLinks.Response @@ -9817,15 +9818,15 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error) | | | -| object | [model.ObjectInfoWithLinks](#anytype.model.ObjectInfoWithLinks) | | | +| error | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error) | | | +| object | [model.ObjectInfoWithLinks](#anytype-model-ObjectInfoWithLinks) | | | - + ### Rpc.Navigation.GetObjectInfoWithLinks.Response.Error @@ -9833,7 +9834,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype.Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code) | | | +| code | [Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code](#anytype-Rpc-Navigation-GetObjectInfoWithLinks-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9841,7 +9842,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects @@ -9851,7 +9852,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects.Request @@ -9859,7 +9860,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| context | [Rpc.Navigation.Context](#anytype.Rpc.Navigation.Context) | | | +| context | [Rpc.Navigation.Context](#anytype-Rpc-Navigation-Context) | | | | fullText | [string](#string) | | | | limit | [int32](#int32) | | | | offset | [int32](#int32) | | | @@ -9869,7 +9870,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Navigation.ListObjects.Response @@ -9877,15 +9878,15 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Navigation.ListObjects.Response.Error](#anytype.Rpc.Navigation.ListObjects.Response.Error) | | | -| objects | [model.ObjectInfo](#anytype.model.ObjectInfo) | repeated | | +| error | [Rpc.Navigation.ListObjects.Response.Error](#anytype-Rpc-Navigation-ListObjects-Response-Error) | | | +| objects | [model.ObjectInfo](#anytype-model-ObjectInfo) | repeated | | - + ### Rpc.Navigation.ListObjects.Response.Error @@ -9893,7 +9894,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype.Rpc.Navigation.ListObjects.Response.Error.Code) | | | +| code | [Rpc.Navigation.ListObjects.Response.Error.Code](#anytype-Rpc-Navigation-ListObjects-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9901,7 +9902,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object @@ -9911,7 +9912,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate @@ -9921,7 +9922,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate.Request @@ -9937,7 +9938,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.ApplyTemplate.Response @@ -9945,14 +9946,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ApplyTemplate.Response.Error](#anytype.Rpc.Object.ApplyTemplate.Response.Error) | | | +| error | [Rpc.Object.ApplyTemplate.Response.Error](#anytype-Rpc-Object-ApplyTemplate-Response-Error) | | | - + ### Rpc.Object.ApplyTemplate.Response.Error @@ -9960,7 +9961,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype.Rpc.Object.ApplyTemplate.Response.Error.Code) | | | +| code | [Rpc.Object.ApplyTemplate.Response.Error.Code](#anytype-Rpc-Object-ApplyTemplate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -9968,7 +9969,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch @@ -9978,7 +9979,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch.Request @@ -9994,7 +9995,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.BookmarkFetch.Response @@ -10002,14 +10003,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.BookmarkFetch.Response.Error](#anytype.Rpc.Object.BookmarkFetch.Response.Error) | | | +| error | [Rpc.Object.BookmarkFetch.Response.Error](#anytype-Rpc-Object-BookmarkFetch-Response-Error) | | | - + ### Rpc.Object.BookmarkFetch.Response.Error @@ -10017,7 +10018,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype.Rpc.Object.BookmarkFetch.Response.Error.Code) | | | +| code | [Rpc.Object.BookmarkFetch.Response.Error.Code](#anytype-Rpc-Object-BookmarkFetch-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10025,7 +10026,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close @@ -10035,7 +10036,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close.Request @@ -10051,7 +10052,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Close.Response @@ -10059,14 +10060,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Close.Response.Error](#anytype.Rpc.Object.Close.Response.Error) | | | +| error | [Rpc.Object.Close.Response.Error](#anytype-Rpc-Object-Close-Response-Error) | | | - + ### Rpc.Object.Close.Response.Error @@ -10074,7 +10075,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Close.Response.Error.Code](#anytype.Rpc.Object.Close.Response.Error.Code) | | | +| code | [Rpc.Object.Close.Response.Error.Code](#anytype-Rpc-Object-Close-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10082,7 +10083,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create @@ -10092,7 +10093,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create.Request @@ -10100,8 +10101,8 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | object details | -| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | object details | +| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | | templateId | [string](#string) | | | @@ -10109,7 +10110,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Create.Response @@ -10117,17 +10118,17 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Create.Response.Error](#anytype.Rpc.Object.Create.Response.Error) | | | +| error | [Rpc.Object.Create.Response.Error](#anytype-Rpc-Object-Create-Response-Error) | | | | objectId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.Create.Response.Error @@ -10135,7 +10136,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Create.Response.Error.Code](#anytype.Rpc.Object.Create.Response.Error.Code) | | | +| code | [Rpc.Object.Create.Response.Error.Code](#anytype-Rpc-Object-Create-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10143,7 +10144,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateBookmark @@ -10153,7 +10154,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateBookmark.Request @@ -10161,14 +10162,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.CreateBookmark.Response @@ -10176,16 +10177,16 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateBookmark.Response.Error](#anytype.Rpc.Object.CreateBookmark.Response.Error) | | | +| error | [Rpc.Object.CreateBookmark.Response.Error](#anytype-Rpc-Object-CreateBookmark-Response-Error) | | | | objectId | [string](#string) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.CreateBookmark.Response.Error @@ -10193,7 +10194,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype.Rpc.Object.CreateBookmark.Response.Error.Code) | | | +| code | [Rpc.Object.CreateBookmark.Response.Error.Code](#anytype-Rpc-Object-CreateBookmark-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10201,7 +10202,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType @@ -10211,7 +10212,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType.Request @@ -10219,15 +10220,15 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | -| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | - + ### Rpc.Object.CreateObjectType.Response @@ -10235,8 +10236,8 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateObjectType.Response.Error](#anytype.Rpc.Object.CreateObjectType.Response.Error) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| error | [Rpc.Object.CreateObjectType.Response.Error](#anytype-Rpc-Object-CreateObjectType-Response-Error) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | | objectId | [string](#string) | | | @@ -10244,7 +10245,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateObjectType.Response.Error @@ -10252,7 +10253,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype.Rpc.Object.CreateObjectType.Response.Error.Code) | | | +| code | [Rpc.Object.CreateObjectType.Response.Error.Code](#anytype-Rpc-Object-CreateObjectType-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10260,7 +10261,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelation @@ -10270,7 +10271,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelation.Request @@ -10278,14 +10279,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.CreateRelation.Response @@ -10293,17 +10294,17 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateRelation.Response.Error](#anytype.Rpc.Object.CreateRelation.Response.Error) | | | +| error | [Rpc.Object.CreateRelation.Response.Error](#anytype-Rpc-Object-CreateRelation-Response-Error) | | | | objectId | [string](#string) | | | | key | [string](#string) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.CreateRelation.Response.Error @@ -10311,7 +10312,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateRelation.Response.Error.Code](#anytype.Rpc.Object.CreateRelation.Response.Error.Code) | | | +| code | [Rpc.Object.CreateRelation.Response.Error.Code](#anytype-Rpc-Object-CreateRelation-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10319,7 +10320,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelationOption @@ -10329,7 +10330,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateRelationOption.Request @@ -10337,14 +10338,14 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.CreateRelationOption.Response @@ -10352,16 +10353,16 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateRelationOption.Response.Error](#anytype.Rpc.Object.CreateRelationOption.Response.Error) | | | +| error | [Rpc.Object.CreateRelationOption.Response.Error](#anytype-Rpc-Object-CreateRelationOption-Response-Error) | | | | objectId | [string](#string) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.CreateRelationOption.Response.Error @@ -10369,7 +10370,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype.Rpc.Object.CreateRelationOption.Response.Error.Code) | | | +| code | [Rpc.Object.CreateRelationOption.Response.Error.Code](#anytype-Rpc-Object-CreateRelationOption-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10377,7 +10378,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateSet @@ -10387,7 +10388,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.CreateSet.Request @@ -10396,16 +10397,16 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | source | [string](#string) | repeated | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | if omitted the name of page will be the same with object type | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | if omitted the name of page will be the same with object type | | templateId | [string](#string) | | optional template id for creating from template | -| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | +| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | - + ### Rpc.Object.CreateSet.Response @@ -10413,17 +10414,17 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.CreateSet.Response.Error](#anytype.Rpc.Object.CreateSet.Response.Error) | | | +| error | [Rpc.Object.CreateSet.Response.Error](#anytype-Rpc-Object-CreateSet-Response-Error) | | | | objectId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Object.CreateSet.Response.Error @@ -10431,7 +10432,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.CreateSet.Response.Error.Code](#anytype.Rpc.Object.CreateSet.Response.Error.Code) | | | +| code | [Rpc.Object.CreateSet.Response.Error.Code](#anytype-Rpc-Object-CreateSet-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10439,7 +10440,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate @@ -10449,7 +10450,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Request @@ -10464,7 +10465,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Response @@ -10472,7 +10473,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Duplicate.Response.Error](#anytype.Rpc.Object.Duplicate.Response.Error) | | | +| error | [Rpc.Object.Duplicate.Response.Error](#anytype-Rpc-Object-Duplicate-Response-Error) | | | | id | [string](#string) | | created template id | @@ -10480,7 +10481,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Duplicate.Response.Error @@ -10488,7 +10489,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Duplicate.Response.Error.Code](#anytype.Rpc.Object.Duplicate.Response.Error.Code) | | | +| code | [Rpc.Object.Duplicate.Response.Error.Code](#anytype-Rpc-Object-Duplicate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10496,7 +10497,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph @@ -10506,7 +10507,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Edge @@ -10517,7 +10518,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | source | [string](#string) | | | | target | [string](#string) | | | | name | [string](#string) | | | -| type | [Rpc.Object.Graph.Edge.Type](#anytype.Rpc.Object.Graph.Edge.Type) | | | +| type | [Rpc.Object.Graph.Edge.Type](#anytype-Rpc-Object-Graph-Edge-Type) | | | | description | [string](#string) | | | | iconImage | [string](#string) | | | | iconEmoji | [string](#string) | | | @@ -10528,7 +10529,7 @@ Get the info for page alongside with info for all inbound and outbound links fro - + ### Rpc.Object.Graph.Request @@ -10536,7 +10537,7 @@ Get the info for page alongside with info for all inbound and outbound links fro | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | +| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | | limit | [int32](#int32) | | | | objectTypeFilter | [string](#string) | repeated | additional filter by objectTypes @@ -10548,7 +10549,7 @@ DEPRECATED | - + ### Rpc.Object.Graph.Response @@ -10556,16 +10557,16 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Graph.Response.Error](#anytype.Rpc.Object.Graph.Response.Error) | | | -| nodes | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | -| edges | [Rpc.Object.Graph.Edge](#anytype.Rpc.Object.Graph.Edge) | repeated | | +| error | [Rpc.Object.Graph.Response.Error](#anytype-Rpc-Object-Graph-Response-Error) | | | +| nodes | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | +| edges | [Rpc.Object.Graph.Edge](#anytype-Rpc-Object-Graph-Edge) | repeated | | - + ### Rpc.Object.Graph.Response.Error @@ -10573,7 +10574,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Graph.Response.Error.Code](#anytype.Rpc.Object.Graph.Response.Error.Code) | | | +| code | [Rpc.Object.Graph.Response.Error.Code](#anytype-Rpc-Object-Graph-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10581,7 +10582,7 @@ DEPRECATED | - + ### Rpc.Object.GroupsSubscribe @@ -10591,7 +10592,7 @@ DEPRECATED | - + ### Rpc.Object.GroupsSubscribe.Request @@ -10601,7 +10602,7 @@ DEPRECATED | | ----- | ---- | ----- | ----------- | | subId | [string](#string) | | | | relationKey | [string](#string) | | | -| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | +| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | | source | [string](#string) | repeated | | | collectionId | [string](#string) | | | @@ -10610,7 +10611,7 @@ DEPRECATED | - + ### Rpc.Object.GroupsSubscribe.Response @@ -10618,8 +10619,8 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.GroupsSubscribe.Response.Error](#anytype.Rpc.Object.GroupsSubscribe.Response.Error) | | | -| groups | [model.Block.Content.Dataview.Group](#anytype.model.Block.Content.Dataview.Group) | repeated | | +| error | [Rpc.Object.GroupsSubscribe.Response.Error](#anytype-Rpc-Object-GroupsSubscribe-Response-Error) | | | +| groups | [model.Block.Content.Dataview.Group](#anytype-model-Block-Content-Dataview-Group) | repeated | | | subId | [string](#string) | | | @@ -10627,7 +10628,7 @@ DEPRECATED | - + ### Rpc.Object.GroupsSubscribe.Response.Error @@ -10635,7 +10636,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype.Rpc.Object.GroupsSubscribe.Response.Error.Code) | | | +| code | [Rpc.Object.GroupsSubscribe.Response.Error.Code](#anytype-Rpc-Object-GroupsSubscribe-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10643,7 +10644,7 @@ DEPRECATED | - + ### Rpc.Object.Import @@ -10653,7 +10654,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Notion @@ -10663,7 +10664,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Notion.ValidateToken @@ -10673,7 +10674,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Notion.ValidateToken.Request @@ -10688,7 +10689,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Notion.ValidateToken.Response @@ -10696,14 +10697,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error) | | | +| error | [Rpc.Object.Import.Notion.ValidateToken.Response.Error](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error) | | | - + ### Rpc.Object.Import.Notion.ValidateToken.Response.Error @@ -10711,7 +10712,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype.Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code) | | | +| code | [Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code](#anytype-Rpc-Object-Import-Notion-ValidateToken-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10719,7 +10720,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request @@ -10727,17 +10728,17 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| notionParams | [Rpc.Object.Import.Request.NotionParams](#anytype.Rpc.Object.Import.Request.NotionParams) | | | -| bookmarksParams | [Rpc.Object.Import.Request.BookmarksParams](#anytype.Rpc.Object.Import.Request.BookmarksParams) | | for internal use | -| markdownParams | [Rpc.Object.Import.Request.MarkdownParams](#anytype.Rpc.Object.Import.Request.MarkdownParams) | | | -| htmlParams | [Rpc.Object.Import.Request.HtmlParams](#anytype.Rpc.Object.Import.Request.HtmlParams) | | | -| txtParams | [Rpc.Object.Import.Request.TxtParams](#anytype.Rpc.Object.Import.Request.TxtParams) | | | -| pbParams | [Rpc.Object.Import.Request.PbParams](#anytype.Rpc.Object.Import.Request.PbParams) | | | -| csvParams | [Rpc.Object.Import.Request.CsvParams](#anytype.Rpc.Object.Import.Request.CsvParams) | | | -| snapshots | [Rpc.Object.Import.Request.Snapshot](#anytype.Rpc.Object.Import.Request.Snapshot) | repeated | optional, for external developers usage | +| notionParams | [Rpc.Object.Import.Request.NotionParams](#anytype-Rpc-Object-Import-Request-NotionParams) | | | +| bookmarksParams | [Rpc.Object.Import.Request.BookmarksParams](#anytype-Rpc-Object-Import-Request-BookmarksParams) | | for internal use | +| markdownParams | [Rpc.Object.Import.Request.MarkdownParams](#anytype-Rpc-Object-Import-Request-MarkdownParams) | | | +| htmlParams | [Rpc.Object.Import.Request.HtmlParams](#anytype-Rpc-Object-Import-Request-HtmlParams) | | | +| txtParams | [Rpc.Object.Import.Request.TxtParams](#anytype-Rpc-Object-Import-Request-TxtParams) | | | +| pbParams | [Rpc.Object.Import.Request.PbParams](#anytype-Rpc-Object-Import-Request-PbParams) | | | +| csvParams | [Rpc.Object.Import.Request.CsvParams](#anytype-Rpc-Object-Import-Request-CsvParams) | | | +| snapshots | [Rpc.Object.Import.Request.Snapshot](#anytype-Rpc-Object-Import-Request-Snapshot) | repeated | optional, for external developers usage | | updateExistingObjects | [bool](#bool) | | | -| type | [Rpc.Object.Import.Request.Type](#anytype.Rpc.Object.Import.Request.Type) | | | -| mode | [Rpc.Object.Import.Request.Mode](#anytype.Rpc.Object.Import.Request.Mode) | | | +| type | [Rpc.Object.Import.Request.Type](#anytype-Rpc-Object-Import-Request-Type) | | | +| mode | [Rpc.Object.Import.Request.Mode](#anytype-Rpc-Object-Import-Request-Mode) | | | | noProgress | [bool](#bool) | | | | isMigration | [bool](#bool) | | | @@ -10746,7 +10747,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request.BookmarksParams @@ -10761,7 +10762,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request.CsvParams @@ -10770,7 +10771,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | path | [string](#string) | repeated | | -| mode | [Rpc.Object.Import.Request.CsvParams.Mode](#anytype.Rpc.Object.Import.Request.CsvParams.Mode) | | | +| mode | [Rpc.Object.Import.Request.CsvParams.Mode](#anytype-Rpc-Object-Import-Request-CsvParams-Mode) | | | | useFirstRowForRelations | [bool](#bool) | | | | delimiter | [string](#string) | | | | transposeRowsAndColumns | [bool](#bool) | | | @@ -10780,7 +10781,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request.HtmlParams @@ -10795,7 +10796,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request.MarkdownParams @@ -10810,7 +10811,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request.NotionParams @@ -10825,7 +10826,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request.PbParams @@ -10841,7 +10842,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Request.Snapshot @@ -10850,14 +10851,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| snapshot | [model.SmartBlockSnapshotBase](#anytype.model.SmartBlockSnapshotBase) | | | +| snapshot | [model.SmartBlockSnapshotBase](#anytype-model-SmartBlockSnapshotBase) | | | - + ### Rpc.Object.Import.Request.TxtParams @@ -10872,7 +10873,7 @@ DEPRECATED | - + ### Rpc.Object.Import.Response @@ -10880,14 +10881,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Import.Response.Error](#anytype.Rpc.Object.Import.Response.Error) | | | +| error | [Rpc.Object.Import.Response.Error](#anytype-Rpc-Object-Import-Response-Error) | | | - + ### Rpc.Object.Import.Response.Error @@ -10895,7 +10896,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Import.Response.Error.Code](#anytype.Rpc.Object.Import.Response.Error.Code) | | | +| code | [Rpc.Object.Import.Response.Error.Code](#anytype-Rpc-Object-Import-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10903,7 +10904,7 @@ DEPRECATED | - + ### Rpc.Object.ImportList @@ -10913,7 +10914,7 @@ DEPRECATED | - + ### Rpc.Object.ImportList.ImportResponse @@ -10921,14 +10922,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| type | [Rpc.Object.ImportList.ImportResponse.Type](#anytype.Rpc.Object.ImportList.ImportResponse.Type) | | | +| type | [Rpc.Object.ImportList.ImportResponse.Type](#anytype-Rpc-Object-ImportList-ImportResponse-Type) | | | - + ### Rpc.Object.ImportList.Request @@ -10938,7 +10939,7 @@ DEPRECATED | - + ### Rpc.Object.ImportList.Response @@ -10946,15 +10947,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ImportList.Response.Error](#anytype.Rpc.Object.ImportList.Response.Error) | | | -| response | [Rpc.Object.ImportList.ImportResponse](#anytype.Rpc.Object.ImportList.ImportResponse) | repeated | | +| error | [Rpc.Object.ImportList.Response.Error](#anytype-Rpc-Object-ImportList-Response-Error) | | | +| response | [Rpc.Object.ImportList.ImportResponse](#anytype-Rpc-Object-ImportList-ImportResponse) | repeated | | - + ### Rpc.Object.ImportList.Response.Error @@ -10962,7 +10963,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ImportList.Response.Error.Code](#anytype.Rpc.Object.ImportList.Response.Error.Code) | | | +| code | [Rpc.Object.ImportList.Response.Error.Code](#anytype-Rpc-Object-ImportList-Response-Error-Code) | | | | description | [string](#string) | | | @@ -10970,7 +10971,7 @@ DEPRECATED | - + ### Rpc.Object.ImportUseCase @@ -10980,7 +10981,7 @@ DEPRECATED | - + ### Rpc.Object.ImportUseCase.Request @@ -10988,14 +10989,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| useCase | [Rpc.Object.ImportUseCase.Request.UseCase](#anytype.Rpc.Object.ImportUseCase.Request.UseCase) | | | +| useCase | [Rpc.Object.ImportUseCase.Request.UseCase](#anytype-Rpc-Object-ImportUseCase-Request-UseCase) | | | - + ### Rpc.Object.ImportUseCase.Response @@ -11003,14 +11004,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ImportUseCase.Response.Error](#anytype.Rpc.Object.ImportUseCase.Response.Error) | | | +| error | [Rpc.Object.ImportUseCase.Response.Error](#anytype-Rpc-Object-ImportUseCase-Response-Error) | | | - + ### Rpc.Object.ImportUseCase.Response.Error @@ -11018,7 +11019,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ImportUseCase.Response.Error.Code](#anytype.Rpc.Object.ImportUseCase.Response.Error.Code) | | | +| code | [Rpc.Object.ImportUseCase.Response.Error.Code](#anytype-Rpc-Object-ImportUseCase-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11026,7 +11027,7 @@ DEPRECATED | - + ### Rpc.Object.ListDelete @@ -11036,7 +11037,7 @@ DEPRECATED | - + ### Rpc.Object.ListDelete.Request Deletes the object, keys from the local store and unsubscribe from remote changes. Also offloads all orphan files @@ -11051,7 +11052,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDelete.Response @@ -11059,15 +11060,15 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListDelete.Response.Error](#anytype.Rpc.Object.ListDelete.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.ListDelete.Response.Error](#anytype-Rpc-Object-ListDelete-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.ListDelete.Response.Error @@ -11075,7 +11076,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListDelete.Response.Error.Code](#anytype.Rpc.Object.ListDelete.Response.Error.Code) | | | +| code | [Rpc.Object.ListDelete.Response.Error.Code](#anytype-Rpc-Object-ListDelete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11083,7 +11084,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate @@ -11093,7 +11094,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Request @@ -11108,7 +11109,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Response @@ -11116,7 +11117,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListDuplicate.Response.Error](#anytype.Rpc.Object.ListDuplicate.Response.Error) | | | +| error | [Rpc.Object.ListDuplicate.Response.Error](#anytype-Rpc-Object-ListDuplicate-Response-Error) | | | | ids | [string](#string) | repeated | | @@ -11124,7 +11125,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListDuplicate.Response.Error @@ -11132,7 +11133,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype.Rpc.Object.ListDuplicate.Response.Error.Code) | | | +| code | [Rpc.Object.ListDuplicate.Response.Error.Code](#anytype-Rpc-Object-ListDuplicate-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11140,7 +11141,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport @@ -11150,7 +11151,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport.Request @@ -11160,7 +11161,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | ----- | ---- | ----- | ----------- | | path | [string](#string) | | the path where export files will place | | objectIds | [string](#string) | repeated | ids of documents for export, when empty - will export all available docs | -| format | [Rpc.Object.ListExport.Format](#anytype.Rpc.Object.ListExport.Format) | | export format | +| format | [Rpc.Object.ListExport.Format](#anytype-Rpc-Object-ListExport-Format) | | export format | | zip | [bool](#bool) | | save as zip file | | includeNested | [bool](#bool) | | include all nested | | includeFiles | [bool](#bool) | | include all files | @@ -11172,7 +11173,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListExport.Response @@ -11180,17 +11181,17 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListExport.Response.Error](#anytype.Rpc.Object.ListExport.Response.Error) | | | +| error | [Rpc.Object.ListExport.Response.Error](#anytype-Rpc-Object-ListExport-Response-Error) | | | | path | [string](#string) | | | | succeed | [int32](#int32) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.ListExport.Response.Error @@ -11198,7 +11199,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListExport.Response.Error.Code](#anytype.Rpc.Object.ListExport.Response.Error.Code) | | | +| code | [Rpc.Object.ListExport.Response.Error.Code](#anytype-Rpc-Object-ListExport-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11206,7 +11207,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived @@ -11216,7 +11217,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived.Request @@ -11232,7 +11233,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsArchived.Response @@ -11240,14 +11241,14 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListSetIsArchived.Response.Error](#anytype.Rpc.Object.ListSetIsArchived.Response.Error) | | | +| error | [Rpc.Object.ListSetIsArchived.Response.Error](#anytype-Rpc-Object-ListSetIsArchived-Response-Error) | | | - + ### Rpc.Object.ListSetIsArchived.Response.Error @@ -11255,7 +11256,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype.Rpc.Object.ListSetIsArchived.Response.Error.Code) | | | +| code | [Rpc.Object.ListSetIsArchived.Response.Error.Code](#anytype-Rpc-Object-ListSetIsArchived-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11263,7 +11264,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite @@ -11273,7 +11274,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite.Request @@ -11289,7 +11290,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.ListSetIsFavorite.Response @@ -11297,14 +11298,14 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error) | | | +| error | [Rpc.Object.ListSetIsFavorite.Response.Error](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error) | | | - + ### Rpc.Object.ListSetIsFavorite.Response.Error @@ -11312,7 +11313,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.ListSetIsFavorite.Response.Error.Code) | | | +| code | [Rpc.Object.ListSetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-ListSetIsFavorite-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11320,7 +11321,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open @@ -11330,7 +11331,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open.Request @@ -11348,7 +11349,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Open.Response @@ -11356,15 +11357,15 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Open.Response.Error](#anytype.Rpc.Object.Open.Response.Error) | | | -| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | +| error | [Rpc.Object.Open.Response.Error](#anytype-Rpc-Object-Open-Response-Error) | | | +| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | - + ### Rpc.Object.Open.Response.Error @@ -11372,7 +11373,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Open.Response.Error.Code](#anytype.Rpc.Object.Open.Response.Error.Code) | | | +| code | [Rpc.Object.Open.Response.Error.Code](#anytype-Rpc-Object-Open-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11380,7 +11381,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs @@ -11390,7 +11391,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs.Request @@ -11406,7 +11407,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.OpenBreadcrumbs.Response @@ -11414,17 +11415,17 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error) | | | +| error | [Rpc.Object.OpenBreadcrumbs.Response.Error](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error) | | | | objectId | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | -| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | - + ### Rpc.Object.OpenBreadcrumbs.Response.Error @@ -11432,7 +11433,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.OpenBreadcrumbs.Response.Error.Code) | | | +| code | [Rpc.Object.OpenBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-OpenBreadcrumbs-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11440,7 +11441,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo @@ -11450,7 +11451,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo.Request @@ -11465,7 +11466,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Redo.Response @@ -11473,16 +11474,16 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Redo.Response.Error](#anytype.Rpc.Object.Redo.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | -| counters | [Rpc.Object.UndoRedoCounter](#anytype.Rpc.Object.UndoRedoCounter) | | | +| error | [Rpc.Object.Redo.Response.Error](#anytype-Rpc-Object-Redo-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| counters | [Rpc.Object.UndoRedoCounter](#anytype-Rpc-Object-UndoRedoCounter) | | | - + ### Rpc.Object.Redo.Response.Error @@ -11490,7 +11491,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Redo.Response.Error.Code](#anytype.Rpc.Object.Redo.Response.Error.Code) | | | +| code | [Rpc.Object.Redo.Response.Error.Code](#anytype-Rpc-Object-Redo-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11498,7 +11499,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Search @@ -11508,7 +11509,7 @@ Deletes the object, keys from the local store and unsubscribe from remote change - + ### Rpc.Object.Search.Request @@ -11516,8 +11517,8 @@ Deletes the object, keys from the local store and unsubscribe from remote change | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | -| sorts | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | | +| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | +| sorts | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | | | fullText | [string](#string) | | | | offset | [int32](#int32) | | | | limit | [int32](#int32) | | | @@ -11531,7 +11532,7 @@ DEPRECATED | - + ### Rpc.Object.Search.Response @@ -11539,15 +11540,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Search.Response.Error](#anytype.Rpc.Object.Search.Response.Error) | | | -| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | +| error | [Rpc.Object.Search.Response.Error](#anytype-Rpc-Object-Search-Response-Error) | | | +| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | - + ### Rpc.Object.Search.Response.Error @@ -11555,7 +11556,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Search.Response.Error.Code](#anytype.Rpc.Object.Search.Response.Error.Code) | | | +| code | [Rpc.Object.Search.Response.Error.Code](#anytype-Rpc-Object-Search-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11563,7 +11564,7 @@ DEPRECATED | - + ### Rpc.Object.SearchSubscribe @@ -11573,7 +11574,7 @@ DEPRECATED | - + ### Rpc.Object.SearchSubscribe.Request @@ -11582,8 +11583,8 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | subId | [string](#string) | | (optional) subscription identifier client can provide some string or middleware will generate it automatically if subId is already registered on middleware, the new query will replace previous subscription | -| filters | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | filters | -| sorts | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | sorts | +| filters | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | filters | +| sorts | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | sorts | | limit | [int64](#int64) | | results limit | | offset | [int64](#int64) | | initial offset; middleware will find afterId | | keys | [string](#string) | repeated | (required) needed keys in details for return, for object fields mw will return (and subscribe) objects as dependent | @@ -11599,7 +11600,7 @@ DEPRECATED | - + ### Rpc.Object.SearchSubscribe.Response @@ -11607,18 +11608,18 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SearchSubscribe.Response.Error](#anytype.Rpc.Object.SearchSubscribe.Response.Error) | | | -| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | -| dependencies | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | +| error | [Rpc.Object.SearchSubscribe.Response.Error](#anytype-Rpc-Object-SearchSubscribe-Response-Error) | | | +| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | +| dependencies | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | | subId | [string](#string) | | | -| counters | [Event.Object.Subscription.Counters](#anytype.Event.Object.Subscription.Counters) | | | +| counters | [Event.Object.Subscription.Counters](#anytype-Event-Object-Subscription-Counters) | | | - + ### Rpc.Object.SearchSubscribe.Response.Error @@ -11626,7 +11627,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchSubscribe.Response.Error.Code) | | | +| code | [Rpc.Object.SearchSubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchSubscribe-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11634,7 +11635,7 @@ DEPRECATED | - + ### Rpc.Object.SearchUnsubscribe @@ -11644,7 +11645,7 @@ DEPRECATED | - + ### Rpc.Object.SearchUnsubscribe.Request @@ -11659,7 +11660,7 @@ DEPRECATED | - + ### Rpc.Object.SearchUnsubscribe.Response @@ -11667,14 +11668,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error) | | | +| error | [Rpc.Object.SearchUnsubscribe.Response.Error](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error) | | | - + ### Rpc.Object.SearchUnsubscribe.Response.Error @@ -11682,7 +11683,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype.Rpc.Object.SearchUnsubscribe.Response.Error.Code) | | | +| code | [Rpc.Object.SearchUnsubscribe.Response.Error.Code](#anytype-Rpc-Object-SearchUnsubscribe-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11690,7 +11691,7 @@ DEPRECATED | - + ### Rpc.Object.SetBreadcrumbs @@ -11700,7 +11701,7 @@ DEPRECATED | - + ### Rpc.Object.SetBreadcrumbs.Request @@ -11716,7 +11717,7 @@ DEPRECATED | - + ### Rpc.Object.SetBreadcrumbs.Response @@ -11724,15 +11725,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetBreadcrumbs.Response.Error](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetBreadcrumbs.Response.Error @@ -11740,7 +11741,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype.Rpc.Object.SetBreadcrumbs.Response.Error.Code) | | | +| code | [Rpc.Object.SetBreadcrumbs.Response.Error.Code](#anytype-Rpc-Object-SetBreadcrumbs-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11748,7 +11749,7 @@ DEPRECATED | - + ### Rpc.Object.SetDetails @@ -11758,7 +11759,7 @@ DEPRECATED | - + ### Rpc.Object.SetDetails.Detail @@ -11767,14 +11768,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| value | [google.protobuf.Value](#google.protobuf.Value) | | NUll - removes key | +| value | [google.protobuf.Value](#google-protobuf-Value) | | NUll - removes key | - + ### Rpc.Object.SetDetails.Request @@ -11783,14 +11784,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| details | [Rpc.Object.SetDetails.Detail](#anytype.Rpc.Object.SetDetails.Detail) | repeated | | +| details | [Rpc.Object.SetDetails.Detail](#anytype-Rpc-Object-SetDetails-Detail) | repeated | | - + ### Rpc.Object.SetDetails.Response @@ -11798,15 +11799,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetDetails.Response.Error](#anytype.Rpc.Object.SetDetails.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetDetails.Response.Error](#anytype-Rpc-Object-SetDetails-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetDetails.Response.Error @@ -11814,7 +11815,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetDetails.Response.Error.Code](#anytype.Rpc.Object.SetDetails.Response.Error.Code) | | | +| code | [Rpc.Object.SetDetails.Response.Error.Code](#anytype-Rpc-Object-SetDetails-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11822,7 +11823,7 @@ DEPRECATED | - + ### Rpc.Object.SetInternalFlags @@ -11832,7 +11833,7 @@ DEPRECATED | - + ### Rpc.Object.SetInternalFlags.Request @@ -11841,14 +11842,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| internalFlags | [model.InternalFlag](#anytype.model.InternalFlag) | repeated | | +| internalFlags | [model.InternalFlag](#anytype-model-InternalFlag) | repeated | | - + ### Rpc.Object.SetInternalFlags.Response @@ -11856,15 +11857,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetInternalFlags.Response.Error](#anytype.Rpc.Object.SetInternalFlags.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetInternalFlags.Response.Error](#anytype-Rpc-Object-SetInternalFlags-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetInternalFlags.Response.Error @@ -11872,7 +11873,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype.Rpc.Object.SetInternalFlags.Response.Error.Code) | | | +| code | [Rpc.Object.SetInternalFlags.Response.Error.Code](#anytype-Rpc-Object-SetInternalFlags-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11880,7 +11881,7 @@ DEPRECATED | - + ### Rpc.Object.SetIsArchived @@ -11890,7 +11891,7 @@ DEPRECATED | - + ### Rpc.Object.SetIsArchived.Request @@ -11906,7 +11907,7 @@ DEPRECATED | - + ### Rpc.Object.SetIsArchived.Response @@ -11914,15 +11915,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetIsArchived.Response.Error](#anytype.Rpc.Object.SetIsArchived.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetIsArchived.Response.Error](#anytype-Rpc-Object-SetIsArchived-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetIsArchived.Response.Error @@ -11930,7 +11931,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype.Rpc.Object.SetIsArchived.Response.Error.Code) | | | +| code | [Rpc.Object.SetIsArchived.Response.Error.Code](#anytype-Rpc-Object-SetIsArchived-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11938,7 +11939,7 @@ DEPRECATED | - + ### Rpc.Object.SetIsFavorite @@ -11948,7 +11949,7 @@ DEPRECATED | - + ### Rpc.Object.SetIsFavorite.Request @@ -11964,7 +11965,7 @@ DEPRECATED | - + ### Rpc.Object.SetIsFavorite.Response @@ -11972,15 +11973,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetIsFavorite.Response.Error](#anytype.Rpc.Object.SetIsFavorite.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetIsFavorite.Response.Error](#anytype-Rpc-Object-SetIsFavorite-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetIsFavorite.Response.Error @@ -11988,7 +11989,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype.Rpc.Object.SetIsFavorite.Response.Error.Code) | | | +| code | [Rpc.Object.SetIsFavorite.Response.Error.Code](#anytype-Rpc-Object-SetIsFavorite-Response-Error-Code) | | | | description | [string](#string) | | | @@ -11996,7 +11997,7 @@ DEPRECATED | - + ### Rpc.Object.SetLayout @@ -12006,7 +12007,7 @@ DEPRECATED | - + ### Rpc.Object.SetLayout.Request @@ -12015,14 +12016,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | contextId | [string](#string) | | | -| layout | [model.ObjectType.Layout](#anytype.model.ObjectType.Layout) | | | +| layout | [model.ObjectType.Layout](#anytype-model-ObjectType-Layout) | | | - + ### Rpc.Object.SetLayout.Response @@ -12030,15 +12031,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetLayout.Response.Error](#anytype.Rpc.Object.SetLayout.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetLayout.Response.Error](#anytype-Rpc-Object-SetLayout-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetLayout.Response.Error @@ -12046,7 +12047,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetLayout.Response.Error.Code](#anytype.Rpc.Object.SetLayout.Response.Error.Code) | | | +| code | [Rpc.Object.SetLayout.Response.Error.Code](#anytype-Rpc-Object-SetLayout-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12054,7 +12055,7 @@ DEPRECATED | - + ### Rpc.Object.SetObjectType @@ -12064,7 +12065,7 @@ DEPRECATED | - + ### Rpc.Object.SetObjectType.Request @@ -12080,7 +12081,7 @@ DEPRECATED | - + ### Rpc.Object.SetObjectType.Response @@ -12088,15 +12089,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetObjectType.Response.Error](#anytype.Rpc.Object.SetObjectType.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetObjectType.Response.Error](#anytype-Rpc-Object-SetObjectType-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetObjectType.Response.Error @@ -12104,7 +12105,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetObjectType.Response.Error.Code](#anytype.Rpc.Object.SetObjectType.Response.Error.Code) | | | +| code | [Rpc.Object.SetObjectType.Response.Error.Code](#anytype-Rpc-Object-SetObjectType-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12112,7 +12113,7 @@ DEPRECATED | - + ### Rpc.Object.SetSource @@ -12122,7 +12123,7 @@ DEPRECATED | - + ### Rpc.Object.SetSource.Request @@ -12138,7 +12139,7 @@ DEPRECATED | - + ### Rpc.Object.SetSource.Response @@ -12146,15 +12147,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SetSource.Response.Error](#anytype.Rpc.Object.SetSource.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.SetSource.Response.Error](#anytype-Rpc-Object-SetSource-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Object.SetSource.Response.Error @@ -12162,7 +12163,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SetSource.Response.Error.Code](#anytype.Rpc.Object.SetSource.Response.Error.Code) | | | +| code | [Rpc.Object.SetSource.Response.Error.Code](#anytype-Rpc-Object-SetSource-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12170,7 +12171,7 @@ DEPRECATED | - + ### Rpc.Object.ShareByLink @@ -12180,7 +12181,7 @@ DEPRECATED | - + ### Rpc.Object.ShareByLink.Request @@ -12195,7 +12196,7 @@ DEPRECATED | - + ### Rpc.Object.ShareByLink.Response @@ -12204,14 +12205,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | link | [string](#string) | | | -| error | [Rpc.Object.ShareByLink.Response.Error](#anytype.Rpc.Object.ShareByLink.Response.Error) | | | +| error | [Rpc.Object.ShareByLink.Response.Error](#anytype-Rpc-Object-ShareByLink-Response-Error) | | | - + ### Rpc.Object.ShareByLink.Response.Error @@ -12219,7 +12220,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ShareByLink.Response.Error.Code](#anytype.Rpc.Object.ShareByLink.Response.Error.Code) | | | +| code | [Rpc.Object.ShareByLink.Response.Error.Code](#anytype-Rpc-Object-ShareByLink-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12227,7 +12228,7 @@ DEPRECATED | - + ### Rpc.Object.Show @@ -12237,7 +12238,7 @@ DEPRECATED | - + ### Rpc.Object.Show.Request @@ -12255,7 +12256,7 @@ DEPRECATED | - + ### Rpc.Object.Show.Response @@ -12263,15 +12264,15 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Show.Response.Error](#anytype.Rpc.Object.Show.Response.Error) | | | -| objectView | [model.ObjectView](#anytype.model.ObjectView) | | | +| error | [Rpc.Object.Show.Response.Error](#anytype-Rpc-Object-Show-Response-Error) | | | +| objectView | [model.ObjectView](#anytype-model-ObjectView) | | | - + ### Rpc.Object.Show.Response.Error @@ -12279,7 +12280,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Show.Response.Error.Code](#anytype.Rpc.Object.Show.Response.Error.Code) | | | +| code | [Rpc.Object.Show.Response.Error.Code](#anytype-Rpc-Object-Show-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12287,7 +12288,7 @@ DEPRECATED | - + ### Rpc.Object.SubscribeIds @@ -12297,7 +12298,7 @@ DEPRECATED | - + ### Rpc.Object.SubscribeIds.Request @@ -12316,7 +12317,7 @@ DEPRECATED | - + ### Rpc.Object.SubscribeIds.Response @@ -12324,9 +12325,9 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.SubscribeIds.Response.Error](#anytype.Rpc.Object.SubscribeIds.Response.Error) | | | -| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | -| dependencies | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | +| error | [Rpc.Object.SubscribeIds.Response.Error](#anytype-Rpc-Object-SubscribeIds-Response-Error) | | | +| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | +| dependencies | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | | subId | [string](#string) | | | @@ -12334,7 +12335,7 @@ DEPRECATED | - + ### Rpc.Object.SubscribeIds.Response.Error @@ -12342,7 +12343,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype.Rpc.Object.SubscribeIds.Response.Error.Code) | | | +| code | [Rpc.Object.SubscribeIds.Response.Error.Code](#anytype-Rpc-Object-SubscribeIds-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12350,7 +12351,7 @@ DEPRECATED | - + ### Rpc.Object.ToBookmark @@ -12360,7 +12361,7 @@ DEPRECATED | - + ### Rpc.Object.ToBookmark.Request @@ -12376,7 +12377,7 @@ DEPRECATED | - + ### Rpc.Object.ToBookmark.Response @@ -12384,7 +12385,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ToBookmark.Response.Error](#anytype.Rpc.Object.ToBookmark.Response.Error) | | | +| error | [Rpc.Object.ToBookmark.Response.Error](#anytype-Rpc-Object-ToBookmark-Response-Error) | | | | objectId | [string](#string) | | | @@ -12392,7 +12393,7 @@ DEPRECATED | - + ### Rpc.Object.ToBookmark.Response.Error @@ -12400,7 +12401,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ToBookmark.Response.Error.Code](#anytype.Rpc.Object.ToBookmark.Response.Error.Code) | | | +| code | [Rpc.Object.ToBookmark.Response.Error.Code](#anytype-Rpc-Object-ToBookmark-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12408,7 +12409,7 @@ DEPRECATED | - + ### Rpc.Object.ToCollection @@ -12418,7 +12419,7 @@ DEPRECATED | - + ### Rpc.Object.ToCollection.Request @@ -12433,7 +12434,7 @@ DEPRECATED | - + ### Rpc.Object.ToCollection.Response @@ -12441,14 +12442,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ToCollection.Response.Error](#anytype.Rpc.Object.ToCollection.Response.Error) | | | +| error | [Rpc.Object.ToCollection.Response.Error](#anytype-Rpc-Object-ToCollection-Response-Error) | | | - + ### Rpc.Object.ToCollection.Response.Error @@ -12456,7 +12457,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ToCollection.Response.Error.Code](#anytype.Rpc.Object.ToCollection.Response.Error.Code) | | | +| code | [Rpc.Object.ToCollection.Response.Error.Code](#anytype-Rpc-Object-ToCollection-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12464,7 +12465,7 @@ DEPRECATED | - + ### Rpc.Object.ToSet @@ -12474,7 +12475,7 @@ DEPRECATED | - + ### Rpc.Object.ToSet.Request @@ -12490,7 +12491,7 @@ DEPRECATED | - + ### Rpc.Object.ToSet.Response @@ -12498,14 +12499,14 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.ToSet.Response.Error](#anytype.Rpc.Object.ToSet.Response.Error) | | | +| error | [Rpc.Object.ToSet.Response.Error](#anytype-Rpc-Object-ToSet-Response-Error) | | | - + ### Rpc.Object.ToSet.Response.Error @@ -12513,7 +12514,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.ToSet.Response.Error.Code](#anytype.Rpc.Object.ToSet.Response.Error.Code) | | | +| code | [Rpc.Object.ToSet.Response.Error.Code](#anytype-Rpc-Object-ToSet-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12521,7 +12522,7 @@ DEPRECATED | - + ### Rpc.Object.Undo @@ -12531,7 +12532,7 @@ DEPRECATED | - + ### Rpc.Object.Undo.Request @@ -12546,7 +12547,7 @@ DEPRECATED | - + ### Rpc.Object.Undo.Response @@ -12554,16 +12555,16 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.Undo.Response.Error](#anytype.Rpc.Object.Undo.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | -| counters | [Rpc.Object.UndoRedoCounter](#anytype.Rpc.Object.UndoRedoCounter) | | | +| error | [Rpc.Object.Undo.Response.Error](#anytype-Rpc-Object-Undo-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | +| counters | [Rpc.Object.UndoRedoCounter](#anytype-Rpc-Object-UndoRedoCounter) | | | - + ### Rpc.Object.Undo.Response.Error @@ -12571,7 +12572,7 @@ DEPRECATED | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.Undo.Response.Error.Code](#anytype.Rpc.Object.Undo.Response.Error.Code) | | | +| code | [Rpc.Object.Undo.Response.Error.Code](#anytype-Rpc-Object-Undo-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12579,7 +12580,7 @@ DEPRECATED | - + ### Rpc.Object.UndoRedoCounter Available undo/redo operations @@ -12595,7 +12596,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard @@ -12605,7 +12606,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Request @@ -12621,7 +12622,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Response @@ -12629,8 +12630,8 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.Object.WorkspaceSetDashboard.Response.Error](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | | objectId | [string](#string) | | | @@ -12638,7 +12639,7 @@ Available undo/redo operations - + ### Rpc.Object.WorkspaceSetDashboard.Response.Error @@ -12646,7 +12647,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype.Rpc.Object.WorkspaceSetDashboard.Response.Error.Code) | | | +| code | [Rpc.Object.WorkspaceSetDashboard.Response.Error.Code](#anytype-Rpc-Object-WorkspaceSetDashboard-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12654,7 +12655,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection @@ -12664,7 +12665,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add @@ -12674,7 +12675,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add.Request @@ -12691,7 +12692,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Add.Response @@ -12699,15 +12700,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectCollection.Add.Response.Error](#anytype.Rpc.ObjectCollection.Add.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.ObjectCollection.Add.Response.Error](#anytype-Rpc-ObjectCollection-Add-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.ObjectCollection.Add.Response.Error @@ -12715,7 +12716,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype.Rpc.ObjectCollection.Add.Response.Error.Code) | | | +| code | [Rpc.ObjectCollection.Add.Response.Error.Code](#anytype-Rpc-ObjectCollection-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12723,7 +12724,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove @@ -12733,7 +12734,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove.Request @@ -12749,7 +12750,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Remove.Response @@ -12757,15 +12758,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectCollection.Remove.Response.Error](#anytype.Rpc.ObjectCollection.Remove.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.ObjectCollection.Remove.Response.Error](#anytype-Rpc-ObjectCollection-Remove-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.ObjectCollection.Remove.Response.Error @@ -12773,7 +12774,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype.Rpc.ObjectCollection.Remove.Response.Error.Code) | | | +| code | [Rpc.ObjectCollection.Remove.Response.Error.Code](#anytype-Rpc-ObjectCollection-Remove-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12781,7 +12782,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort @@ -12791,7 +12792,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort.Request @@ -12807,7 +12808,7 @@ Available undo/redo operations - + ### Rpc.ObjectCollection.Sort.Response @@ -12815,15 +12816,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectCollection.Sort.Response.Error](#anytype.Rpc.ObjectCollection.Sort.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.ObjectCollection.Sort.Response.Error](#anytype-Rpc-ObjectCollection-Sort-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.ObjectCollection.Sort.Response.Error @@ -12831,7 +12832,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype.Rpc.ObjectCollection.Sort.Response.Error.Code) | | | +| code | [Rpc.ObjectCollection.Sort.Response.Error.Code](#anytype-Rpc-ObjectCollection-Sort-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12839,7 +12840,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation @@ -12849,7 +12850,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add @@ -12859,7 +12860,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add.Request @@ -12875,7 +12876,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Add.Response @@ -12883,15 +12884,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.Add.Response.Error](#anytype.Rpc.ObjectRelation.Add.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.ObjectRelation.Add.Response.Error](#anytype-Rpc-ObjectRelation-Add-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.ObjectRelation.Add.Response.Error @@ -12899,7 +12900,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype.Rpc.ObjectRelation.Add.Response.Error.Code) | | | +| code | [Rpc.ObjectRelation.Add.Response.Error.Code](#anytype-Rpc-ObjectRelation-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12907,7 +12908,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured @@ -12917,7 +12918,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured.Request @@ -12933,7 +12934,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.AddFeatured.Response @@ -12941,15 +12942,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.ObjectRelation.AddFeatured.Response.Error](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.ObjectRelation.AddFeatured.Response.Error @@ -12957,7 +12958,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.AddFeatured.Response.Error.Code) | | | +| code | [Rpc.ObjectRelation.AddFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-AddFeatured-Response-Error-Code) | | | | description | [string](#string) | | | @@ -12965,7 +12966,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete @@ -12975,7 +12976,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete.Request @@ -12991,7 +12992,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.Delete.Response @@ -12999,15 +13000,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.Delete.Response.Error](#anytype.Rpc.ObjectRelation.Delete.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.ObjectRelation.Delete.Response.Error](#anytype-Rpc-ObjectRelation-Delete-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.ObjectRelation.Delete.Response.Error @@ -13015,7 +13016,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype.Rpc.ObjectRelation.Delete.Response.Error.Code) | | | +| code | [Rpc.ObjectRelation.Delete.Response.Error.Code](#anytype-Rpc-ObjectRelation-Delete-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13023,7 +13024,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable @@ -13033,7 +13034,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable.Request @@ -13048,7 +13049,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.ListAvailable.Response @@ -13056,15 +13057,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error) | | | -| relations | [model.Relation](#anytype.model.Relation) | repeated | | +| error | [Rpc.ObjectRelation.ListAvailable.Response.Error](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error) | | | +| relations | [model.Relation](#anytype-model-Relation) | repeated | | - + ### Rpc.ObjectRelation.ListAvailable.Response.Error @@ -13072,7 +13073,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype.Rpc.ObjectRelation.ListAvailable.Response.Error.Code) | | | +| code | [Rpc.ObjectRelation.ListAvailable.Response.Error.Code](#anytype-Rpc-ObjectRelation-ListAvailable-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13080,7 +13081,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured @@ -13090,7 +13091,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured.Request @@ -13106,7 +13107,7 @@ Available undo/redo operations - + ### Rpc.ObjectRelation.RemoveFeatured.Response @@ -13114,15 +13115,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| error | [Rpc.ObjectRelation.RemoveFeatured.Response.Error](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.ObjectRelation.RemoveFeatured.Response.Error @@ -13130,7 +13131,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype.Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code) | | | +| code | [Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code](#anytype-Rpc-ObjectRelation-RemoveFeatured-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13138,7 +13139,7 @@ Available undo/redo operations - + ### Rpc.ObjectType @@ -13148,7 +13149,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation @@ -13158,7 +13159,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add @@ -13168,7 +13169,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add.Request @@ -13184,7 +13185,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Add.Response @@ -13192,15 +13193,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectType.Relation.Add.Response.Error](#anytype.Rpc.ObjectType.Relation.Add.Response.Error) | | | -| relations | [model.Relation](#anytype.model.Relation) | repeated | | +| error | [Rpc.ObjectType.Relation.Add.Response.Error](#anytype-Rpc-ObjectType-Relation-Add-Response-Error) | | | +| relations | [model.Relation](#anytype-model-Relation) | repeated | | - + ### Rpc.ObjectType.Relation.Add.Response.Error @@ -13208,7 +13209,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Add.Response.Error.Code) | | | +| code | [Rpc.ObjectType.Relation.Add.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13216,7 +13217,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List @@ -13226,7 +13227,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List.Request @@ -13242,7 +13243,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.List.Response @@ -13250,15 +13251,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectType.Relation.List.Response.Error](#anytype.Rpc.ObjectType.Relation.List.Response.Error) | | | -| relations | [model.RelationLink](#anytype.model.RelationLink) | repeated | | +| error | [Rpc.ObjectType.Relation.List.Response.Error](#anytype-Rpc-ObjectType-Relation-List-Response-Error) | | | +| relations | [model.RelationLink](#anytype-model-RelationLink) | repeated | | - + ### Rpc.ObjectType.Relation.List.Response.Error @@ -13266,7 +13267,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.List.Response.Error.Code) | | | +| code | [Rpc.ObjectType.Relation.List.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-List-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13274,7 +13275,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove @@ -13284,7 +13285,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove.Request @@ -13300,7 +13301,7 @@ Available undo/redo operations - + ### Rpc.ObjectType.Relation.Remove.Response @@ -13308,14 +13309,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error) | | | +| error | [Rpc.ObjectType.Relation.Remove.Response.Error](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error) | | | - + ### Rpc.ObjectType.Relation.Remove.Response.Error @@ -13323,7 +13324,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype.Rpc.ObjectType.Relation.Remove.Response.Error.Code) | | | +| code | [Rpc.ObjectType.Relation.Remove.Response.Error.Code](#anytype-Rpc-ObjectType-Relation-Remove-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13331,7 +13332,7 @@ Available undo/redo operations - + ### Rpc.Process @@ -13341,7 +13342,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel @@ -13351,7 +13352,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel.Request @@ -13366,7 +13367,7 @@ Available undo/redo operations - + ### Rpc.Process.Cancel.Response @@ -13374,14 +13375,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Process.Cancel.Response.Error](#anytype.Rpc.Process.Cancel.Response.Error) | | | +| error | [Rpc.Process.Cancel.Response.Error](#anytype-Rpc-Process-Cancel-Response-Error) | | | - + ### Rpc.Process.Cancel.Response.Error @@ -13389,7 +13390,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Process.Cancel.Response.Error.Code](#anytype.Rpc.Process.Cancel.Response.Error.Code) | | | +| code | [Rpc.Process.Cancel.Response.Error.Code](#anytype-Rpc-Process-Cancel-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13397,7 +13398,7 @@ Available undo/redo operations - + ### Rpc.Relation @@ -13407,7 +13408,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption @@ -13417,7 +13418,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption.Request @@ -13433,7 +13434,7 @@ Available undo/redo operations - + ### Rpc.Relation.ListRemoveOption.Response @@ -13441,14 +13442,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Relation.ListRemoveOption.Response.Error](#anytype.Rpc.Relation.ListRemoveOption.Response.Error) | | | +| error | [Rpc.Relation.ListRemoveOption.Response.Error](#anytype-Rpc-Relation-ListRemoveOption-Response-Error) | | | - + ### Rpc.Relation.ListRemoveOption.Response.Error @@ -13456,7 +13457,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype.Rpc.Relation.ListRemoveOption.Response.Error.Code) | | | +| code | [Rpc.Relation.ListRemoveOption.Response.Error.Code](#anytype-Rpc-Relation-ListRemoveOption-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13464,7 +13465,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options @@ -13474,7 +13475,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options.Request @@ -13489,7 +13490,7 @@ Available undo/redo operations - + ### Rpc.Relation.Options.Response @@ -13497,15 +13498,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Relation.Options.Response.Error](#anytype.Rpc.Relation.Options.Response.Error) | | | -| options | [model.RelationOptions](#anytype.model.RelationOptions) | | | +| error | [Rpc.Relation.Options.Response.Error](#anytype-Rpc-Relation-Options-Response-Error) | | | +| options | [model.RelationOptions](#anytype-model-RelationOptions) | | | - + ### Rpc.Relation.Options.Response.Error @@ -13513,7 +13514,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Relation.Options.Response.Error.Code](#anytype.Rpc.Relation.Options.Response.Error.Code) | | | +| code | [Rpc.Relation.Options.Response.Error.Code](#anytype-Rpc-Relation-Options-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13521,7 +13522,7 @@ Available undo/redo operations - + ### Rpc.Template @@ -13531,7 +13532,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone @@ -13541,7 +13542,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Request @@ -13556,7 +13557,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Response @@ -13564,7 +13565,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.Clone.Response.Error](#anytype.Rpc.Template.Clone.Response.Error) | | | +| error | [Rpc.Template.Clone.Response.Error](#anytype-Rpc-Template-Clone-Response-Error) | | | | id | [string](#string) | | created template id | @@ -13572,7 +13573,7 @@ Available undo/redo operations - + ### Rpc.Template.Clone.Response.Error @@ -13580,7 +13581,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.Clone.Response.Error.Code](#anytype.Rpc.Template.Clone.Response.Error.Code) | | | +| code | [Rpc.Template.Clone.Response.Error.Code](#anytype-Rpc-Template-Clone-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13588,7 +13589,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject @@ -13598,7 +13599,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Request @@ -13613,7 +13614,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Response @@ -13621,7 +13622,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.CreateFromObject.Response.Error](#anytype.Rpc.Template.CreateFromObject.Response.Error) | | | +| error | [Rpc.Template.CreateFromObject.Response.Error](#anytype-Rpc-Template-CreateFromObject-Response-Error) | | | | id | [string](#string) | | created template id | @@ -13629,7 +13630,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObject.Response.Error @@ -13637,7 +13638,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype.Rpc.Template.CreateFromObject.Response.Error.Code) | | | +| code | [Rpc.Template.CreateFromObject.Response.Error.Code](#anytype-Rpc-Template-CreateFromObject-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13645,7 +13646,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType @@ -13655,7 +13656,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Request @@ -13670,7 +13671,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Response @@ -13678,7 +13679,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.CreateFromObjectType.Response.Error](#anytype.Rpc.Template.CreateFromObjectType.Response.Error) | | | +| error | [Rpc.Template.CreateFromObjectType.Response.Error](#anytype-Rpc-Template-CreateFromObjectType-Response-Error) | | | | id | [string](#string) | | created template id | @@ -13686,7 +13687,7 @@ Available undo/redo operations - + ### Rpc.Template.CreateFromObjectType.Response.Error @@ -13694,7 +13695,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype.Rpc.Template.CreateFromObjectType.Response.Error.Code) | | | +| code | [Rpc.Template.CreateFromObjectType.Response.Error.Code](#anytype-Rpc-Template-CreateFromObjectType-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13702,7 +13703,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll @@ -13712,7 +13713,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll.Request @@ -13727,7 +13728,7 @@ Available undo/redo operations - + ### Rpc.Template.ExportAll.Response @@ -13735,16 +13736,16 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Template.ExportAll.Response.Error](#anytype.Rpc.Template.ExportAll.Response.Error) | | | +| error | [Rpc.Template.ExportAll.Response.Error](#anytype-Rpc-Template-ExportAll-Response-Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Template.ExportAll.Response.Error @@ -13752,7 +13753,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Template.ExportAll.Response.Error.Code](#anytype.Rpc.Template.ExportAll.Response.Error.Code) | | | +| code | [Rpc.Template.ExportAll.Response.Error.Code](#anytype-Rpc-Template-ExportAll-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13760,7 +13761,7 @@ Available undo/redo operations - + ### Rpc.Unsplash @@ -13770,7 +13771,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download @@ -13780,7 +13781,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Request @@ -13795,7 +13796,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Response @@ -13803,7 +13804,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Unsplash.Download.Response.Error](#anytype.Rpc.Unsplash.Download.Response.Error) | | | +| error | [Rpc.Unsplash.Download.Response.Error](#anytype-Rpc-Unsplash-Download-Response-Error) | | | | hash | [string](#string) | | | @@ -13811,7 +13812,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Download.Response.Error @@ -13819,7 +13820,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Unsplash.Download.Response.Error.Code](#anytype.Rpc.Unsplash.Download.Response.Error.Code) | | | +| code | [Rpc.Unsplash.Download.Response.Error.Code](#anytype-Rpc-Unsplash-Download-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13827,7 +13828,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search @@ -13837,7 +13838,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Request @@ -13853,7 +13854,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Response @@ -13861,15 +13862,15 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Unsplash.Search.Response.Error](#anytype.Rpc.Unsplash.Search.Response.Error) | | | -| pictures | [Rpc.Unsplash.Search.Response.Picture](#anytype.Rpc.Unsplash.Search.Response.Picture) | repeated | | +| error | [Rpc.Unsplash.Search.Response.Error](#anytype-Rpc-Unsplash-Search-Response-Error) | | | +| pictures | [Rpc.Unsplash.Search.Response.Picture](#anytype-Rpc-Unsplash-Search-Response-Picture) | repeated | | - + ### Rpc.Unsplash.Search.Response.Error @@ -13877,7 +13878,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Unsplash.Search.Response.Error.Code](#anytype.Rpc.Unsplash.Search.Response.Error.Code) | | | +| code | [Rpc.Unsplash.Search.Response.Error.Code](#anytype-Rpc-Unsplash-Search-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13885,7 +13886,7 @@ Available undo/redo operations - + ### Rpc.Unsplash.Search.Response.Picture @@ -13903,7 +13904,7 @@ Available undo/redo operations - + ### Rpc.UserData @@ -13913,7 +13914,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump @@ -13923,7 +13924,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump.Request @@ -13938,7 +13939,7 @@ Available undo/redo operations - + ### Rpc.UserData.Dump.Response @@ -13946,14 +13947,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.UserData.Dump.Response.Error](#anytype.Rpc.UserData.Dump.Response.Error) | | | +| error | [Rpc.UserData.Dump.Response.Error](#anytype-Rpc-UserData-Dump-Response-Error) | | | - + ### Rpc.UserData.Dump.Response.Error @@ -13961,7 +13962,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.UserData.Dump.Response.Error.Code](#anytype.Rpc.UserData.Dump.Response.Error.Code) | | | +| code | [Rpc.UserData.Dump.Response.Error.Code](#anytype-Rpc-UserData-Dump-Response-Error-Code) | | | | description | [string](#string) | | | @@ -13969,7 +13970,7 @@ Available undo/redo operations - + ### Rpc.Wallet @@ -13979,7 +13980,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession @@ -13989,7 +13990,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession.Request @@ -14004,7 +14005,7 @@ Available undo/redo operations - + ### Rpc.Wallet.CloseSession.Response @@ -14012,14 +14013,14 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.CloseSession.Response.Error](#anytype.Rpc.Wallet.CloseSession.Response.Error) | | | +| error | [Rpc.Wallet.CloseSession.Response.Error](#anytype-Rpc-Wallet-CloseSession-Response-Error) | | | - + ### Rpc.Wallet.CloseSession.Response.Error @@ -14027,7 +14028,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype.Rpc.Wallet.CloseSession.Response.Error.Code) | | | +| code | [Rpc.Wallet.CloseSession.Response.Error.Code](#anytype-Rpc-Wallet-CloseSession-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14035,7 +14036,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert @@ -14045,7 +14046,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Request @@ -14061,7 +14062,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Response @@ -14069,7 +14070,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.Convert.Response.Error](#anytype.Rpc.Wallet.Convert.Response.Error) | | Error while trying to recover a wallet | +| error | [Rpc.Wallet.Convert.Response.Error](#anytype-Rpc-Wallet-Convert-Response-Error) | | Error while trying to recover a wallet | | entropy | [string](#string) | | | | mnemonic | [string](#string) | | | @@ -14078,7 +14079,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Convert.Response.Error @@ -14086,7 +14087,7 @@ Available undo/redo operations | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.Convert.Response.Error.Code](#anytype.Rpc.Wallet.Convert.Response.Error.Code) | | | +| code | [Rpc.Wallet.Convert.Response.Error.Code](#anytype-Rpc-Wallet-Convert-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14094,7 +14095,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Create @@ -14104,7 +14105,7 @@ Available undo/redo operations - + ### Rpc.Wallet.Create.Request Front-end-to-middleware request to create a new wallet @@ -14119,7 +14120,7 @@ Front-end-to-middleware request to create a new wallet - + ### Rpc.Wallet.Create.Response Middleware-to-front-end response, that can contain mnemonic of a created account and a NULL error or an empty mnemonic and a non-NULL error @@ -14127,7 +14128,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.Create.Response.Error](#anytype.Rpc.Wallet.Create.Response.Error) | | | +| error | [Rpc.Wallet.Create.Response.Error](#anytype-Rpc-Wallet-Create-Response-Error) | | | | mnemonic | [string](#string) | | Mnemonic of a new account (sequence of words, divided by spaces) | @@ -14135,7 +14136,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Create.Response.Error @@ -14143,7 +14144,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.Create.Response.Error.Code](#anytype.Rpc.Wallet.Create.Response.Error.Code) | | | +| code | [Rpc.Wallet.Create.Response.Error.Code](#anytype-Rpc-Wallet-Create-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14151,7 +14152,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession @@ -14161,7 +14162,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Request @@ -14176,7 +14177,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Response @@ -14184,7 +14185,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.CreateSession.Response.Error](#anytype.Rpc.Wallet.CreateSession.Response.Error) | | | +| error | [Rpc.Wallet.CreateSession.Response.Error](#anytype-Rpc-Wallet-CreateSession-Response-Error) | | | | token | [string](#string) | | | @@ -14192,7 +14193,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.CreateSession.Response.Error @@ -14200,7 +14201,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype.Rpc.Wallet.CreateSession.Response.Error.Code) | | | +| code | [Rpc.Wallet.CreateSession.Response.Error.Code](#anytype-Rpc-Wallet-CreateSession-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14208,7 +14209,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Recover @@ -14218,7 +14219,7 @@ Middleware-to-front-end response, that can contain mnemonic of a created account - + ### Rpc.Wallet.Recover.Request Front end to middleware request-to-recover-a wallet with this mnemonic and a rootPath @@ -14234,7 +14235,7 @@ Front end to middleware request-to-recover-a wallet with this mnemonic and a roo - + ### Rpc.Wallet.Recover.Response Middleware-to-front-end response, that can contain a NULL error or a non-NULL error @@ -14242,14 +14243,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Wallet.Recover.Response.Error](#anytype.Rpc.Wallet.Recover.Response.Error) | | Error while trying to recover a wallet | +| error | [Rpc.Wallet.Recover.Response.Error](#anytype-Rpc-Wallet-Recover-Response-Error) | | Error while trying to recover a wallet | - + ### Rpc.Wallet.Recover.Response.Error @@ -14257,7 +14258,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Wallet.Recover.Response.Error.Code](#anytype.Rpc.Wallet.Recover.Response.Error.Code) | | | +| code | [Rpc.Wallet.Recover.Response.Error.Code](#anytype-Rpc-Wallet-Recover-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14265,7 +14266,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace @@ -14275,7 +14276,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create @@ -14285,7 +14286,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Request @@ -14300,7 +14301,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response @@ -14308,7 +14309,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Create.Response.Error](#anytype.Rpc.Workspace.Create.Response.Error) | | | +| error | [Rpc.Workspace.Create.Response.Error](#anytype-Rpc-Workspace-Create-Response-Error) | | | | workspaceId | [string](#string) | | | @@ -14316,7 +14317,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response.Error @@ -14324,7 +14325,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Create.Response.Error.Code](#anytype.Rpc.Workspace.Create.Response.Error.Code) | | | +| code | [Rpc.Workspace.Create.Response.Error.Code](#anytype-Rpc-Workspace-Create-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14332,7 +14333,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export @@ -14342,7 +14343,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Request @@ -14358,7 +14359,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Response @@ -14366,16 +14367,16 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Export.Response.Error](#anytype.Rpc.Workspace.Export.Response.Error) | | | +| error | [Rpc.Workspace.Export.Response.Error](#anytype-Rpc-Workspace-Export-Response-Error) | | | | path | [string](#string) | | | -| event | [ResponseEvent](#anytype.ResponseEvent) | | | +| event | [ResponseEvent](#anytype-ResponseEvent) | | | - + ### Rpc.Workspace.Export.Response.Error @@ -14383,7 +14384,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Export.Response.Error.Code](#anytype.Rpc.Workspace.Export.Response.Error.Code) | | | +| code | [Rpc.Workspace.Export.Response.Error.Code](#anytype-Rpc-Workspace-Export-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14391,7 +14392,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll @@ -14401,7 +14402,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Request @@ -14411,7 +14412,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response @@ -14419,7 +14420,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.GetAll.Response.Error](#anytype.Rpc.Workspace.GetAll.Response.Error) | | | +| error | [Rpc.Workspace.GetAll.Response.Error](#anytype-Rpc-Workspace-GetAll-Response-Error) | | | | workspaceIds | [string](#string) | repeated | | @@ -14427,7 +14428,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response.Error @@ -14435,7 +14436,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.GetAll.Response.Error.Code](#anytype.Rpc.Workspace.GetAll.Response.Error.Code) | | | +| code | [Rpc.Workspace.GetAll.Response.Error.Code](#anytype-Rpc-Workspace-GetAll-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14443,7 +14444,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent @@ -14453,7 +14454,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Request @@ -14463,7 +14464,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response @@ -14471,7 +14472,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.GetCurrent.Response.Error](#anytype.Rpc.Workspace.GetCurrent.Response.Error) | | | +| error | [Rpc.Workspace.GetCurrent.Response.Error](#anytype-Rpc-Workspace-GetCurrent-Response-Error) | | | | workspaceId | [string](#string) | | | @@ -14479,7 +14480,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response.Error @@ -14487,7 +14488,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype.Rpc.Workspace.GetCurrent.Response.Error.Code) | | | +| code | [Rpc.Workspace.GetCurrent.Response.Error.Code](#anytype-Rpc-Workspace-GetCurrent-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14495,7 +14496,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object @@ -14505,7 +14506,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add @@ -14515,7 +14516,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Request @@ -14530,7 +14531,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Response @@ -14538,16 +14539,16 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Object.Add.Response.Error](#anytype.Rpc.Workspace.Object.Add.Response.Error) | | | +| error | [Rpc.Workspace.Object.Add.Response.Error](#anytype-Rpc-Workspace-Object-Add-Response-Error) | | | | objectId | [string](#string) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Rpc.Workspace.Object.Add.Response.Error @@ -14555,7 +14556,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype.Rpc.Workspace.Object.Add.Response.Error.Code) | | | +| code | [Rpc.Workspace.Object.Add.Response.Error.Code](#anytype-Rpc-Workspace-Object-Add-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14563,7 +14564,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd @@ -14573,7 +14574,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Request @@ -14588,7 +14589,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response @@ -14596,7 +14597,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error) | | | +| error | [Rpc.Workspace.Object.ListAdd.Response.Error](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error) | | | | objectIds | [string](#string) | repeated | | @@ -14604,7 +14605,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response.Error @@ -14612,7 +14613,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListAdd.Response.Error.Code) | | | +| code | [Rpc.Workspace.Object.ListAdd.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListAdd-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14620,7 +14621,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove @@ -14630,7 +14631,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Request @@ -14645,7 +14646,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response @@ -14653,7 +14654,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error) | | | +| error | [Rpc.Workspace.Object.ListRemove.Response.Error](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error) | | | | ids | [string](#string) | repeated | | @@ -14661,7 +14662,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response.Error @@ -14669,7 +14670,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype.Rpc.Workspace.Object.ListRemove.Response.Error.Code) | | | +| code | [Rpc.Workspace.Object.ListRemove.Response.Error.Code](#anytype-Rpc-Workspace-Object-ListRemove-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14677,7 +14678,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select @@ -14687,7 +14688,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Request @@ -14702,7 +14703,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Response @@ -14710,14 +14711,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.Select.Response.Error](#anytype.Rpc.Workspace.Select.Response.Error) | | | +| error | [Rpc.Workspace.Select.Response.Error](#anytype-Rpc-Workspace-Select-Response-Error) | | | - + ### Rpc.Workspace.Select.Response.Error @@ -14725,7 +14726,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.Select.Response.Error.Code](#anytype.Rpc.Workspace.Select.Response.Error.Code) | | | +| code | [Rpc.Workspace.Select.Response.Error.Code](#anytype-Rpc-Workspace-Select-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14733,7 +14734,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted @@ -14743,7 +14744,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Request @@ -14759,7 +14760,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Response @@ -14767,14 +14768,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| error | [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error) | | | +| error | [Rpc.Workspace.SetIsHighlighted.Response.Error](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error) | | | - + ### Rpc.Workspace.SetIsHighlighted.Response.Error @@ -14782,7 +14783,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| code | [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype.Rpc.Workspace.SetIsHighlighted.Response.Error.Code) | | | +| code | [Rpc.Workspace.SetIsHighlighted.Response.Error.Code](#anytype-Rpc-Workspace-SetIsHighlighted-Response-Error-Code) | | | | description | [string](#string) | | | @@ -14790,7 +14791,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### StreamRequest @@ -14807,7 +14808,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.ConfigUpdate.Response.Error.Code @@ -14823,7 +14824,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.ConfigUpdate.Timezones @@ -14861,7 +14862,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Create.Response.Error.Code @@ -14884,7 +14885,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Delete.Response.Error.Code @@ -14899,7 +14900,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Move.Response.Error.Code @@ -14918,7 +14919,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Recover.Response.Error.Code @@ -14939,7 +14940,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.RecoverFromLegacyExport.Response.Error.Code @@ -14953,7 +14954,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Select.Response.Error.Code @@ -14976,7 +14977,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Account.Stop.Response.Error.Code @@ -14992,7 +14993,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.GetVersion.Response.Error.Code @@ -15008,7 +15009,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.SetDeviceState.Request.DeviceState @@ -15020,7 +15021,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.SetDeviceState.Response.Error.Code @@ -15034,7 +15035,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.App.Shutdown.Response.Error.Code @@ -15048,7 +15049,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Copy.Response.Error.Code @@ -15061,7 +15062,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Create.Response.Error.Code @@ -15074,7 +15075,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.CreateWidget.Response.Error.Code @@ -15087,7 +15088,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Cut.Response.Error.Code @@ -15100,7 +15101,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Download.Response.Error.Code @@ -15113,7 +15114,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Export.Response.Error.Code @@ -15126,7 +15127,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListConvertToObjects.Response.Error.Code @@ -15139,7 +15140,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListDelete.Response.Error.Code @@ -15152,7 +15153,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListDuplicate.Response.Error.Code @@ -15165,7 +15166,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListMoveToExistingObject.Response.Error.Code @@ -15178,7 +15179,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListMoveToNewObject.Response.Error.Code @@ -15191,7 +15192,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetAlign.Response.Error.Code @@ -15204,7 +15205,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetBackgroundColor.Response.Error.Code @@ -15217,7 +15218,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetFields.Response.Error.Code @@ -15230,7 +15231,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListSetVerticalAlign.Response.Error.Code @@ -15243,7 +15244,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.ListTurnInto.Response.Error.Code @@ -15256,7 +15257,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Merge.Response.Error.Code @@ -15269,7 +15270,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Paste.Response.Error.Code @@ -15282,7 +15283,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Replace.Response.Error.Code @@ -15295,7 +15296,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.SetFields.Response.Error.Code @@ -15308,7 +15309,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Split.Request.Mode @@ -15322,7 +15323,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Split.Response.Error.Code @@ -15335,7 +15336,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Block.Upload.Response.Error.Code @@ -15348,7 +15349,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockBookmark.CreateAndFetch.Response.Error.Code @@ -15361,7 +15362,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockBookmark.Fetch.Response.Error.Code @@ -15374,7 +15375,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.CreateBookmark.Response.Error.Code @@ -15387,7 +15388,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.CreateFromExistingObject.Response.Error.Code @@ -15400,7 +15401,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Add.Response.Error.Code @@ -15413,7 +15414,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Remove.Response.Error.Code @@ -15426,7 +15427,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Replace.Response.Error.Code @@ -15439,7 +15440,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Filter.Sort.Response.Error.Code @@ -15452,7 +15453,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.GroupOrder.Update.Response.Error.Code @@ -15465,7 +15466,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ObjectOrder.Move.Response.Error.Code @@ -15478,7 +15479,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ObjectOrder.Update.Response.Error.Code @@ -15491,7 +15492,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.Add.Response.Error.Code @@ -15504,7 +15505,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.Delete.Response.Error.Code @@ -15517,7 +15518,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Relation.ListAvailable.Response.Error.Code @@ -15531,7 +15532,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.SetSource.Response.Error.Code @@ -15544,7 +15545,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Add.Response.Error.Code @@ -15557,7 +15558,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Remove.Response.Error.Code @@ -15570,7 +15571,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Replace.Response.Error.Code @@ -15583,7 +15584,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.Sort.Sort.Response.Error.Code @@ -15596,7 +15597,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Create.Response.Error.Code @@ -15609,7 +15610,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Delete.Response.Error.Code @@ -15622,7 +15623,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.SetActive.Response.Error.Code @@ -15635,7 +15636,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.SetPosition.Response.Error.Code @@ -15648,7 +15649,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.View.Update.Response.Error.Code @@ -15661,7 +15662,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Add.Response.Error.Code @@ -15674,7 +15675,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Remove.Response.Error.Code @@ -15687,7 +15688,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Replace.Response.Error.Code @@ -15700,7 +15701,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDataview.ViewRelation.Sort.Response.Error.Code @@ -15713,7 +15714,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockDiv.ListSetStyle.Response.Error.Code @@ -15726,7 +15727,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.CreateAndUpload.Response.Error.Code @@ -15739,7 +15740,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.ListSetStyle.Response.Error.Code @@ -15752,7 +15753,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockFile.SetName.Response.Error.Code @@ -15765,7 +15766,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockImage.SetName.Response.Error.Code @@ -15778,7 +15779,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockImage.SetWidth.Response.Error.Code @@ -15791,7 +15792,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLatex.SetText.Response.Error.Code @@ -15804,7 +15805,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLink.CreateWithObject.Response.Error.Code @@ -15817,7 +15818,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockLink.ListSetAppearance.Response.Error.Code @@ -15830,7 +15831,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockRelation.Add.Response.Error.Code @@ -15843,7 +15844,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockRelation.SetKey.Response.Error.Code @@ -15856,7 +15857,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnCreate.Response.Error.Code @@ -15869,7 +15870,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnDelete.Response.Error.Code @@ -15882,7 +15883,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnDuplicate.Response.Error.Code @@ -15895,7 +15896,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnListFill.Response.Error.Code @@ -15908,7 +15909,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.ColumnMove.Response.Error.Code @@ -15921,7 +15922,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Create.Response.Error.Code @@ -15934,7 +15935,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Expand.Response.Error.Code @@ -15947,7 +15948,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowCreate.Response.Error.Code @@ -15960,7 +15961,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowDelete.Response.Error.Code @@ -15973,7 +15974,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowDuplicate.Response.Error.Code @@ -15986,7 +15987,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowListClean.Response.Error.Code @@ -15999,7 +16000,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowListFill.Response.Error.Code @@ -16012,7 +16013,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.RowSetHeader.Response.Error.Code @@ -16025,7 +16026,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockTable.Sort.Response.Error.Code @@ -16038,7 +16039,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListClearContent.Response.Error.Code @@ -16051,7 +16052,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListClearStyle.Response.Error.Code @@ -16064,7 +16065,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetColor.Response.Error.Code @@ -16077,7 +16078,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetMark.Response.Error.Code @@ -16090,7 +16091,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.ListSetStyle.Response.Error.Code @@ -16103,7 +16104,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetChecked.Response.Error.Code @@ -16116,7 +16117,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetColor.Response.Error.Code @@ -16129,7 +16130,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetIcon.Response.Error.Code @@ -16142,7 +16143,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetMarks.Get.Response.Error.Code @@ -16155,7 +16156,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetStyle.Response.Error.Code @@ -16168,7 +16169,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockText.SetText.Response.Error.Code @@ -16181,7 +16182,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockVideo.SetName.Response.Error.Code @@ -16194,7 +16195,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockVideo.SetWidth.Response.Error.Code @@ -16207,7 +16208,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockWidget.SetLayout.Response.Error.Code @@ -16220,7 +16221,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockWidget.SetLimit.Response.Error.Code @@ -16233,7 +16234,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockWidget.SetTargetId.Response.Error.Code @@ -16246,7 +16247,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.BlockWidget.SetViewId.Response.Error.Code @@ -16259,7 +16260,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.ExportLocalstore.Response.Error.Code @@ -16272,7 +16273,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.Ping.Response.Error.Code @@ -16285,7 +16286,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.SpaceSummary.Response.Error.Code @@ -16298,7 +16299,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.Tree.Response.Error.Code @@ -16311,7 +16312,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Debug.TreeHeads.Response.Error.Code @@ -16324,7 +16325,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Download.Response.Error.Code @@ -16338,7 +16339,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Drop.Response.Error.Code @@ -16351,7 +16352,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.ListOffload.Response.Error.Code @@ -16365,7 +16366,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Offload.Response.Error.Code @@ -16380,7 +16381,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.SpaceUsage.Response.Error.Code @@ -16393,7 +16394,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.File.Upload.Response.Error.Code @@ -16406,7 +16407,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.GenericErrorResponse.Error.Code @@ -16419,7 +16420,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.GetVersions.Response.Error.Code @@ -16432,7 +16433,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.SetVersion.Response.Error.Code @@ -16445,7 +16446,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.History.ShowVersion.Response.Error.Code @@ -16458,7 +16459,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.LinkPreview.Response.Error.Code @@ -16471,7 +16472,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Log.Send.Request.Level @@ -16487,7 +16488,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Log.Send.Response.Error.Code @@ -16502,7 +16503,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Metrics.SetParameters.Response.Error.Code @@ -16515,7 +16516,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.Context @@ -16528,7 +16529,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.GetObjectInfoWithLinks.Response.Error.Code @@ -16541,7 +16542,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Navigation.ListObjects.Response.Error.Code @@ -16554,7 +16555,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ApplyTemplate.Response.Error.Code @@ -16567,7 +16568,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.BookmarkFetch.Response.Error.Code @@ -16580,7 +16581,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Close.Response.Error.Code @@ -16593,7 +16594,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Create.Response.Error.Code @@ -16606,7 +16607,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateBookmark.Response.Error.Code @@ -16619,7 +16620,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateObjectType.Response.Error.Code @@ -16633,7 +16634,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateRelation.Response.Error.Code @@ -16646,7 +16647,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateRelationOption.Response.Error.Code @@ -16659,7 +16660,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.CreateSet.Response.Error.Code @@ -16673,7 +16674,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Duplicate.Response.Error.Code @@ -16686,7 +16687,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Graph.Edge.Type @@ -16698,7 +16699,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Graph.Response.Error.Code @@ -16711,7 +16712,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.GroupsSubscribe.Response.Error.Code @@ -16724,7 +16725,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Notion.ValidateToken.Response.Error.Code @@ -16742,7 +16743,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.CsvParams.Mode @@ -16754,7 +16755,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.Mode @@ -16766,7 +16767,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Request.Type @@ -16783,7 +16784,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Import.Response.Error.Code @@ -16800,7 +16801,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportList.ImportResponse.Type @@ -16814,7 +16815,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportList.Response.Error.Code @@ -16828,7 +16829,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportUseCase.Request.UseCase @@ -16842,7 +16843,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ImportUseCase.Response.Error.Code @@ -16855,7 +16856,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListDelete.Response.Error.Code @@ -16868,7 +16869,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListDuplicate.Response.Error.Code @@ -16881,7 +16882,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListExport.Format @@ -16897,7 +16898,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListExport.Response.Error.Code @@ -16910,7 +16911,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListSetIsArchived.Response.Error.Code @@ -16923,7 +16924,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ListSetIsFavorite.Response.Error.Code @@ -16936,7 +16937,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Open.Response.Error.Code @@ -16951,7 +16952,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.OpenBreadcrumbs.Response.Error.Code @@ -16964,7 +16965,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Redo.Response.Error.Code @@ -16978,7 +16979,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Search.Response.Error.Code @@ -16991,7 +16992,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SearchSubscribe.Response.Error.Code @@ -17004,7 +17005,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SearchUnsubscribe.Response.Error.Code @@ -17017,7 +17018,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetBreadcrumbs.Response.Error.Code @@ -17030,7 +17031,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetDetails.Response.Error.Code @@ -17043,7 +17044,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetInternalFlags.Response.Error.Code @@ -17057,7 +17058,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetIsArchived.Response.Error.Code @@ -17070,7 +17071,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetIsFavorite.Response.Error.Code @@ -17083,7 +17084,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetLayout.Response.Error.Code @@ -17096,7 +17097,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetObjectType.Response.Error.Code @@ -17110,7 +17111,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SetSource.Response.Error.Code @@ -17123,7 +17124,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ShareByLink.Response.Error.Code @@ -17136,7 +17137,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Show.Response.Error.Code @@ -17151,7 +17152,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.SubscribeIds.Response.Error.Code @@ -17164,7 +17165,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToBookmark.Response.Error.Code @@ -17177,7 +17178,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToCollection.Response.Error.Code @@ -17190,7 +17191,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.ToSet.Response.Error.Code @@ -17203,7 +17204,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.Undo.Response.Error.Code @@ -17217,7 +17218,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Object.WorkspaceSetDashboard.Response.Error.Code @@ -17230,7 +17231,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Add.Response.Error.Code @@ -17243,7 +17244,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Remove.Response.Error.Code @@ -17256,7 +17257,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectCollection.Sort.Response.Error.Code @@ -17269,7 +17270,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.Add.Response.Error.Code @@ -17282,7 +17283,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.AddFeatured.Response.Error.Code @@ -17295,7 +17296,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.Delete.Response.Error.Code @@ -17308,7 +17309,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.ListAvailable.Response.Error.Code @@ -17321,7 +17322,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectRelation.RemoveFeatured.Response.Error.Code @@ -17334,7 +17335,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.Add.Response.Error.Code @@ -17349,7 +17350,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.List.Response.Error.Code @@ -17363,7 +17364,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.ObjectType.Relation.Remove.Response.Error.Code @@ -17378,7 +17379,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Process.Cancel.Response.Error.Code @@ -17391,7 +17392,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Relation.ListRemoveOption.Response.Error.Code @@ -17405,7 +17406,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Relation.Options.Response.Error.Code @@ -17418,7 +17419,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.Clone.Response.Error.Code @@ -17431,7 +17432,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.CreateFromObject.Response.Error.Code @@ -17444,7 +17445,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.CreateFromObjectType.Response.Error.Code @@ -17457,7 +17458,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Template.ExportAll.Response.Error.Code @@ -17470,7 +17471,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Unsplash.Download.Response.Error.Code @@ -17484,7 +17485,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Unsplash.Search.Response.Error.Code @@ -17498,7 +17499,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.UserData.Dump.Response.Error.Code @@ -17511,7 +17512,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.CloseSession.Response.Error.Code @@ -17524,7 +17525,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Convert.Response.Error.Code @@ -17537,7 +17538,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Create.Response.Error.Code @@ -17551,7 +17552,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.CreateSession.Response.Error.Code @@ -17564,7 +17565,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Wallet.Recover.Response.Error.Code @@ -17578,7 +17579,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Create.Response.Error.Code @@ -17591,7 +17592,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Export.Response.Error.Code @@ -17604,7 +17605,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetAll.Response.Error.Code @@ -17617,7 +17618,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.GetCurrent.Response.Error.Code @@ -17630,7 +17631,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.Add.Response.Error.Code @@ -17643,7 +17644,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListAdd.Response.Error.Code @@ -17656,7 +17657,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Object.ListRemove.Response.Error.Code @@ -17669,7 +17670,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.Select.Response.Error.Code @@ -17682,7 +17683,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### Rpc.Workspace.SetIsHighlighted.Response.Error.Code @@ -17697,7 +17698,7 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - + ### File-level Extensions | Extension | Type | Base | Number | Description | @@ -17710,14 +17711,14 @@ Middleware-to-front-end response, that can contain a NULL error or a non-NULL er - +

Top

## pb/protos/events.proto - + ### Event Event – type of message, that could be sent from a middleware to the corresponding front-end. @@ -17725,9 +17726,9 @@ Event – type of message, that could be sent from a middleware to the correspon | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| messages | [Event.Message](#anytype.Event.Message) | repeated | | +| messages | [Event.Message](#anytype-Event-Message) | repeated | | | contextId | [string](#string) | | | -| initiator | [model.Account](#anytype.model.Account) | | | +| initiator | [model.Account](#anytype-model-Account) | | | | traceId | [string](#string) | | | @@ -17735,7 +17736,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account @@ -17745,7 +17746,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account.Config @@ -17755,7 +17756,7 @@ Event – type of message, that could be sent from a middleware to the correspon - + ### Event.Account.Config.Update @@ -17763,15 +17764,15 @@ Event – type of message, that could be sent from a middleware to the correspon | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| config | [model.Account.Config](#anytype.model.Account.Config) | | | -| status | [model.Account.Status](#anytype.model.Account.Status) | | | +| config | [model.Account.Config](#anytype-model-Account-Config) | | | +| status | [model.Account.Status](#anytype-model-Account-Status) | | | - + ### Event.Account.Details @@ -17780,14 +17781,14 @@ Event – type of message, that could be sent from a middleware to the correspon | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | profileId | [string](#string) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Event.Account.Show Message, that will be sent to the front on each account found after an AccountRecoverRequest @@ -17796,14 +17797,14 @@ Message, that will be sent to the front on each account found after an AccountRe | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | index | [int32](#int32) | | Number of an account in an all found accounts list | -| account | [model.Account](#anytype.model.Account) | | An Account, that has been found for the mnemonic | +| account | [model.Account](#anytype-model-Account) | | An Account, that has been found for the mnemonic | - + ### Event.Account.Update @@ -17811,15 +17812,15 @@ Message, that will be sent to the front on each account found after an AccountRe | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| config | [model.Account.Config](#anytype.model.Account.Config) | | | -| status | [model.Account.Status](#anytype.model.Account.Status) | | | +| config | [model.Account.Config](#anytype-model-Account-Config) | | | +| status | [model.Account.Status](#anytype-model-Account-Status) | | | - + ### Event.Block @@ -17829,7 +17830,7 @@ Message, that will be sent to the front on each account found after an AccountRe - + ### Event.Block.Add Event to show internal blocks on a client. @@ -17846,14 +17847,14 @@ B. Partial block load | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| blocks | [model.Block](#anytype.model.Block) | repeated | id -> block | +| blocks | [model.Block](#anytype-model-Block) | repeated | id -> block | - + ### Event.Block.Dataview @@ -17863,7 +17864,7 @@ B. Partial block load - + ### Event.Block.Dataview.GroupOrderUpdate @@ -17872,14 +17873,14 @@ B. Partial block load | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | -| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) | | | +| groupOrder | [model.Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) | | | - + ### Event.Block.Dataview.IsCollectionSet @@ -17895,7 +17896,7 @@ B. Partial block load - + ### Event.Block.Dataview.ObjectOrderUpdate @@ -17906,14 +17907,14 @@ B. Partial block load | id | [string](#string) | | dataview block's id | | viewId | [string](#string) | | | | groupId | [string](#string) | | | -| sliceChanges | [Event.Block.Dataview.SliceChange](#anytype.Event.Block.Dataview.SliceChange) | repeated | | +| sliceChanges | [Event.Block.Dataview.SliceChange](#anytype-Event-Block-Dataview-SliceChange) | repeated | | - + ### Event.Block.Dataview.OldRelationDelete @@ -17929,7 +17930,7 @@ B. Partial block load - + ### Event.Block.Dataview.OldRelationSet sent when the dataview relation has been changed or added @@ -17939,14 +17940,14 @@ sent when the dataview relation has been changed or added | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | | relationKey | [string](#string) | | relation key to update | -| relation | [model.Relation](#anytype.model.Relation) | | | +| relation | [model.Relation](#anytype-model-Relation) | | | - + ### Event.Block.Dataview.RelationDelete @@ -17962,7 +17963,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.RelationSet sent when the dataview relation has been changed or added @@ -17971,14 +17972,14 @@ sent when the dataview relation has been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | -| relationLinks | [model.RelationLink](#anytype.model.RelationLink) | repeated | relation id to update | +| relationLinks | [model.RelationLink](#anytype-model-RelationLink) | repeated | relation id to update | - + ### Event.Block.Dataview.SliceChange @@ -17986,7 +17987,7 @@ sent when the dataview relation has been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| op | [Event.Block.Dataview.SliceOperation](#anytype.Event.Block.Dataview.SliceOperation) | | | +| op | [Event.Block.Dataview.SliceOperation](#anytype-Event-Block-Dataview-SliceOperation) | | | | ids | [string](#string) | repeated | | | afterId | [string](#string) | | | @@ -17995,7 +17996,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.SourceSet @@ -18011,7 +18012,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.TargetObjectIdSet @@ -18027,7 +18028,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewDelete @@ -18043,7 +18044,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewOrder @@ -18059,7 +18060,7 @@ sent when the dataview relation has been changed or added - + ### Event.Block.Dataview.ViewSet sent when the view have been changed or added @@ -18069,14 +18070,14 @@ sent when the view have been changed or added | ----- | ---- | ----- | ----------- | | id | [string](#string) | | dataview block's id | | viewId | [string](#string) | | view id, client should double check this to make sure client doesn't switch the active view in the middle | -| view | [model.Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | | | +| view | [model.Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | | | - + ### Event.Block.Dataview.ViewUpdate @@ -18086,17 +18087,17 @@ sent when the view have been changed or added | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | viewId | [string](#string) | | | -| filter | [Event.Block.Dataview.ViewUpdate.Filter](#anytype.Event.Block.Dataview.ViewUpdate.Filter) | repeated | | -| relation | [Event.Block.Dataview.ViewUpdate.Relation](#anytype.Event.Block.Dataview.ViewUpdate.Relation) | repeated | | -| sort | [Event.Block.Dataview.ViewUpdate.Sort](#anytype.Event.Block.Dataview.ViewUpdate.Sort) | repeated | | -| fields | [Event.Block.Dataview.ViewUpdate.Fields](#anytype.Event.Block.Dataview.ViewUpdate.Fields) | | | +| filter | [Event.Block.Dataview.ViewUpdate.Filter](#anytype-Event-Block-Dataview-ViewUpdate-Filter) | repeated | | +| relation | [Event.Block.Dataview.ViewUpdate.Relation](#anytype-Event-Block-Dataview-ViewUpdate-Relation) | repeated | | +| sort | [Event.Block.Dataview.ViewUpdate.Sort](#anytype-Event-Block-Dataview-ViewUpdate-Sort) | repeated | | +| fields | [Event.Block.Dataview.ViewUpdate.Fields](#anytype-Event-Block-Dataview-ViewUpdate-Fields) | | | - + ### Event.Block.Dataview.ViewUpdate.Fields @@ -18104,11 +18105,11 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| type | [model.Block.Content.Dataview.View.Type](#anytype.model.Block.Content.Dataview.View.Type) | | | +| type | [model.Block.Content.Dataview.View.Type](#anytype-model-Block-Content-Dataview-View-Type) | | | | name | [string](#string) | | | | coverRelationKey | [string](#string) | | Relation used for cover in gallery | | hideIcon | [bool](#bool) | | Hide icon near name | -| cardSize | [model.Block.Content.Dataview.View.Size](#anytype.model.Block.Content.Dataview.View.Size) | | Gallery card size | +| cardSize | [model.Block.Content.Dataview.View.Size](#anytype-model-Block-Content-Dataview-View-Size) | | Gallery card size | | coverFit | [bool](#bool) | | Image fits container | | groupRelationKey | [string](#string) | | Group view by this relationKey | | groupBackgroundColors | [bool](#bool) | | Enable backgrounds in groups | @@ -18119,7 +18120,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter @@ -18127,17 +18128,17 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| add | [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Add) | | | -| remove | [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Remove) | | | -| update | [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Update) | | | -| move | [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype.Event.Block.Dataview.ViewUpdate.Filter.Move) | | | +| add | [Event.Block.Dataview.ViewUpdate.Filter.Add](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Add) | | | +| remove | [Event.Block.Dataview.ViewUpdate.Filter.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Remove) | | | +| update | [Event.Block.Dataview.ViewUpdate.Filter.Update](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Update) | | | +| move | [Event.Block.Dataview.ViewUpdate.Filter.Move](#anytype-Event-Block-Dataview-ViewUpdate-Filter-Move) | | | - + ### Event.Block.Dataview.ViewUpdate.Filter.Add @@ -18146,14 +18147,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | afterId | [string](#string) | | | -| items | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | +| items | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | - + ### Event.Block.Dataview.ViewUpdate.Filter.Move @@ -18169,7 +18170,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter.Remove @@ -18184,7 +18185,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Filter.Update @@ -18193,14 +18194,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| item | [model.Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | | | +| item | [model.Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | | | - + ### Event.Block.Dataview.ViewUpdate.Relation @@ -18208,17 +18209,17 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| add | [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Add) | | | -| remove | [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Remove) | | | -| update | [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Update) | | | -| move | [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype.Event.Block.Dataview.ViewUpdate.Relation.Move) | | | +| add | [Event.Block.Dataview.ViewUpdate.Relation.Add](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Add) | | | +| remove | [Event.Block.Dataview.ViewUpdate.Relation.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Remove) | | | +| update | [Event.Block.Dataview.ViewUpdate.Relation.Update](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Update) | | | +| move | [Event.Block.Dataview.ViewUpdate.Relation.Move](#anytype-Event-Block-Dataview-ViewUpdate-Relation-Move) | | | - + ### Event.Block.Dataview.ViewUpdate.Relation.Add @@ -18227,14 +18228,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | afterId | [string](#string) | | | -| items | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | repeated | | +| items | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | repeated | | - + ### Event.Block.Dataview.ViewUpdate.Relation.Move @@ -18250,7 +18251,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Relation.Remove @@ -18265,7 +18266,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Relation.Update @@ -18274,14 +18275,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| item | [model.Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | | | +| item | [model.Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | | | - + ### Event.Block.Dataview.ViewUpdate.Sort @@ -18289,17 +18290,17 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| add | [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Add) | | | -| remove | [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Remove) | | | -| update | [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Update) | | | -| move | [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype.Event.Block.Dataview.ViewUpdate.Sort.Move) | | | +| add | [Event.Block.Dataview.ViewUpdate.Sort.Add](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Add) | | | +| remove | [Event.Block.Dataview.ViewUpdate.Sort.Remove](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Remove) | | | +| update | [Event.Block.Dataview.ViewUpdate.Sort.Update](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Update) | | | +| move | [Event.Block.Dataview.ViewUpdate.Sort.Move](#anytype-Event-Block-Dataview-ViewUpdate-Sort-Move) | | | - + ### Event.Block.Dataview.ViewUpdate.Sort.Add @@ -18308,14 +18309,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | afterId | [string](#string) | | | -| items | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | | +| items | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | | - + ### Event.Block.Dataview.ViewUpdate.Sort.Move @@ -18331,7 +18332,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Sort.Remove @@ -18346,7 +18347,7 @@ sent when the view have been changed or added - + ### Event.Block.Dataview.ViewUpdate.Sort.Update @@ -18355,14 +18356,14 @@ sent when the view have been changed or added | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| item | [model.Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | | | +| item | [model.Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | | | - + ### Event.Block.Delete @@ -18377,7 +18378,7 @@ sent when the view have been changed or added - + ### Event.Block.FilesUpload Middleware to front end event message, that will be sent on one of this scenarios: @@ -18396,7 +18397,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill @@ -18406,7 +18407,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Align @@ -18415,14 +18416,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| align | [model.Block.Align](#anytype.model.Block.Align) | | | +| align | [model.Block.Align](#anytype-model-Block-Align) | | | - + ### Event.Block.Fill.BackgroundColor @@ -18438,7 +18439,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark @@ -18447,20 +18448,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| url | [Event.Block.Fill.Bookmark.Url](#anytype.Event.Block.Fill.Bookmark.Url) | | | -| title | [Event.Block.Fill.Bookmark.Title](#anytype.Event.Block.Fill.Bookmark.Title) | | | -| description | [Event.Block.Fill.Bookmark.Description](#anytype.Event.Block.Fill.Bookmark.Description) | | | -| imageHash | [Event.Block.Fill.Bookmark.ImageHash](#anytype.Event.Block.Fill.Bookmark.ImageHash) | | | -| faviconHash | [Event.Block.Fill.Bookmark.FaviconHash](#anytype.Event.Block.Fill.Bookmark.FaviconHash) | | | -| type | [Event.Block.Fill.Bookmark.Type](#anytype.Event.Block.Fill.Bookmark.Type) | | | -| targetObjectId | [Event.Block.Fill.Bookmark.TargetObjectId](#anytype.Event.Block.Fill.Bookmark.TargetObjectId) | | | +| url | [Event.Block.Fill.Bookmark.Url](#anytype-Event-Block-Fill-Bookmark-Url) | | | +| title | [Event.Block.Fill.Bookmark.Title](#anytype-Event-Block-Fill-Bookmark-Title) | | | +| description | [Event.Block.Fill.Bookmark.Description](#anytype-Event-Block-Fill-Bookmark-Description) | | | +| imageHash | [Event.Block.Fill.Bookmark.ImageHash](#anytype-Event-Block-Fill-Bookmark-ImageHash) | | | +| faviconHash | [Event.Block.Fill.Bookmark.FaviconHash](#anytype-Event-Block-Fill-Bookmark-FaviconHash) | | | +| type | [Event.Block.Fill.Bookmark.Type](#anytype-Event-Block-Fill-Bookmark-Type) | | | +| targetObjectId | [Event.Block.Fill.Bookmark.TargetObjectId](#anytype-Event-Block-Fill-Bookmark-TargetObjectId) | | | - + ### Event.Block.Fill.Bookmark.Description @@ -18475,7 +18476,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.FaviconHash @@ -18490,7 +18491,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.ImageHash @@ -18505,7 +18506,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.TargetObjectId @@ -18520,7 +18521,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.Title @@ -18535,7 +18536,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Bookmark.Type @@ -18543,14 +18544,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | +| value | [model.LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | - + ### Event.Block.Fill.Bookmark.Url @@ -18565,7 +18566,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.ChildrenIds @@ -18581,7 +18582,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.DatabaseRecords @@ -18590,14 +18591,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| records | [google.protobuf.Struct](#google.protobuf.Struct) | repeated | | +| records | [google.protobuf.Struct](#google-protobuf-Struct) | repeated | | - + ### Event.Block.Fill.Details @@ -18606,14 +18607,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Event.Block.Fill.Div @@ -18622,14 +18623,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| style | [Event.Block.Fill.Div.Style](#anytype.Event.Block.Fill.Div.Style) | | | +| style | [Event.Block.Fill.Div.Style](#anytype-Event-Block-Fill-Div-Style) | | | - + ### Event.Block.Fill.Div.Style @@ -18637,14 +18638,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | +| value | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | - + ### Event.Block.Fill.Fields @@ -18653,14 +18654,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Event.Block.Fill.File @@ -18669,20 +18670,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Event.Block.Fill.File.Type](#anytype.Event.Block.Fill.File.Type) | | | -| state | [Event.Block.Fill.File.State](#anytype.Event.Block.Fill.File.State) | | | -| mime | [Event.Block.Fill.File.Mime](#anytype.Event.Block.Fill.File.Mime) | | | -| hash | [Event.Block.Fill.File.Hash](#anytype.Event.Block.Fill.File.Hash) | | | -| name | [Event.Block.Fill.File.Name](#anytype.Event.Block.Fill.File.Name) | | | -| size | [Event.Block.Fill.File.Size](#anytype.Event.Block.Fill.File.Size) | | | -| style | [Event.Block.Fill.File.Style](#anytype.Event.Block.Fill.File.Style) | | | +| type | [Event.Block.Fill.File.Type](#anytype-Event-Block-Fill-File-Type) | | | +| state | [Event.Block.Fill.File.State](#anytype-Event-Block-Fill-File-State) | | | +| mime | [Event.Block.Fill.File.Mime](#anytype-Event-Block-Fill-File-Mime) | | | +| hash | [Event.Block.Fill.File.Hash](#anytype-Event-Block-Fill-File-Hash) | | | +| name | [Event.Block.Fill.File.Name](#anytype-Event-Block-Fill-File-Name) | | | +| size | [Event.Block.Fill.File.Size](#anytype-Event-Block-Fill-File-Size) | | | +| style | [Event.Block.Fill.File.Style](#anytype-Event-Block-Fill-File-Style) | | | - + ### Event.Block.Fill.File.Hash @@ -18697,7 +18698,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Mime @@ -18712,7 +18713,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Name @@ -18727,7 +18728,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.Size @@ -18742,7 +18743,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.File.State @@ -18750,14 +18751,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.State](#anytype.model.Block.Content.File.State) | | | +| value | [model.Block.Content.File.State](#anytype-model-Block-Content-File-State) | | | - + ### Event.Block.Fill.File.Style @@ -18765,14 +18766,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | +| value | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | - + ### Event.Block.Fill.File.Type @@ -18780,14 +18781,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | +| value | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | - + ### Event.Block.Fill.File.Width @@ -18802,7 +18803,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Link @@ -18811,16 +18812,16 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| targetBlockId | [Event.Block.Fill.Link.TargetBlockId](#anytype.Event.Block.Fill.Link.TargetBlockId) | | | -| style | [Event.Block.Fill.Link.Style](#anytype.Event.Block.Fill.Link.Style) | | | -| fields | [Event.Block.Fill.Link.Fields](#anytype.Event.Block.Fill.Link.Fields) | | | +| targetBlockId | [Event.Block.Fill.Link.TargetBlockId](#anytype-Event-Block-Fill-Link-TargetBlockId) | | | +| style | [Event.Block.Fill.Link.Style](#anytype-Event-Block-Fill-Link-Style) | | | +| fields | [Event.Block.Fill.Link.Fields](#anytype-Event-Block-Fill-Link-Fields) | | | - + ### Event.Block.Fill.Link.Fields @@ -18828,14 +18829,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| value | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Event.Block.Fill.Link.Style @@ -18843,14 +18844,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) | | | +| value | [model.Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) | | | - + ### Event.Block.Fill.Link.TargetBlockId @@ -18865,7 +18866,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Restrictions @@ -18874,14 +18875,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| restrictions | [model.Block.Restrictions](#anytype.model.Block.Restrictions) | | | +| restrictions | [model.Block.Restrictions](#anytype-model-Block-Restrictions) | | | - + ### Event.Block.Fill.Text @@ -18890,18 +18891,18 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| text | [Event.Block.Fill.Text.Text](#anytype.Event.Block.Fill.Text.Text) | | | -| style | [Event.Block.Fill.Text.Style](#anytype.Event.Block.Fill.Text.Style) | | | -| marks | [Event.Block.Fill.Text.Marks](#anytype.Event.Block.Fill.Text.Marks) | | | -| checked | [Event.Block.Fill.Text.Checked](#anytype.Event.Block.Fill.Text.Checked) | | | -| color | [Event.Block.Fill.Text.Color](#anytype.Event.Block.Fill.Text.Color) | | | +| text | [Event.Block.Fill.Text.Text](#anytype-Event-Block-Fill-Text-Text) | | | +| style | [Event.Block.Fill.Text.Style](#anytype-Event-Block-Fill-Text-Style) | | | +| marks | [Event.Block.Fill.Text.Marks](#anytype-Event-Block-Fill-Text-Marks) | | | +| checked | [Event.Block.Fill.Text.Checked](#anytype-Event-Block-Fill-Text-Checked) | | | +| color | [Event.Block.Fill.Text.Color](#anytype-Event-Block-Fill-Text-Color) | | | - + ### Event.Block.Fill.Text.Checked @@ -18916,7 +18917,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Text.Color @@ -18931,7 +18932,7 @@ Precondition: user A opened a block - + ### Event.Block.Fill.Text.Marks @@ -18939,14 +18940,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | | +| value | [model.Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | | - + ### Event.Block.Fill.Text.Style @@ -18954,14 +18955,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| value | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | - + ### Event.Block.Fill.Text.Text @@ -18976,7 +18977,7 @@ Precondition: user A opened a block - + ### Event.Block.MarksInfo @@ -18984,14 +18985,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| marksInRange | [model.Block.Content.Text.Mark.Type](#anytype.model.Block.Content.Text.Mark.Type) | repeated | | +| marksInRange | [model.Block.Content.Text.Mark.Type](#anytype-model-Block-Content-Text-Mark-Type) | repeated | | - + ### Event.Block.Set @@ -19001,7 +19002,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Align @@ -19010,14 +19011,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| align | [model.Block.Align](#anytype.model.Block.Align) | | | +| align | [model.Block.Align](#anytype-model-Block-Align) | | | - + ### Event.Block.Set.BackgroundColor @@ -19033,7 +19034,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark @@ -19042,21 +19043,21 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| url | [Event.Block.Set.Bookmark.Url](#anytype.Event.Block.Set.Bookmark.Url) | | | -| title | [Event.Block.Set.Bookmark.Title](#anytype.Event.Block.Set.Bookmark.Title) | | | -| description | [Event.Block.Set.Bookmark.Description](#anytype.Event.Block.Set.Bookmark.Description) | | | -| imageHash | [Event.Block.Set.Bookmark.ImageHash](#anytype.Event.Block.Set.Bookmark.ImageHash) | | | -| faviconHash | [Event.Block.Set.Bookmark.FaviconHash](#anytype.Event.Block.Set.Bookmark.FaviconHash) | | | -| type | [Event.Block.Set.Bookmark.Type](#anytype.Event.Block.Set.Bookmark.Type) | | | -| targetObjectId | [Event.Block.Set.Bookmark.TargetObjectId](#anytype.Event.Block.Set.Bookmark.TargetObjectId) | | | -| state | [Event.Block.Set.Bookmark.State](#anytype.Event.Block.Set.Bookmark.State) | | | +| url | [Event.Block.Set.Bookmark.Url](#anytype-Event-Block-Set-Bookmark-Url) | | | +| title | [Event.Block.Set.Bookmark.Title](#anytype-Event-Block-Set-Bookmark-Title) | | | +| description | [Event.Block.Set.Bookmark.Description](#anytype-Event-Block-Set-Bookmark-Description) | | | +| imageHash | [Event.Block.Set.Bookmark.ImageHash](#anytype-Event-Block-Set-Bookmark-ImageHash) | | | +| faviconHash | [Event.Block.Set.Bookmark.FaviconHash](#anytype-Event-Block-Set-Bookmark-FaviconHash) | | | +| type | [Event.Block.Set.Bookmark.Type](#anytype-Event-Block-Set-Bookmark-Type) | | | +| targetObjectId | [Event.Block.Set.Bookmark.TargetObjectId](#anytype-Event-Block-Set-Bookmark-TargetObjectId) | | | +| state | [Event.Block.Set.Bookmark.State](#anytype-Event-Block-Set-Bookmark-State) | | | - + ### Event.Block.Set.Bookmark.Description @@ -19071,7 +19072,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.FaviconHash @@ -19086,7 +19087,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.ImageHash @@ -19101,7 +19102,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.State @@ -19109,14 +19110,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Bookmark.State](#anytype.model.Block.Content.Bookmark.State) | | | +| value | [model.Block.Content.Bookmark.State](#anytype-model-Block-Content-Bookmark-State) | | | - + ### Event.Block.Set.Bookmark.TargetObjectId @@ -19131,7 +19132,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.Title @@ -19146,7 +19147,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Bookmark.Type @@ -19154,14 +19155,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | +| value | [model.LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | - + ### Event.Block.Set.Bookmark.Url @@ -19176,7 +19177,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.ChildrenIds @@ -19192,7 +19193,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Div @@ -19201,14 +19202,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| style | [Event.Block.Set.Div.Style](#anytype.Event.Block.Set.Div.Style) | | | +| style | [Event.Block.Set.Div.Style](#anytype-Event-Block-Set-Div-Style) | | | - + ### Event.Block.Set.Div.Style @@ -19216,14 +19217,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | +| value | [model.Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | - + ### Event.Block.Set.Fields @@ -19232,14 +19233,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Event.Block.Set.File @@ -19248,20 +19249,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Event.Block.Set.File.Type](#anytype.Event.Block.Set.File.Type) | | | -| state | [Event.Block.Set.File.State](#anytype.Event.Block.Set.File.State) | | | -| mime | [Event.Block.Set.File.Mime](#anytype.Event.Block.Set.File.Mime) | | | -| hash | [Event.Block.Set.File.Hash](#anytype.Event.Block.Set.File.Hash) | | | -| name | [Event.Block.Set.File.Name](#anytype.Event.Block.Set.File.Name) | | | -| size | [Event.Block.Set.File.Size](#anytype.Event.Block.Set.File.Size) | | | -| style | [Event.Block.Set.File.Style](#anytype.Event.Block.Set.File.Style) | | | +| type | [Event.Block.Set.File.Type](#anytype-Event-Block-Set-File-Type) | | | +| state | [Event.Block.Set.File.State](#anytype-Event-Block-Set-File-State) | | | +| mime | [Event.Block.Set.File.Mime](#anytype-Event-Block-Set-File-Mime) | | | +| hash | [Event.Block.Set.File.Hash](#anytype-Event-Block-Set-File-Hash) | | | +| name | [Event.Block.Set.File.Name](#anytype-Event-Block-Set-File-Name) | | | +| size | [Event.Block.Set.File.Size](#anytype-Event-Block-Set-File-Size) | | | +| style | [Event.Block.Set.File.Style](#anytype-Event-Block-Set-File-Style) | | | - + ### Event.Block.Set.File.Hash @@ -19276,7 +19277,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Mime @@ -19291,7 +19292,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Name @@ -19306,7 +19307,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.Size @@ -19321,7 +19322,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.File.State @@ -19329,14 +19330,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.State](#anytype.model.Block.Content.File.State) | | | +| value | [model.Block.Content.File.State](#anytype-model-Block-Content-File-State) | | | - + ### Event.Block.Set.File.Style @@ -19344,14 +19345,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | +| value | [model.Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | - + ### Event.Block.Set.File.Type @@ -19359,14 +19360,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | +| value | [model.Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | - + ### Event.Block.Set.File.Width @@ -19381,7 +19382,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Latex @@ -19390,14 +19391,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| text | [Event.Block.Set.Latex.Text](#anytype.Event.Block.Set.Latex.Text) | | | +| text | [Event.Block.Set.Latex.Text](#anytype-Event-Block-Set-Latex-Text) | | | - + ### Event.Block.Set.Latex.Text @@ -19412,7 +19413,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Link @@ -19421,20 +19422,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| targetBlockId | [Event.Block.Set.Link.TargetBlockId](#anytype.Event.Block.Set.Link.TargetBlockId) | | | -| style | [Event.Block.Set.Link.Style](#anytype.Event.Block.Set.Link.Style) | | | -| fields | [Event.Block.Set.Link.Fields](#anytype.Event.Block.Set.Link.Fields) | | | -| iconSize | [Event.Block.Set.Link.IconSize](#anytype.Event.Block.Set.Link.IconSize) | | | -| cardStyle | [Event.Block.Set.Link.CardStyle](#anytype.Event.Block.Set.Link.CardStyle) | | | -| description | [Event.Block.Set.Link.Description](#anytype.Event.Block.Set.Link.Description) | | | -| relations | [Event.Block.Set.Link.Relations](#anytype.Event.Block.Set.Link.Relations) | | | +| targetBlockId | [Event.Block.Set.Link.TargetBlockId](#anytype-Event-Block-Set-Link-TargetBlockId) | | | +| style | [Event.Block.Set.Link.Style](#anytype-Event-Block-Set-Link-Style) | | | +| fields | [Event.Block.Set.Link.Fields](#anytype-Event-Block-Set-Link-Fields) | | | +| iconSize | [Event.Block.Set.Link.IconSize](#anytype-Event-Block-Set-Link-IconSize) | | | +| cardStyle | [Event.Block.Set.Link.CardStyle](#anytype-Event-Block-Set-Link-CardStyle) | | | +| description | [Event.Block.Set.Link.Description](#anytype-Event-Block-Set-Link-Description) | | | +| relations | [Event.Block.Set.Link.Relations](#anytype-Event-Block-Set-Link-Relations) | | | - + ### Event.Block.Set.Link.CardStyle @@ -19442,14 +19443,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) | | | +| value | [model.Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) | | | - + ### Event.Block.Set.Link.Description @@ -19457,14 +19458,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) | | | +| value | [model.Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) | | | - + ### Event.Block.Set.Link.Fields @@ -19472,14 +19473,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| value | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Event.Block.Set.Link.IconSize @@ -19487,14 +19488,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) | | | +| value | [model.Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) | | | - + ### Event.Block.Set.Link.Relations @@ -19509,7 +19510,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Link.Style @@ -19517,14 +19518,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) | | | +| value | [model.Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) | | | - + ### Event.Block.Set.Link.TargetBlockId @@ -19539,7 +19540,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Relation @@ -19548,14 +19549,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| key | [Event.Block.Set.Relation.Key](#anytype.Event.Block.Set.Relation.Key) | | | +| key | [Event.Block.Set.Relation.Key](#anytype-Event-Block-Set-Relation-Key) | | | - + ### Event.Block.Set.Relation.Key @@ -19570,7 +19571,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Restrictions @@ -19579,14 +19580,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| restrictions | [model.Block.Restrictions](#anytype.model.Block.Restrictions) | | | +| restrictions | [model.Block.Restrictions](#anytype-model-Block-Restrictions) | | | - + ### Event.Block.Set.TableRow @@ -19595,14 +19596,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| isHeader | [Event.Block.Set.TableRow.IsHeader](#anytype.Event.Block.Set.TableRow.IsHeader) | | | +| isHeader | [Event.Block.Set.TableRow.IsHeader](#anytype-Event-Block-Set-TableRow-IsHeader) | | | - + ### Event.Block.Set.TableRow.IsHeader @@ -19617,7 +19618,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text @@ -19626,20 +19627,20 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| text | [Event.Block.Set.Text.Text](#anytype.Event.Block.Set.Text.Text) | | | -| style | [Event.Block.Set.Text.Style](#anytype.Event.Block.Set.Text.Style) | | | -| marks | [Event.Block.Set.Text.Marks](#anytype.Event.Block.Set.Text.Marks) | | | -| checked | [Event.Block.Set.Text.Checked](#anytype.Event.Block.Set.Text.Checked) | | | -| color | [Event.Block.Set.Text.Color](#anytype.Event.Block.Set.Text.Color) | | | -| iconEmoji | [Event.Block.Set.Text.IconEmoji](#anytype.Event.Block.Set.Text.IconEmoji) | | | -| iconImage | [Event.Block.Set.Text.IconImage](#anytype.Event.Block.Set.Text.IconImage) | | | +| text | [Event.Block.Set.Text.Text](#anytype-Event-Block-Set-Text-Text) | | | +| style | [Event.Block.Set.Text.Style](#anytype-Event-Block-Set-Text-Style) | | | +| marks | [Event.Block.Set.Text.Marks](#anytype-Event-Block-Set-Text-Marks) | | | +| checked | [Event.Block.Set.Text.Checked](#anytype-Event-Block-Set-Text-Checked) | | | +| color | [Event.Block.Set.Text.Color](#anytype-Event-Block-Set-Text-Color) | | | +| iconEmoji | [Event.Block.Set.Text.IconEmoji](#anytype-Event-Block-Set-Text-IconEmoji) | | | +| iconImage | [Event.Block.Set.Text.IconImage](#anytype-Event-Block-Set-Text-IconImage) | | | - + ### Event.Block.Set.Text.Checked @@ -19654,7 +19655,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.Color @@ -19669,7 +19670,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.IconEmoji @@ -19684,7 +19685,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.IconImage @@ -19699,7 +19700,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Text.Marks @@ -19707,14 +19708,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | | +| value | [model.Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | | - + ### Event.Block.Set.Text.Style @@ -19722,14 +19723,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | +| value | [model.Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | - + ### Event.Block.Set.Text.Text @@ -19744,7 +19745,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.VerticalAlign @@ -19753,14 +19754,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| verticalAlign | [model.Block.VerticalAlign](#anytype.model.Block.VerticalAlign) | | | +| verticalAlign | [model.Block.VerticalAlign](#anytype-model-Block-VerticalAlign) | | | - + ### Event.Block.Set.Widget @@ -19769,16 +19770,16 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| layout | [Event.Block.Set.Widget.Layout](#anytype.Event.Block.Set.Widget.Layout) | | | -| limit | [Event.Block.Set.Widget.Limit](#anytype.Event.Block.Set.Widget.Limit) | | | -| viewId | [Event.Block.Set.Widget.ViewId](#anytype.Event.Block.Set.Widget.ViewId) | | | +| layout | [Event.Block.Set.Widget.Layout](#anytype-Event-Block-Set-Widget-Layout) | | | +| limit | [Event.Block.Set.Widget.Limit](#anytype-Event-Block-Set-Widget-Limit) | | | +| viewId | [Event.Block.Set.Widget.ViewId](#anytype-Event-Block-Set-Widget-ViewId) | | | - + ### Event.Block.Set.Widget.Layout @@ -19786,14 +19787,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [model.Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) | | | +| value | [model.Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) | | | - + ### Event.Block.Set.Widget.Limit @@ -19808,7 +19809,7 @@ Precondition: user A opened a block - + ### Event.Block.Set.Widget.ViewId @@ -19823,7 +19824,7 @@ Precondition: user A opened a block - + ### Event.File @@ -19833,7 +19834,7 @@ Precondition: user A opened a block - + ### Event.File.LimitReached @@ -19849,7 +19850,7 @@ Precondition: user A opened a block - + ### Event.File.LocalUsage @@ -19864,7 +19865,7 @@ Precondition: user A opened a block - + ### Event.File.SpaceUsage @@ -19879,7 +19880,7 @@ Precondition: user A opened a block - + ### Event.Message @@ -19887,73 +19888,73 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| accountShow | [Event.Account.Show](#anytype.Event.Account.Show) | | | -| accountDetails | [Event.Account.Details](#anytype.Event.Account.Details) | | | -| accountConfigUpdate | [Event.Account.Config.Update](#anytype.Event.Account.Config.Update) | | | -| accountUpdate | [Event.Account.Update](#anytype.Event.Account.Update) | | | -| objectDetailsSet | [Event.Object.Details.Set](#anytype.Event.Object.Details.Set) | | | -| objectDetailsAmend | [Event.Object.Details.Amend](#anytype.Event.Object.Details.Amend) | | | -| objectDetailsUnset | [Event.Object.Details.Unset](#anytype.Event.Object.Details.Unset) | | | -| objectRelationsAmend | [Event.Object.Relations.Amend](#anytype.Event.Object.Relations.Amend) | | | -| objectRelationsRemove | [Event.Object.Relations.Remove](#anytype.Event.Object.Relations.Remove) | | | -| objectRemove | [Event.Object.Remove](#anytype.Event.Object.Remove) | | | -| objectRestrictionsSet | [Event.Object.Restrictions.Set](#anytype.Event.Object.Restrictions.Set) | | | -| subscriptionAdd | [Event.Object.Subscription.Add](#anytype.Event.Object.Subscription.Add) | | | -| subscriptionRemove | [Event.Object.Subscription.Remove](#anytype.Event.Object.Subscription.Remove) | | | -| subscriptionPosition | [Event.Object.Subscription.Position](#anytype.Event.Object.Subscription.Position) | | | -| subscriptionCounters | [Event.Object.Subscription.Counters](#anytype.Event.Object.Subscription.Counters) | | | -| subscriptionGroups | [Event.Object.Subscription.Groups](#anytype.Event.Object.Subscription.Groups) | | | -| blockAdd | [Event.Block.Add](#anytype.Event.Block.Add) | | | -| blockDelete | [Event.Block.Delete](#anytype.Event.Block.Delete) | | | -| filesUpload | [Event.Block.FilesUpload](#anytype.Event.Block.FilesUpload) | | | -| marksInfo | [Event.Block.MarksInfo](#anytype.Event.Block.MarksInfo) | | | -| blockSetFields | [Event.Block.Set.Fields](#anytype.Event.Block.Set.Fields) | | | -| blockSetChildrenIds | [Event.Block.Set.ChildrenIds](#anytype.Event.Block.Set.ChildrenIds) | | | -| blockSetRestrictions | [Event.Block.Set.Restrictions](#anytype.Event.Block.Set.Restrictions) | | | -| blockSetBackgroundColor | [Event.Block.Set.BackgroundColor](#anytype.Event.Block.Set.BackgroundColor) | | | -| blockSetText | [Event.Block.Set.Text](#anytype.Event.Block.Set.Text) | | | -| blockSetFile | [Event.Block.Set.File](#anytype.Event.Block.Set.File) | | | -| blockSetLink | [Event.Block.Set.Link](#anytype.Event.Block.Set.Link) | | | -| blockSetBookmark | [Event.Block.Set.Bookmark](#anytype.Event.Block.Set.Bookmark) | | | -| blockSetAlign | [Event.Block.Set.Align](#anytype.Event.Block.Set.Align) | | | -| blockSetDiv | [Event.Block.Set.Div](#anytype.Event.Block.Set.Div) | | | -| blockSetRelation | [Event.Block.Set.Relation](#anytype.Event.Block.Set.Relation) | | | -| blockSetLatex | [Event.Block.Set.Latex](#anytype.Event.Block.Set.Latex) | | | -| blockSetVerticalAlign | [Event.Block.Set.VerticalAlign](#anytype.Event.Block.Set.VerticalAlign) | | | -| blockSetTableRow | [Event.Block.Set.TableRow](#anytype.Event.Block.Set.TableRow) | | | -| blockSetWidget | [Event.Block.Set.Widget](#anytype.Event.Block.Set.Widget) | | | -| blockDataviewViewSet | [Event.Block.Dataview.ViewSet](#anytype.Event.Block.Dataview.ViewSet) | | | -| blockDataviewViewDelete | [Event.Block.Dataview.ViewDelete](#anytype.Event.Block.Dataview.ViewDelete) | | | -| blockDataviewViewOrder | [Event.Block.Dataview.ViewOrder](#anytype.Event.Block.Dataview.ViewOrder) | | | -| blockDataviewSourceSet | [Event.Block.Dataview.SourceSet](#anytype.Event.Block.Dataview.SourceSet) | | | -| blockDataViewGroupOrderUpdate | [Event.Block.Dataview.GroupOrderUpdate](#anytype.Event.Block.Dataview.GroupOrderUpdate) | | | -| blockDataViewObjectOrderUpdate | [Event.Block.Dataview.ObjectOrderUpdate](#anytype.Event.Block.Dataview.ObjectOrderUpdate) | | | -| blockDataviewRelationDelete | [Event.Block.Dataview.RelationDelete](#anytype.Event.Block.Dataview.RelationDelete) | | | -| blockDataviewRelationSet | [Event.Block.Dataview.RelationSet](#anytype.Event.Block.Dataview.RelationSet) | | | -| blockDataviewViewUpdate | [Event.Block.Dataview.ViewUpdate](#anytype.Event.Block.Dataview.ViewUpdate) | | | -| blockDataviewTargetObjectIdSet | [Event.Block.Dataview.TargetObjectIdSet](#anytype.Event.Block.Dataview.TargetObjectIdSet) | | | -| blockDataviewIsCollectionSet | [Event.Block.Dataview.IsCollectionSet](#anytype.Event.Block.Dataview.IsCollectionSet) | | | -| blockDataviewOldRelationDelete | [Event.Block.Dataview.OldRelationDelete](#anytype.Event.Block.Dataview.OldRelationDelete) | | deprecated | -| blockDataviewOldRelationSet | [Event.Block.Dataview.OldRelationSet](#anytype.Event.Block.Dataview.OldRelationSet) | | deprecated | -| userBlockJoin | [Event.User.Block.Join](#anytype.Event.User.Block.Join) | | | -| userBlockLeft | [Event.User.Block.Left](#anytype.Event.User.Block.Left) | | | -| userBlockSelectRange | [Event.User.Block.SelectRange](#anytype.Event.User.Block.SelectRange) | | | -| userBlockTextRange | [Event.User.Block.TextRange](#anytype.Event.User.Block.TextRange) | | | -| ping | [Event.Ping](#anytype.Event.Ping) | | | -| processNew | [Event.Process.New](#anytype.Event.Process.New) | | | -| processUpdate | [Event.Process.Update](#anytype.Event.Process.Update) | | | -| processDone | [Event.Process.Done](#anytype.Event.Process.Done) | | | -| threadStatus | [Event.Status.Thread](#anytype.Event.Status.Thread) | | | -| fileLimitReached | [Event.File.LimitReached](#anytype.Event.File.LimitReached) | | | -| fileSpaceUsage | [Event.File.SpaceUsage](#anytype.Event.File.SpaceUsage) | | | -| fileLocalUsage | [Event.File.LocalUsage](#anytype.Event.File.LocalUsage) | | | - - - - - - - +| accountShow | [Event.Account.Show](#anytype-Event-Account-Show) | | | +| accountDetails | [Event.Account.Details](#anytype-Event-Account-Details) | | | +| accountConfigUpdate | [Event.Account.Config.Update](#anytype-Event-Account-Config-Update) | | | +| accountUpdate | [Event.Account.Update](#anytype-Event-Account-Update) | | | +| objectDetailsSet | [Event.Object.Details.Set](#anytype-Event-Object-Details-Set) | | | +| objectDetailsAmend | [Event.Object.Details.Amend](#anytype-Event-Object-Details-Amend) | | | +| objectDetailsUnset | [Event.Object.Details.Unset](#anytype-Event-Object-Details-Unset) | | | +| objectRelationsAmend | [Event.Object.Relations.Amend](#anytype-Event-Object-Relations-Amend) | | | +| objectRelationsRemove | [Event.Object.Relations.Remove](#anytype-Event-Object-Relations-Remove) | | | +| objectRemove | [Event.Object.Remove](#anytype-Event-Object-Remove) | | | +| objectRestrictionsSet | [Event.Object.Restrictions.Set](#anytype-Event-Object-Restrictions-Set) | | | +| subscriptionAdd | [Event.Object.Subscription.Add](#anytype-Event-Object-Subscription-Add) | | | +| subscriptionRemove | [Event.Object.Subscription.Remove](#anytype-Event-Object-Subscription-Remove) | | | +| subscriptionPosition | [Event.Object.Subscription.Position](#anytype-Event-Object-Subscription-Position) | | | +| subscriptionCounters | [Event.Object.Subscription.Counters](#anytype-Event-Object-Subscription-Counters) | | | +| subscriptionGroups | [Event.Object.Subscription.Groups](#anytype-Event-Object-Subscription-Groups) | | | +| blockAdd | [Event.Block.Add](#anytype-Event-Block-Add) | | | +| blockDelete | [Event.Block.Delete](#anytype-Event-Block-Delete) | | | +| filesUpload | [Event.Block.FilesUpload](#anytype-Event-Block-FilesUpload) | | | +| marksInfo | [Event.Block.MarksInfo](#anytype-Event-Block-MarksInfo) | | | +| blockSetFields | [Event.Block.Set.Fields](#anytype-Event-Block-Set-Fields) | | | +| blockSetChildrenIds | [Event.Block.Set.ChildrenIds](#anytype-Event-Block-Set-ChildrenIds) | | | +| blockSetRestrictions | [Event.Block.Set.Restrictions](#anytype-Event-Block-Set-Restrictions) | | | +| blockSetBackgroundColor | [Event.Block.Set.BackgroundColor](#anytype-Event-Block-Set-BackgroundColor) | | | +| blockSetText | [Event.Block.Set.Text](#anytype-Event-Block-Set-Text) | | | +| blockSetFile | [Event.Block.Set.File](#anytype-Event-Block-Set-File) | | | +| blockSetLink | [Event.Block.Set.Link](#anytype-Event-Block-Set-Link) | | | +| blockSetBookmark | [Event.Block.Set.Bookmark](#anytype-Event-Block-Set-Bookmark) | | | +| blockSetAlign | [Event.Block.Set.Align](#anytype-Event-Block-Set-Align) | | | +| blockSetDiv | [Event.Block.Set.Div](#anytype-Event-Block-Set-Div) | | | +| blockSetRelation | [Event.Block.Set.Relation](#anytype-Event-Block-Set-Relation) | | | +| blockSetLatex | [Event.Block.Set.Latex](#anytype-Event-Block-Set-Latex) | | | +| blockSetVerticalAlign | [Event.Block.Set.VerticalAlign](#anytype-Event-Block-Set-VerticalAlign) | | | +| blockSetTableRow | [Event.Block.Set.TableRow](#anytype-Event-Block-Set-TableRow) | | | +| blockSetWidget | [Event.Block.Set.Widget](#anytype-Event-Block-Set-Widget) | | | +| blockDataviewViewSet | [Event.Block.Dataview.ViewSet](#anytype-Event-Block-Dataview-ViewSet) | | | +| blockDataviewViewDelete | [Event.Block.Dataview.ViewDelete](#anytype-Event-Block-Dataview-ViewDelete) | | | +| blockDataviewViewOrder | [Event.Block.Dataview.ViewOrder](#anytype-Event-Block-Dataview-ViewOrder) | | | +| blockDataviewSourceSet | [Event.Block.Dataview.SourceSet](#anytype-Event-Block-Dataview-SourceSet) | | | +| blockDataViewGroupOrderUpdate | [Event.Block.Dataview.GroupOrderUpdate](#anytype-Event-Block-Dataview-GroupOrderUpdate) | | | +| blockDataViewObjectOrderUpdate | [Event.Block.Dataview.ObjectOrderUpdate](#anytype-Event-Block-Dataview-ObjectOrderUpdate) | | | +| blockDataviewRelationDelete | [Event.Block.Dataview.RelationDelete](#anytype-Event-Block-Dataview-RelationDelete) | | | +| blockDataviewRelationSet | [Event.Block.Dataview.RelationSet](#anytype-Event-Block-Dataview-RelationSet) | | | +| blockDataviewViewUpdate | [Event.Block.Dataview.ViewUpdate](#anytype-Event-Block-Dataview-ViewUpdate) | | | +| blockDataviewTargetObjectIdSet | [Event.Block.Dataview.TargetObjectIdSet](#anytype-Event-Block-Dataview-TargetObjectIdSet) | | | +| blockDataviewIsCollectionSet | [Event.Block.Dataview.IsCollectionSet](#anytype-Event-Block-Dataview-IsCollectionSet) | | | +| blockDataviewOldRelationDelete | [Event.Block.Dataview.OldRelationDelete](#anytype-Event-Block-Dataview-OldRelationDelete) | | deprecated | +| blockDataviewOldRelationSet | [Event.Block.Dataview.OldRelationSet](#anytype-Event-Block-Dataview-OldRelationSet) | | deprecated | +| userBlockJoin | [Event.User.Block.Join](#anytype-Event-User-Block-Join) | | | +| userBlockLeft | [Event.User.Block.Left](#anytype-Event-User-Block-Left) | | | +| userBlockSelectRange | [Event.User.Block.SelectRange](#anytype-Event-User-Block-SelectRange) | | | +| userBlockTextRange | [Event.User.Block.TextRange](#anytype-Event-User-Block-TextRange) | | | +| ping | [Event.Ping](#anytype-Event-Ping) | | | +| processNew | [Event.Process.New](#anytype-Event-Process-New) | | | +| processUpdate | [Event.Process.Update](#anytype-Event-Process-Update) | | | +| processDone | [Event.Process.Done](#anytype-Event-Process-Done) | | | +| threadStatus | [Event.Status.Thread](#anytype-Event-Status-Thread) | | | +| fileLimitReached | [Event.File.LimitReached](#anytype-Event-File-LimitReached) | | | +| fileSpaceUsage | [Event.File.SpaceUsage](#anytype-Event-File-SpaceUsage) | | | +| fileLocalUsage | [Event.File.LocalUsage](#anytype-Event-File-LocalUsage) | | | + + + + + + + ### Event.Object @@ -19963,7 +19964,7 @@ Precondition: user A opened a block - + ### Event.Object.Details @@ -19973,7 +19974,7 @@ Precondition: user A opened a block - + ### Event.Object.Details.Amend Amend (i.e. add a new key-value pair or update an existing key-value pair) existing state @@ -19982,7 +19983,7 @@ Amend (i.e. add a new key-value pair or update an existing key-value pair) exist | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| details | [Event.Object.Details.Amend.KeyValue](#anytype.Event.Object.Details.Amend.KeyValue) | repeated | slice of changed key-values | +| details | [Event.Object.Details.Amend.KeyValue](#anytype-Event-Object-Details-Amend-KeyValue) | repeated | slice of changed key-values | | subIds | [string](#string) | repeated | | @@ -19990,7 +19991,7 @@ Amend (i.e. add a new key-value pair or update an existing key-value pair) exist - + ### Event.Object.Details.Amend.KeyValue @@ -19999,14 +20000,14 @@ Amend (i.e. add a new key-value pair or update an existing key-value pair) exist | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| value | [google.protobuf.Value](#google.protobuf.Value) | | should not be null | +| value | [google.protobuf.Value](#google-protobuf-Value) | | should not be null | - + ### Event.Object.Details.Set Overwrite current state @@ -20015,7 +20016,7 @@ Overwrite current state | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | can not be a partial state. Should replace client details state | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | can not be a partial state. Should replace client details state | | subIds | [string](#string) | repeated | | @@ -20023,7 +20024,7 @@ Overwrite current state - + ### Event.Object.Details.Unset Unset existing detail keys @@ -20040,7 +20041,7 @@ Unset existing detail keys - + ### Event.Object.Relations @@ -20050,7 +20051,7 @@ Unset existing detail keys - + ### Event.Object.Relations.Amend @@ -20059,14 +20060,14 @@ Unset existing detail keys | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| relationLinks | [model.RelationLink](#anytype.model.RelationLink) | repeated | | +| relationLinks | [model.RelationLink](#anytype-model-RelationLink) | repeated | | - + ### Event.Object.Relations.Remove @@ -20082,7 +20083,7 @@ Unset existing detail keys - + ### Event.Object.Remove @@ -20097,7 +20098,7 @@ Unset existing detail keys - + ### Event.Object.Restrictions @@ -20107,7 +20108,7 @@ Unset existing detail keys - + ### Event.Object.Restrictions.Set @@ -20116,14 +20117,14 @@ Unset existing detail keys | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| restrictions | [model.Restrictions](#anytype.model.Restrictions) | | | +| restrictions | [model.Restrictions](#anytype-model-Restrictions) | | | - + ### Event.Object.Subscription @@ -20133,7 +20134,7 @@ Unset existing detail keys - + ### Event.Object.Subscription.Add Adds new document to subscriptions @@ -20150,7 +20151,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Counters @@ -20168,7 +20169,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Groups @@ -20177,7 +20178,7 @@ Adds new document to subscriptions | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | subId | [string](#string) | | | -| group | [model.Block.Content.Dataview.Group](#anytype.model.Block.Content.Dataview.Group) | | | +| group | [model.Block.Content.Dataview.Group](#anytype-model-Block-Content-Dataview-Group) | | | | remove | [bool](#bool) | | | @@ -20185,7 +20186,7 @@ Adds new document to subscriptions - + ### Event.Object.Subscription.Position Indicates new position of document @@ -20202,7 +20203,7 @@ Indicates new position of document - + ### Event.Object.Subscription.Remove Removes document from subscription @@ -20218,7 +20219,7 @@ Removes document from subscription - + ### Event.Ping @@ -20233,7 +20234,7 @@ Removes document from subscription - + ### Event.Process @@ -20243,7 +20244,7 @@ Removes document from subscription - + ### Event.Process.Done @@ -20251,14 +20252,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype.Model.Process) | | | +| process | [Model.Process](#anytype-Model-Process) | | | - + ### Event.Process.New @@ -20266,14 +20267,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype.Model.Process) | | | +| process | [Model.Process](#anytype-Model-Process) | | | - + ### Event.Process.Update @@ -20281,14 +20282,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| process | [Model.Process](#anytype.Model.Process) | | | +| process | [Model.Process](#anytype-Model-Process) | | | - + ### Event.Status @@ -20298,7 +20299,7 @@ Removes document from subscription - + ### Event.Status.Thread @@ -20306,16 +20307,16 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| summary | [Event.Status.Thread.Summary](#anytype.Event.Status.Thread.Summary) | | | -| cafe | [Event.Status.Thread.Cafe](#anytype.Event.Status.Thread.Cafe) | | | -| accounts | [Event.Status.Thread.Account](#anytype.Event.Status.Thread.Account) | repeated | | +| summary | [Event.Status.Thread.Summary](#anytype-Event-Status-Thread-Summary) | | | +| cafe | [Event.Status.Thread.Cafe](#anytype-Event-Status-Thread-Cafe) | | | +| accounts | [Event.Status.Thread.Account](#anytype-Event-Status-Thread-Account) | repeated | | - + ### Event.Status.Thread.Account @@ -20329,14 +20330,14 @@ Removes document from subscription | online | [bool](#bool) | | | | lastPulled | [int64](#int64) | | | | lastEdited | [int64](#int64) | | | -| devices | [Event.Status.Thread.Device](#anytype.Event.Status.Thread.Device) | repeated | | +| devices | [Event.Status.Thread.Device](#anytype-Event-Status-Thread-Device) | repeated | | - + ### Event.Status.Thread.Cafe @@ -20344,17 +20345,17 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| status | [Event.Status.Thread.SyncStatus](#anytype.Event.Status.Thread.SyncStatus) | | | +| status | [Event.Status.Thread.SyncStatus](#anytype-Event-Status-Thread-SyncStatus) | | | | lastPulled | [int64](#int64) | | | | lastPushSucceed | [bool](#bool) | | | -| files | [Event.Status.Thread.Cafe.PinStatus](#anytype.Event.Status.Thread.Cafe.PinStatus) | | | +| files | [Event.Status.Thread.Cafe.PinStatus](#anytype-Event-Status-Thread-Cafe-PinStatus) | | | - + ### Event.Status.Thread.Cafe.PinStatus @@ -20372,7 +20373,7 @@ Removes document from subscription - + ### Event.Status.Thread.Device @@ -20390,7 +20391,7 @@ Removes document from subscription - + ### Event.Status.Thread.Summary @@ -20398,14 +20399,14 @@ Removes document from subscription | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| status | [Event.Status.Thread.SyncStatus](#anytype.Event.Status.Thread.SyncStatus) | | | +| status | [Event.Status.Thread.SyncStatus](#anytype-Event-Status-Thread-SyncStatus) | | | - + ### Event.User @@ -20415,7 +20416,7 @@ Removes document from subscription - + ### Event.User.Block @@ -20425,7 +20426,7 @@ Removes document from subscription - + ### Event.User.Block.Join Middleware to front end event message, that will be sent in this scenario: @@ -20436,14 +20437,14 @@ Precondition: user A opened a block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that opened a block | +| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that opened a block | - + ### Event.User.Block.Left Middleware to front end event message, that will be sent in this scenario: @@ -20454,14 +20455,14 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that left the block | +| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that left the block | - + ### Event.User.Block.SelectRange Middleware to front end event message, that will be sent in this scenario: @@ -20472,7 +20473,7 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that selected blocks | +| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that selected blocks | | blockIdsArray | [string](#string) | repeated | Ids of selected blocks. | @@ -20480,7 +20481,7 @@ Precondition: user A and user B opened the same block - + ### Event.User.Block.TextRange Middleware to front end event message, that will be sent in this scenario: @@ -20491,16 +20492,16 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| account | [Event.Account](#anytype.Event.Account) | | Account of the user, that selected a text | +| account | [Event.Account](#anytype-Event-Account) | | Account of the user, that selected a text | | blockId | [string](#string) | | Id of the text block, that have a selection | -| range | [model.Range](#anytype.model.Range) | | Range of the selection | +| range | [model.Range](#anytype-model-Range) | | Range of the selection | - + ### Model @@ -20510,7 +20511,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process @@ -20519,16 +20520,16 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Model.Process.Type](#anytype.Model.Process.Type) | | | -| state | [Model.Process.State](#anytype.Model.Process.State) | | | -| progress | [Model.Process.Progress](#anytype.Model.Process.Progress) | | | +| type | [Model.Process.Type](#anytype-Model-Process-Type) | | | +| state | [Model.Process.State](#anytype-Model-Process-State) | | | +| progress | [Model.Process.Progress](#anytype-Model-Process-Progress) | | | - + ### Model.Process.Progress @@ -20545,7 +20546,7 @@ Precondition: user A and user B opened the same block - + ### ResponseEvent @@ -20553,7 +20554,7 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| messages | [Event.Message](#anytype.Event.Message) | repeated | | +| messages | [Event.Message](#anytype-Event-Message) | repeated | | | contextId | [string](#string) | | | | traceId | [string](#string) | | | @@ -20564,7 +20565,7 @@ Precondition: user A and user B opened the same block - + ### Event.Block.Dataview.SliceOperation @@ -20579,7 +20580,7 @@ Precondition: user A and user B opened the same block - + ### Event.Status.Thread.SyncStatus @@ -20595,7 +20596,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process.State @@ -20610,7 +20611,7 @@ Precondition: user A and user B opened the same block - + ### Model.Process.Type @@ -20633,14 +20634,14 @@ Precondition: user A and user B opened the same block - +

Top

## pb/protos/snapshot.proto - + ### Profile @@ -20660,7 +20661,7 @@ Precondition: user A and user B opened the same block - + ### SnapshotWithType @@ -20668,8 +20669,8 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| sbType | [model.SmartBlockType](#anytype.model.SmartBlockType) | | | -| snapshot | [Change.Snapshot](#anytype.Change.Snapshot) | | | +| sbType | [model.SmartBlockType](#anytype-model-SmartBlockType) | | | +| snapshot | [Change.Snapshot](#anytype-Change-Snapshot) | | | @@ -20685,14 +20686,14 @@ Precondition: user A and user B opened the same block - +

Top

## pkg/lib/pb/model/protos/localstore.proto - + ### ObjectDetails @@ -20700,14 +20701,14 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### ObjectInfo @@ -20717,18 +20718,18 @@ Precondition: user A and user B opened the same block | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | objectTypeUrls | [string](#string) | repeated | DEPRECATED | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | -| relations | [Relation](#anytype.model.Relation) | repeated | DEPRECATED | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| relations | [Relation](#anytype-model-Relation) | repeated | DEPRECATED | | snippet | [string](#string) | | | | hasInboundLinks | [bool](#bool) | | DEPRECATED | -| objectType | [SmartBlockType](#anytype.model.SmartBlockType) | | | +| objectType | [SmartBlockType](#anytype-model-SmartBlockType) | | | - + ### ObjectInfoWithLinks @@ -20737,15 +20738,15 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| info | [ObjectInfo](#anytype.model.ObjectInfo) | | | -| links | [ObjectLinksInfo](#anytype.model.ObjectLinksInfo) | | | +| info | [ObjectInfo](#anytype-model-ObjectInfo) | | | +| links | [ObjectLinksInfo](#anytype-model-ObjectLinksInfo) | | | - + ### ObjectInfoWithOutboundLinks @@ -20754,15 +20755,15 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| info | [ObjectInfo](#anytype.model.ObjectInfo) | | | -| outboundLinks | [ObjectInfo](#anytype.model.ObjectInfo) | repeated | | +| info | [ObjectInfo](#anytype-model-ObjectInfo) | | | +| outboundLinks | [ObjectInfo](#anytype-model-ObjectInfo) | repeated | | - + ### ObjectInfoWithOutboundLinksIDs @@ -20771,7 +20772,7 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| info | [ObjectInfo](#anytype.model.ObjectInfo) | | | +| info | [ObjectInfo](#anytype-model-ObjectInfo) | | | | outboundLinks | [string](#string) | repeated | | @@ -20779,7 +20780,7 @@ Precondition: user A and user B opened the same block - + ### ObjectLinks @@ -20795,7 +20796,7 @@ Precondition: user A and user B opened the same block - + ### ObjectLinksInfo @@ -20803,15 +20804,15 @@ Precondition: user A and user B opened the same block | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| inbound | [ObjectInfo](#anytype.model.ObjectInfo) | repeated | | -| outbound | [ObjectInfo](#anytype.model.ObjectInfo) | repeated | | +| inbound | [ObjectInfo](#anytype-model-ObjectInfo) | repeated | | +| outbound | [ObjectInfo](#anytype-model-ObjectInfo) | repeated | | - + ### ObjectStoreChecksums @@ -20844,14 +20845,14 @@ Precondition: user A and user B opened the same block - +

Top

## pkg/lib/pb/model/protos/models.proto - + ### Account Contains basic information about a user account @@ -20861,17 +20862,17 @@ Contains basic information about a user account | ----- | ---- | ----- | ----------- | | id | [string](#string) | | User's thread id | | name | [string](#string) | | User name, that associated with this account | -| avatar | [Account.Avatar](#anytype.model.Account.Avatar) | | Avatar of a user's account | -| config | [Account.Config](#anytype.model.Account.Config) | | | -| status | [Account.Status](#anytype.model.Account.Status) | | | -| info | [Account.Info](#anytype.model.Account.Info) | | | +| avatar | [Account.Avatar](#anytype-model-Account-Avatar) | | Avatar of a user's account | +| config | [Account.Config](#anytype-model-Account-Config) | | | +| status | [Account.Status](#anytype-model-Account-Status) | | | +| info | [Account.Info](#anytype-model-Account-Info) | | | - + ### Account.Avatar Avatar of a user's account. It could be an image or color @@ -20879,7 +20880,7 @@ Avatar of a user's account. It could be an image or color | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| image | [Block.Content.File](#anytype.model.Block.Content.File) | | Image of the avatar. Contains the hash to retrieve the image. | +| image | [Block.Content.File](#anytype-model-Block-Content-File) | | Image of the avatar. Contains the hash to retrieve the image. | | color | [string](#string) | | Color of the avatar, used if image not set. | @@ -20887,7 +20888,7 @@ Avatar of a user's account. It could be an image or color - + ### Account.Config @@ -20899,14 +20900,14 @@ Avatar of a user's account. It could be an image or color | enableDebug | [bool](#bool) | | | | enablePrereleaseChannel | [bool](#bool) | | | | enableSpaces | [bool](#bool) | | | -| extra | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| extra | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### Account.Info @@ -20931,7 +20932,7 @@ Avatar of a user's account. It could be an image or color - + ### Account.Status @@ -20939,7 +20940,7 @@ Avatar of a user's account. It could be an image or color | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| statusType | [Account.StatusType](#anytype.model.Account.StatusType) | | | +| statusType | [Account.StatusType](#anytype-model-Account-StatusType) | | | | deletionDate | [int64](#int64) | | | @@ -20947,7 +20948,7 @@ Avatar of a user's account. It could be an image or color - + ### Block @@ -20956,36 +20957,36 @@ Avatar of a user's account. It could be an image or color | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | -| restrictions | [Block.Restrictions](#anytype.model.Block.Restrictions) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| restrictions | [Block.Restrictions](#anytype-model-Block-Restrictions) | | | | childrenIds | [string](#string) | repeated | | | backgroundColor | [string](#string) | | | -| align | [Block.Align](#anytype.model.Block.Align) | | | -| verticalAlign | [Block.VerticalAlign](#anytype.model.Block.VerticalAlign) | | | -| smartblock | [Block.Content.Smartblock](#anytype.model.Block.Content.Smartblock) | | | -| text | [Block.Content.Text](#anytype.model.Block.Content.Text) | | | -| file | [Block.Content.File](#anytype.model.Block.Content.File) | | | -| layout | [Block.Content.Layout](#anytype.model.Block.Content.Layout) | | | -| div | [Block.Content.Div](#anytype.model.Block.Content.Div) | | | -| bookmark | [Block.Content.Bookmark](#anytype.model.Block.Content.Bookmark) | | | -| icon | [Block.Content.Icon](#anytype.model.Block.Content.Icon) | | | -| link | [Block.Content.Link](#anytype.model.Block.Content.Link) | | | -| dataview | [Block.Content.Dataview](#anytype.model.Block.Content.Dataview) | | | -| relation | [Block.Content.Relation](#anytype.model.Block.Content.Relation) | | | -| featuredRelations | [Block.Content.FeaturedRelations](#anytype.model.Block.Content.FeaturedRelations) | | | -| latex | [Block.Content.Latex](#anytype.model.Block.Content.Latex) | | | -| tableOfContents | [Block.Content.TableOfContents](#anytype.model.Block.Content.TableOfContents) | | | -| table | [Block.Content.Table](#anytype.model.Block.Content.Table) | | | -| tableColumn | [Block.Content.TableColumn](#anytype.model.Block.Content.TableColumn) | | | -| tableRow | [Block.Content.TableRow](#anytype.model.Block.Content.TableRow) | | | -| widget | [Block.Content.Widget](#anytype.model.Block.Content.Widget) | | | +| align | [Block.Align](#anytype-model-Block-Align) | | | +| verticalAlign | [Block.VerticalAlign](#anytype-model-Block-VerticalAlign) | | | +| smartblock | [Block.Content.Smartblock](#anytype-model-Block-Content-Smartblock) | | | +| text | [Block.Content.Text](#anytype-model-Block-Content-Text) | | | +| file | [Block.Content.File](#anytype-model-Block-Content-File) | | | +| layout | [Block.Content.Layout](#anytype-model-Block-Content-Layout) | | | +| div | [Block.Content.Div](#anytype-model-Block-Content-Div) | | | +| bookmark | [Block.Content.Bookmark](#anytype-model-Block-Content-Bookmark) | | | +| icon | [Block.Content.Icon](#anytype-model-Block-Content-Icon) | | | +| link | [Block.Content.Link](#anytype-model-Block-Content-Link) | | | +| dataview | [Block.Content.Dataview](#anytype-model-Block-Content-Dataview) | | | +| relation | [Block.Content.Relation](#anytype-model-Block-Content-Relation) | | | +| featuredRelations | [Block.Content.FeaturedRelations](#anytype-model-Block-Content-FeaturedRelations) | | | +| latex | [Block.Content.Latex](#anytype-model-Block-Content-Latex) | | | +| tableOfContents | [Block.Content.TableOfContents](#anytype-model-Block-Content-TableOfContents) | | | +| table | [Block.Content.Table](#anytype-model-Block-Content-Table) | | | +| tableColumn | [Block.Content.TableColumn](#anytype-model-Block-Content-TableColumn) | | | +| tableRow | [Block.Content.TableRow](#anytype-model-Block-Content-TableRow) | | | +| widget | [Block.Content.Widget](#anytype-model-Block-Content-Widget) | | | - + ### Block.Content @@ -20995,7 +20996,7 @@ Avatar of a user's account. It could be an image or color - + ### Block.Content.Bookmark Bookmark is to keep a web-link and to preview a content. @@ -21008,16 +21009,16 @@ Bookmark is to keep a web-link and to preview a content. | description | [string](#string) | | Deprecated. Get this data from the target object. | | imageHash | [string](#string) | | Deprecated. Get this data from the target object. | | faviconHash | [string](#string) | | Deprecated. Get this data from the target object. | -| type | [LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | +| type | [LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | | targetObjectId | [string](#string) | | | -| state | [Block.Content.Bookmark.State](#anytype.model.Block.Content.Bookmark.State) | | | +| state | [Block.Content.Bookmark.State](#anytype-model-Block-Content-Bookmark-State) | | | - + ### Block.Content.Dataview @@ -21026,12 +21027,12 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | source | [string](#string) | repeated | | -| views | [Block.Content.Dataview.View](#anytype.model.Block.Content.Dataview.View) | repeated | | -| relations | [Relation](#anytype.model.Relation) | repeated | deprecated | +| views | [Block.Content.Dataview.View](#anytype-model-Block-Content-Dataview-View) | repeated | | +| relations | [Relation](#anytype-model-Relation) | repeated | deprecated | | activeView | [string](#string) | | saved within a session | -| groupOrders | [Block.Content.Dataview.GroupOrder](#anytype.model.Block.Content.Dataview.GroupOrder) | repeated | | -| objectOrders | [Block.Content.Dataview.ObjectOrder](#anytype.model.Block.Content.Dataview.ObjectOrder) | repeated | | -| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | | +| groupOrders | [Block.Content.Dataview.GroupOrder](#anytype-model-Block-Content-Dataview-GroupOrder) | repeated | | +| objectOrders | [Block.Content.Dataview.ObjectOrder](#anytype-model-Block-Content-Dataview-ObjectOrder) | repeated | | +| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | | | TargetObjectId | [string](#string) | | | | isCollection | [bool](#bool) | | | @@ -21040,7 +21041,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Checkbox @@ -21055,7 +21056,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Date @@ -21065,7 +21066,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Filter @@ -21074,13 +21075,13 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| operator | [Block.Content.Dataview.Filter.Operator](#anytype.model.Block.Content.Dataview.Filter.Operator) | | looks not applicable? | +| operator | [Block.Content.Dataview.Filter.Operator](#anytype-model-Block-Content-Dataview-Filter-Operator) | | looks not applicable? | | RelationKey | [string](#string) | | | | relationProperty | [string](#string) | | | -| condition | [Block.Content.Dataview.Filter.Condition](#anytype.model.Block.Content.Dataview.Filter.Condition) | | | -| value | [google.protobuf.Value](#google.protobuf.Value) | | | -| quickOption | [Block.Content.Dataview.Filter.QuickOption](#anytype.model.Block.Content.Dataview.Filter.QuickOption) | | | -| format | [RelationFormat](#anytype.model.RelationFormat) | | | +| condition | [Block.Content.Dataview.Filter.Condition](#anytype-model-Block-Content-Dataview-Filter-Condition) | | | +| value | [google.protobuf.Value](#google-protobuf-Value) | | | +| quickOption | [Block.Content.Dataview.Filter.QuickOption](#anytype-model-Block-Content-Dataview-Filter-QuickOption) | | | +| format | [RelationFormat](#anytype-model-RelationFormat) | | | | includeTime | [bool](#bool) | | | @@ -21088,7 +21089,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Group @@ -21097,17 +21098,17 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| status | [Block.Content.Dataview.Status](#anytype.model.Block.Content.Dataview.Status) | | | -| tag | [Block.Content.Dataview.Tag](#anytype.model.Block.Content.Dataview.Tag) | | | -| checkbox | [Block.Content.Dataview.Checkbox](#anytype.model.Block.Content.Dataview.Checkbox) | | | -| date | [Block.Content.Dataview.Date](#anytype.model.Block.Content.Dataview.Date) | | | +| status | [Block.Content.Dataview.Status](#anytype-model-Block-Content-Dataview-Status) | | | +| tag | [Block.Content.Dataview.Tag](#anytype-model-Block-Content-Dataview-Tag) | | | +| checkbox | [Block.Content.Dataview.Checkbox](#anytype-model-Block-Content-Dataview-Checkbox) | | | +| date | [Block.Content.Dataview.Date](#anytype-model-Block-Content-Dataview-Date) | | | - + ### Block.Content.Dataview.GroupOrder @@ -21116,14 +21117,14 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | viewId | [string](#string) | | | -| viewGroups | [Block.Content.Dataview.ViewGroup](#anytype.model.Block.Content.Dataview.ViewGroup) | repeated | | +| viewGroups | [Block.Content.Dataview.ViewGroup](#anytype-model-Block-Content-Dataview-ViewGroup) | repeated | | - + ### Block.Content.Dataview.ObjectOrder @@ -21140,7 +21141,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Relation @@ -21152,15 +21153,15 @@ Bookmark is to keep a web-link and to preview a content. | isVisible | [bool](#bool) | | | | width | [int32](#int32) | | the displayed column % calculated based on other visible relations | | dateIncludeTime | [bool](#bool) | | | -| timeFormat | [Block.Content.Dataview.Relation.TimeFormat](#anytype.model.Block.Content.Dataview.Relation.TimeFormat) | | | -| dateFormat | [Block.Content.Dataview.Relation.DateFormat](#anytype.model.Block.Content.Dataview.Relation.DateFormat) | | | +| timeFormat | [Block.Content.Dataview.Relation.TimeFormat](#anytype-model-Block-Content-Dataview-Relation-TimeFormat) | | | +| dateFormat | [Block.Content.Dataview.Relation.DateFormat](#anytype-model-Block-Content-Dataview-Relation-DateFormat) | | | - + ### Block.Content.Dataview.Sort @@ -21170,9 +21171,9 @@ Bookmark is to keep a web-link and to preview a content. | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | RelationKey | [string](#string) | | | -| type | [Block.Content.Dataview.Sort.Type](#anytype.model.Block.Content.Dataview.Sort.Type) | | | -| customOrder | [google.protobuf.Value](#google.protobuf.Value) | repeated | | -| format | [RelationFormat](#anytype.model.RelationFormat) | | | +| type | [Block.Content.Dataview.Sort.Type](#anytype-model-Block-Content-Dataview-Sort-Type) | | | +| customOrder | [google.protobuf.Value](#google-protobuf-Value) | repeated | | +| format | [RelationFormat](#anytype-model-RelationFormat) | | | | includeTime | [bool](#bool) | | | @@ -21180,7 +21181,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Status @@ -21195,7 +21196,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.Tag @@ -21210,7 +21211,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.View @@ -21219,14 +21220,14 @@ Bookmark is to keep a web-link and to preview a content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| type | [Block.Content.Dataview.View.Type](#anytype.model.Block.Content.Dataview.View.Type) | | | +| type | [Block.Content.Dataview.View.Type](#anytype-model-Block-Content-Dataview-View-Type) | | | | name | [string](#string) | | | -| sorts | [Block.Content.Dataview.Sort](#anytype.model.Block.Content.Dataview.Sort) | repeated | | -| filters | [Block.Content.Dataview.Filter](#anytype.model.Block.Content.Dataview.Filter) | repeated | | -| relations | [Block.Content.Dataview.Relation](#anytype.model.Block.Content.Dataview.Relation) | repeated | relations fields/columns options, also used to provide the order | +| sorts | [Block.Content.Dataview.Sort](#anytype-model-Block-Content-Dataview-Sort) | repeated | | +| filters | [Block.Content.Dataview.Filter](#anytype-model-Block-Content-Dataview-Filter) | repeated | | +| relations | [Block.Content.Dataview.Relation](#anytype-model-Block-Content-Dataview-Relation) | repeated | relations fields/columns options, also used to provide the order | | coverRelationKey | [string](#string) | | Relation used for cover in gallery | | hideIcon | [bool](#bool) | | Hide icon near name | -| cardSize | [Block.Content.Dataview.View.Size](#anytype.model.Block.Content.Dataview.View.Size) | | Gallery card size | +| cardSize | [Block.Content.Dataview.View.Size](#anytype-model-Block-Content-Dataview-View-Size) | | Gallery card size | | coverFit | [bool](#bool) | | Image fits container | | groupRelationKey | [string](#string) | | Group view by this relationKey | | groupBackgroundColors | [bool](#bool) | | Enable backgrounds in groups | @@ -21237,7 +21238,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Dataview.ViewGroup @@ -21255,7 +21256,7 @@ Bookmark is to keep a web-link and to preview a content. - + ### Block.Content.Div Divider: block, that contains only one horizontal thin line @@ -21263,14 +21264,14 @@ Divider: block, that contains only one horizontal thin line | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| style | [Block.Content.Div.Style](#anytype.model.Block.Content.Div.Style) | | | +| style | [Block.Content.Div.Style](#anytype-model-Block-Content-Div-Style) | | | - + ### Block.Content.FeaturedRelations @@ -21280,7 +21281,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.File @@ -21290,19 +21291,19 @@ Divider: block, that contains only one horizontal thin line | ----- | ---- | ----- | ----------- | | hash | [string](#string) | | | | name | [string](#string) | | | -| type | [Block.Content.File.Type](#anytype.model.Block.Content.File.Type) | | | +| type | [Block.Content.File.Type](#anytype-model-Block-Content-File-Type) | | | | mime | [string](#string) | | | | size | [int64](#int64) | | | | addedAt | [int64](#int64) | | | -| state | [Block.Content.File.State](#anytype.model.Block.Content.File.State) | | | -| style | [Block.Content.File.Style](#anytype.model.Block.Content.File.Style) | | | +| state | [Block.Content.File.State](#anytype-model-Block-Content-File-State) | | | +| style | [Block.Content.File.Style](#anytype-model-Block-Content-File-Style) | | | - + ### Block.Content.Icon @@ -21317,7 +21318,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.Latex @@ -21332,7 +21333,7 @@ Divider: block, that contains only one horizontal thin line - + ### Block.Content.Layout Layout have no visual representation, but affects on blocks, that it contains. @@ -21341,14 +21342,14 @@ Row/Column layout blocks creates only automatically, after some of a D&D ope | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| style | [Block.Content.Layout.Style](#anytype.model.Block.Content.Layout.Style) | | | +| style | [Block.Content.Layout.Style](#anytype-model-Block-Content-Layout-Style) | | | - + ### Block.Content.Link Link: block to link some content from an external sources. @@ -21357,11 +21358,11 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | targetBlockId | [string](#string) | | id of the target block | -| style | [Block.Content.Link.Style](#anytype.model.Block.Content.Link.Style) | | deprecated | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | -| iconSize | [Block.Content.Link.IconSize](#anytype.model.Block.Content.Link.IconSize) | | | -| cardStyle | [Block.Content.Link.CardStyle](#anytype.model.Block.Content.Link.CardStyle) | | | -| description | [Block.Content.Link.Description](#anytype.model.Block.Content.Link.Description) | | | +| style | [Block.Content.Link.Style](#anytype-model-Block-Content-Link-Style) | | deprecated | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| iconSize | [Block.Content.Link.IconSize](#anytype-model-Block-Content-Link-IconSize) | | | +| cardStyle | [Block.Content.Link.CardStyle](#anytype-model-Block-Content-Link-CardStyle) | | | +| description | [Block.Content.Link.Description](#anytype-model-Block-Content-Link-Description) | | | | relations | [string](#string) | repeated | | @@ -21369,7 +21370,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Relation @@ -21384,7 +21385,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Smartblock @@ -21394,7 +21395,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Table @@ -21404,7 +21405,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableColumn @@ -21414,7 +21415,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableOfContents @@ -21424,7 +21425,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.TableRow @@ -21439,7 +21440,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text @@ -21448,8 +21449,8 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | text | [string](#string) | | | -| style | [Block.Content.Text.Style](#anytype.model.Block.Content.Text.Style) | | | -| marks | [Block.Content.Text.Marks](#anytype.model.Block.Content.Text.Marks) | | list of marks to apply to the text | +| style | [Block.Content.Text.Style](#anytype-model-Block-Content-Text-Style) | | | +| marks | [Block.Content.Text.Marks](#anytype-model-Block-Content-Text-Marks) | | list of marks to apply to the text | | checked | [bool](#bool) | | | | color | [string](#string) | | | | iconEmoji | [string](#string) | | used with style Callout | @@ -21460,7 +21461,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text.Mark @@ -21468,8 +21469,8 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| range | [Range](#anytype.model.Range) | | range of symbols to apply this mark. From(symbol) To(symbol) | -| type | [Block.Content.Text.Mark.Type](#anytype.model.Block.Content.Text.Mark.Type) | | | +| range | [Range](#anytype-model-Range) | | range of symbols to apply this mark. From(symbol) To(symbol) | +| type | [Block.Content.Text.Mark.Type](#anytype-model-Block-Content-Text-Mark-Type) | | | | param | [string](#string) | | link, color, etc | @@ -21477,7 +21478,7 @@ Link: block to link some content from an external sources. - + ### Block.Content.Text.Marks @@ -21485,14 +21486,14 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| marks | [Block.Content.Text.Mark](#anytype.model.Block.Content.Text.Mark) | repeated | | +| marks | [Block.Content.Text.Mark](#anytype-model-Block-Content-Text-Mark) | repeated | | - + ### Block.Content.Widget @@ -21500,7 +21501,7 @@ Link: block to link some content from an external sources. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| layout | [Block.Content.Widget.Layout](#anytype.model.Block.Content.Widget.Layout) | | | +| layout | [Block.Content.Widget.Layout](#anytype-model-Block-Content-Widget-Layout) | | | | limit | [int32](#int32) | | | | viewId | [string](#string) | | | @@ -21509,7 +21510,7 @@ Link: block to link some content from an external sources. - + ### Block.Restrictions @@ -21528,7 +21529,7 @@ Link: block to link some content from an external sources. - + ### BlockMetaOnly Used to decode block meta only, without the content itself @@ -21537,14 +21538,14 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | -| fields | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| fields | [google.protobuf.Struct](#google-protobuf-Struct) | | | - + ### InternalFlag @@ -21552,14 +21553,14 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| value | [InternalFlag.Value](#anytype.model.InternalFlag.Value) | | | +| value | [InternalFlag.Value](#anytype-model-InternalFlag-Value) | | | - + ### Layout @@ -21567,16 +21568,16 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| id | [ObjectType.Layout](#anytype.model.ObjectType.Layout) | | | +| id | [ObjectType.Layout](#anytype-model-ObjectType-Layout) | | | | name | [string](#string) | | | -| requiredRelations | [Relation](#anytype.model.Relation) | repeated | relations required for this object type | +| requiredRelations | [Relation](#anytype-model-Relation) | repeated | relations required for this object type | - + ### LinkPreview @@ -21589,14 +21590,14 @@ Used to decode block meta only, without the content itself | description | [string](#string) | | | | imageUrl | [string](#string) | | | | faviconUrl | [string](#string) | | | -| type | [LinkPreview.Type](#anytype.model.LinkPreview.Type) | | | +| type | [LinkPreview.Type](#anytype-model-LinkPreview-Type) | | | - + ### Object @@ -21606,7 +21607,7 @@ Used to decode block meta only, without the content itself - + ### Object.ChangePayload @@ -21614,14 +21615,14 @@ Used to decode block meta only, without the content itself | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| smartBlockType | [SmartBlockType](#anytype.model.SmartBlockType) | | | +| smartBlockType | [SmartBlockType](#anytype-model-SmartBlockType) | | | - + ### ObjectType @@ -21631,13 +21632,13 @@ Used to decode block meta only, without the content itself | ----- | ---- | ----- | ----------- | | url | [string](#string) | | leave empty in case you want to create the new one | | name | [string](#string) | | name of objectType (can be localized for bundled types) | -| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | cannot contain more than one Relation with the same RelationType | -| layout | [ObjectType.Layout](#anytype.model.ObjectType.Layout) | | | +| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | cannot contain more than one Relation with the same RelationType | +| layout | [ObjectType.Layout](#anytype-model-ObjectType-Layout) | | | | iconEmoji | [string](#string) | | emoji symbol | | description | [string](#string) | | | | hidden | [bool](#bool) | | | | readonly | [bool](#bool) | | | -| types | [SmartBlockType](#anytype.model.SmartBlockType) | repeated | | +| types | [SmartBlockType](#anytype-model-SmartBlockType) | repeated | | | isArchived | [bool](#bool) | | sets locally to hide object type from set and some other places | | installedByDefault | [bool](#bool) | | | @@ -21646,7 +21647,7 @@ Used to decode block meta only, without the content itself - + ### ObjectView Works with a smart blocks: Page, Dashboard @@ -21656,20 +21657,20 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | rootId | [string](#string) | | Root block id | -| blocks | [Block](#anytype.model.Block) | repeated | dependent simple blocks (descendants) | -| details | [ObjectView.DetailsSet](#anytype.model.ObjectView.DetailsSet) | repeated | details for the current and dependent objects | -| type | [SmartBlockType](#anytype.model.SmartBlockType) | | | -| relations | [Relation](#anytype.model.Relation) | repeated | DEPRECATED, use relationLinks instead | -| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | | -| restrictions | [Restrictions](#anytype.model.Restrictions) | | object restrictions | -| history | [ObjectView.HistorySize](#anytype.model.ObjectView.HistorySize) | | | +| blocks | [Block](#anytype-model-Block) | repeated | dependent simple blocks (descendants) | +| details | [ObjectView.DetailsSet](#anytype-model-ObjectView-DetailsSet) | repeated | details for the current and dependent objects | +| type | [SmartBlockType](#anytype-model-SmartBlockType) | | | +| relations | [Relation](#anytype-model-Relation) | repeated | DEPRECATED, use relationLinks instead | +| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | | +| restrictions | [Restrictions](#anytype-model-Restrictions) | | object restrictions | +| history | [ObjectView.HistorySize](#anytype-model-ObjectView-HistorySize) | | | - + ### ObjectView.DetailsSet @@ -21678,7 +21679,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | id | [string](#string) | | context objectId | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | can not be a partial state. Should replace client details state | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | can not be a partial state. Should replace client details state | | subIds | [string](#string) | repeated | | @@ -21686,7 +21687,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc - + ### ObjectView.HistorySize @@ -21702,7 +21703,7 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc - + ### ObjectView.RelationWithValuePerObject @@ -21711,14 +21712,14 @@ Dashboard opened, click on a page, Rpc.Block.open, Block.ShowFullscreen(PageBloc | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | objectId | [string](#string) | | | -| relations | [RelationWithValue](#anytype.model.RelationWithValue) | repeated | | +| relations | [RelationWithValue](#anytype-model-RelationWithValue) | repeated | | - + ### Range General purpose structure, uses in Mark. @@ -21734,7 +21735,7 @@ General purpose structure, uses in Mark. - + ### Relation Relation describe the human-interpreted relation type. It may be something like "Date of creation, format=date" or "Assignee, format=objectId, objectType=person" @@ -21744,21 +21745,21 @@ Relation describe the human-interpreted relation type. It may be something like | ----- | ---- | ----- | ----------- | | id | [string](#string) | | | | key | [string](#string) | | Key under which the value is stored in the map. Must be unique for the object type. It usually auto-generated bsonid, but also may be something human-readable in case of prebuilt types. | -| format | [RelationFormat](#anytype.model.RelationFormat) | | format of the underlying data | +| format | [RelationFormat](#anytype-model-RelationFormat) | | format of the underlying data | | name | [string](#string) | | name to show (can be localized for bundled types) | -| defaultValue | [google.protobuf.Value](#google.protobuf.Value) | | | -| dataSource | [Relation.DataSource](#anytype.model.Relation.DataSource) | | where the data is stored | +| defaultValue | [google.protobuf.Value](#google-protobuf-Value) | | | +| dataSource | [Relation.DataSource](#anytype-model-Relation-DataSource) | | where the data is stored | | hidden | [bool](#bool) | | internal, not displayed to user (e.g. coverX, coverY) | | readOnly | [bool](#bool) | | value not editable by user tobe renamed to readonlyValue | | readOnlyRelation | [bool](#bool) | | relation metadata, eg name and format is not editable by user | | multi | [bool](#bool) | | allow multiple values (stored in pb list) | | objectTypes | [string](#string) | repeated | URL of object type, empty to allow link to any object | -| selectDict | [Relation.Option](#anytype.model.Relation.Option) | repeated | index 10, 11 was used in internal-only builds. Can be reused, but may break some test accounts +| selectDict | [Relation.Option](#anytype-model-Relation-Option) | repeated | index 10, 11 was used in internal-only builds. Can be reused, but may break some test accounts default dictionary with unique values to choose for select/multiSelect format | | maxCount | [int32](#int32) | | max number of values can be set for this relation. 0 means no limit. 1 means the value can be stored in non-repeated field | | description | [string](#string) | | | -| scope | [Relation.Scope](#anytype.model.Relation.Scope) | | on-store fields, injected only locally +| scope | [Relation.Scope](#anytype-model-Relation-Scope) | | on-store fields, injected only locally scope from which this relation have been aggregated | | creator | [string](#string) | | creator profile id | @@ -21768,7 +21769,7 @@ scope from which this relation have been aggregated | - + ### Relation.Option @@ -21788,7 +21789,7 @@ stored | - + ### RelationLink @@ -21797,14 +21798,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | key | [string](#string) | | | -| format | [RelationFormat](#anytype.model.RelationFormat) | | | +| format | [RelationFormat](#anytype-model-RelationFormat) | | | - + ### RelationOptions @@ -21812,14 +21813,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| options | [Relation.Option](#anytype.model.Relation.Option) | repeated | | +| options | [Relation.Option](#anytype-model-Relation-Option) | repeated | | - + ### RelationWithValue @@ -21827,15 +21828,15 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relation | [Relation](#anytype.model.Relation) | | | -| value | [google.protobuf.Value](#google.protobuf.Value) | | | +| relation | [Relation](#anytype-model-Relation) | | | +| value | [google.protobuf.Value](#google-protobuf-Value) | | | - + ### Relations @@ -21843,14 +21844,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| relations | [Relation](#anytype.model.Relation) | repeated | | +| relations | [Relation](#anytype-model-Relation) | repeated | | - + ### Restrictions @@ -21858,15 +21859,15 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| object | [Restrictions.ObjectRestriction](#anytype.model.Restrictions.ObjectRestriction) | repeated | | -| dataview | [Restrictions.DataviewRestrictions](#anytype.model.Restrictions.DataviewRestrictions) | repeated | | +| object | [Restrictions.ObjectRestriction](#anytype-model-Restrictions-ObjectRestriction) | repeated | | +| dataview | [Restrictions.DataviewRestrictions](#anytype-model-Restrictions-DataviewRestrictions) | repeated | | - + ### Restrictions.DataviewRestrictions @@ -21875,14 +21876,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | blockId | [string](#string) | | | -| restrictions | [Restrictions.DataviewRestriction](#anytype.model.Restrictions.DataviewRestriction) | repeated | | +| restrictions | [Restrictions.DataviewRestriction](#anytype-model-Restrictions-DataviewRestriction) | repeated | | - + ### SmartBlockSnapshotBase @@ -21890,14 +21891,14 @@ stored | | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| blocks | [Block](#anytype.model.Block) | repeated | | -| details | [google.protobuf.Struct](#google.protobuf.Struct) | | | -| fileKeys | [google.protobuf.Struct](#google.protobuf.Struct) | | | -| extraRelations | [Relation](#anytype.model.Relation) | repeated | deprecated | +| blocks | [Block](#anytype-model-Block) | repeated | | +| details | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| fileKeys | [google.protobuf.Struct](#google-protobuf-Struct) | | | +| extraRelations | [Relation](#anytype-model-Relation) | repeated | deprecated | | objectTypes | [string](#string) | repeated | | -| collections | [google.protobuf.Struct](#google.protobuf.Struct) | | | +| collections | [google.protobuf.Struct](#google-protobuf-Struct) | | | | removedCollectionKeys | [string](#string) | repeated | | -| relationLinks | [RelationLink](#anytype.model.RelationLink) | repeated | | +| relationLinks | [RelationLink](#anytype-model-RelationLink) | repeated | | @@ -21906,7 +21907,7 @@ stored | - + ### Account.StatusType @@ -21920,7 +21921,7 @@ stored | - + ### Block.Align @@ -21933,7 +21934,7 @@ stored | - + ### Block.Content.Bookmark.State @@ -21947,7 +21948,7 @@ stored | - + ### Block.Content.Dataview.Filter.Condition @@ -21975,7 +21976,7 @@ stored | - + ### Block.Content.Dataview.Filter.Operator @@ -21987,7 +21988,7 @@ stored | - + ### Block.Content.Dataview.Filter.QuickOption @@ -22009,7 +22010,7 @@ stored | - + ### Block.Content.Dataview.Relation.DateFormat @@ -22024,7 +22025,7 @@ stored | - + ### Block.Content.Dataview.Relation.TimeFormat @@ -22036,7 +22037,7 @@ stored | - + ### Block.Content.Dataview.Sort.Type @@ -22049,7 +22050,7 @@ stored | - + ### Block.Content.Dataview.View.Size @@ -22062,7 +22063,7 @@ stored | - + ### Block.Content.Dataview.View.Type @@ -22076,7 +22077,7 @@ stored | - + ### Block.Content.Div.Style @@ -22088,7 +22089,7 @@ stored | - + ### Block.Content.File.State @@ -22102,7 +22103,7 @@ stored | - + ### Block.Content.File.Style @@ -22115,7 +22116,7 @@ stored | - + ### Block.Content.File.Type @@ -22131,7 +22132,7 @@ stored | - + ### Block.Content.Layout.Style @@ -22147,7 +22148,7 @@ stored | - + ### Block.Content.Link.CardStyle @@ -22160,7 +22161,7 @@ stored | - + ### Block.Content.Link.Description @@ -22173,7 +22174,7 @@ stored | - + ### Block.Content.Link.IconSize @@ -22186,7 +22187,7 @@ stored | - + ### Block.Content.Link.Style @@ -22200,7 +22201,7 @@ stored | - + ### Block.Content.Text.Mark.Type @@ -22221,7 +22222,7 @@ stored | - + ### Block.Content.Text.Style @@ -22245,7 +22246,7 @@ stored | - + ### Block.Content.Widget.Layout @@ -22259,7 +22260,7 @@ stored | - + ### Block.Position @@ -22277,7 +22278,7 @@ stored | - + ### Block.VerticalAlign @@ -22290,7 +22291,7 @@ stored | - + ### InternalFlag.Value Use such a weird construction due to the issue with imported repeated enum type @@ -22305,7 +22306,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### LinkPreview.Type @@ -22319,7 +22320,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### ObjectType.Layout @@ -22345,7 +22346,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### Relation.DataSource @@ -22359,7 +22360,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### Relation.Scope @@ -22374,7 +22375,7 @@ Look https://github.com/golang/protobuf/issues/1135 for more information. - + ### RelationFormat RelationFormat describes how the underlying data is stored in the google.protobuf.Value and how it should be validated/sanitized @@ -22398,7 +22399,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### Restrictions.DataviewRestriction @@ -22412,7 +22413,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### Restrictions.ObjectRestriction @@ -22431,7 +22432,7 @@ RelationFormat describes how the underlying data is stored in the google.protobu - + ### SmartBlockType diff --git a/go.mod b/go.mod index 80af079600..23551bb07f 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/PuerkitoBio/goquery v1.8.1 github.com/VividCortex/ewma v1.2.0 github.com/adrium/goheif v0.0.0-20230113233934-ca402e77a786 - github.com/anyproto/any-sync v0.2.1 + github.com/anyproto/any-sync v0.2.2 github.com/anyproto/go-naturaldate/v2 v2.0.2-0.20230524105841-9829cfd13438 github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de github.com/blevesearch/bleve/v2 v2.3.8 @@ -45,9 +45,9 @@ require ( github.com/ipfs/go-datastore v0.6.0 github.com/ipfs/go-ds-flatfs v0.5.1 github.com/ipfs/go-ipfs-ds-help v1.1.1 - github.com/ipfs/go-ipld-format v0.4.0 + github.com/ipfs/go-ipld-format v0.5.0 github.com/ipfs/go-log v1.0.5 - github.com/ipfs/go-merkledag v0.10.0 + github.com/ipfs/go-merkledag v0.11.0 github.com/ipfs/go-path v0.3.1 github.com/ipfs/go-unixfs v0.4.6 github.com/ipfs/interface-go-ipfs-core v0.11.2 @@ -63,10 +63,9 @@ require ( github.com/miolini/datacounter v1.0.3 github.com/mr-tron/base58 v1.2.0 github.com/multiformats/go-base32 v0.1.0 - github.com/multiformats/go-multiaddr v0.9.0 github.com/multiformats/go-multiaddr-dns v0.3.1 github.com/multiformats/go-multibase v0.2.0 - github.com/multiformats/go-multihash v0.2.2 + github.com/multiformats/go-multihash v0.2.3 github.com/opentracing/opentracing-go v1.2.0 github.com/otiai10/copy v1.11.0 github.com/otiai10/opengraph/v2 v2.1.0 @@ -110,7 +109,6 @@ require ( github.com/anyproto/go-slip10 v1.0.0 // indirect github.com/anyproto/go-slip21 v1.0.0 // indirect github.com/aokoli/goutils v1.0.1 // indirect - github.com/benbjohnson/clock v1.3.5 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bits-and-blooms/bitset v1.2.0 // indirect github.com/blevesearch/bleve_index_api v1.0.5 // indirect @@ -147,7 +145,6 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/go-ole/go-ole v1.2.6 // indirect github.com/go-shiori/dom v0.0.0-20210627111528-4e4722cd0d65 // indirect - github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b // indirect github.com/gobwas/glob v0.2.3 // indirect github.com/gogo/googleapis v1.3.1 // indirect @@ -159,7 +156,6 @@ require ( github.com/golang/snappy v0.0.4 // indirect github.com/google/flatbuffers v1.12.1 // indirect github.com/google/go-querystring v1.1.0 // indirect - github.com/google/pprof v0.0.0-20230602150820-91b7bce49751 // indirect github.com/gosimple/unidecode v1.0.1 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect @@ -176,8 +172,7 @@ require ( github.com/ipfs/go-ipfs-files v0.3.0 // indirect github.com/ipfs/go-ipfs-posinfo v0.0.1 // indirect github.com/ipfs/go-ipfs-util v0.0.2 // indirect - github.com/ipfs/go-ipld-cbor v0.0.6 // indirect - github.com/ipfs/go-ipld-legacy v0.1.1 // indirect + github.com/ipfs/go-ipld-legacy v0.2.1 // indirect github.com/ipfs/go-libipfs v0.4.1 // indirect github.com/ipfs/go-log/v2 v2.5.1 // indirect github.com/ipfs/go-metrics-interface v0.0.1 // indirect @@ -190,7 +185,6 @@ require ( github.com/klauspost/compress v1.16.5 // indirect github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/libp2p/go-buffer-pool v0.1.0 // indirect - github.com/libp2p/go-flow-metrics v0.1.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/mattn/go-isatty v0.0.19 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect @@ -200,11 +194,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/mschoch/smat v0.2.0 // indirect github.com/multiformats/go-base36 v0.2.0 // indirect + github.com/multiformats/go-multiaddr v0.9.0 // indirect github.com/multiformats/go-multicodec v0.9.0 // indirect github.com/multiformats/go-multistream v0.4.1 // indirect github.com/multiformats/go-varint v0.0.7 // indirect github.com/mwitkow/go-proto-validators v0.0.0-20180403085117-0950a7990007 // indirect - github.com/onsi/ginkgo/v2 v2.9.7 // indirect github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/polydawn/refmt v0.89.0 // indirect @@ -213,9 +207,6 @@ require ( github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.10.0 // indirect github.com/pseudomuto/protokit v0.2.0 // indirect - github.com/quic-go/qtls-go1-19 v0.3.2 // indirect - github.com/quic-go/qtls-go1-20 v0.2.2 // indirect - github.com/quic-go/quic-go v0.35.1 // indirect github.com/rs/cors v1.7.0 // indirect github.com/shoenig/go-m1cpu v0.1.6 // indirect github.com/sirupsen/logrus v1.8.1 // indirect @@ -227,7 +218,6 @@ require ( github.com/tklauser/numcpus v0.6.0 // indirect github.com/tyler-smith/go-bip39 v1.1.0 // indirect github.com/uber/jaeger-lib v2.4.1+incompatible // indirect - github.com/whyrusleeping/cbor-gen v0.0.0-20230126041949-52956bd4c9aa // indirect github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f // indirect github.com/yusufpapurcu/wmi v1.2.3 // indirect github.com/zeebo/blake3 v0.2.3 // indirect @@ -242,7 +232,6 @@ require ( golang.org/x/sync v0.2.0 // indirect golang.org/x/sys v0.8.0 // indirect golang.org/x/tools v0.9.3 // indirect - golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect google.golang.org/appengine v1.6.7 // indirect google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1 // indirect google.golang.org/protobuf v1.30.0 // indirect diff --git a/go.sum b/go.sum index 23ee175032..aae681c0dc 100644 --- a/go.sum +++ b/go.sum @@ -40,8 +40,8 @@ github.com/andybalholm/cascadia v1.2.0/go.mod h1:YCyR8vOZT9aZ1CHEd8ap0gMVm2aFgxB github.com/andybalholm/cascadia v1.3.1 h1:nhxRkql1kdYCc8Snf7D5/D3spOX+dBgjA6u8x004T2c= github.com/andybalholm/cascadia v1.3.1/go.mod h1:R4bJ1UQfqADjvDa4P6HZHLh/3OxWWEqc0Sk8XGwHqvA= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/anyproto/any-sync v0.2.1 h1:M1IiboT43zTaDKbINLjuOvPMP6/5TFu9938ExYVpiUE= -github.com/anyproto/any-sync v0.2.1/go.mod h1:9mBFhqgDbUcxU9gxiyniNUQMfsUcD0eCjLIc6rgh2uk= +github.com/anyproto/any-sync v0.2.2 h1:pefWmg+/rK3DvFPhT7MDc8YNi9Yl0HNhVXNvwOJQP0g= +github.com/anyproto/any-sync v0.2.2/go.mod h1:U8NhzTbGCSE9Yf2CfvBTGtNPAYl6zrZT2vZypab2mck= github.com/anyproto/go-chash v0.1.0 h1:I9meTPjXFRfXZHRJzjOHC/XF7Q5vzysKkiT/grsogXY= github.com/anyproto/go-chash v0.1.0/go.mod h1:0UjNQi3PDazP0fINpFYu6VKhuna+W/V+1vpXHAfNgLY= github.com/anyproto/go-ds-badger3 v0.3.1-0.20230524095230-434cf6346d9b h1:SMizb43hfILk2bpMgpTd30n6yQQdxW0ZbDti0wqfsBw= @@ -78,7 +78,6 @@ github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/benbjohnson/clock v1.3.5 h1:VvXlSJBzZpA/zum6Sj74hxwYI2DIxRWuNIoXAzHZz5o= -github.com/benbjohnson/clock v1.3.5/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= @@ -237,7 +236,6 @@ github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzP github.com/francoispqt/gojay v1.2.13 h1:d2m3sFjloqoIUQU3TsHBgj6qg/BVGlTBeHDUmyJnXKk= github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= -github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k= github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= @@ -281,7 +279,6 @@ github.com/go-shiori/go-readability v0.0.0-20220215145315-dd6828d2f09b/go.mod h1 github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= -github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b h1:khEcpUM4yFcxg4/FHQWkvVRmgijNXRfzkIDHh23ggEo= github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b/go.mod h1:aUCEOzzezBEjDBbFBoSiya/gduyIiWYRP6CnSFIV8AM= github.com/go-yaml/yaml v2.1.0+incompatible/go.mod h1:w2MrLa16VYP0jy6N7M5kHaCkaLENm+P+Tv+MfurjSw0= @@ -364,7 +361,6 @@ github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17 github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gopacket v1.1.19 h1:ves8RnFZPGiFnTS0uPQStjwru6uO6h+nlr9j6fL7kF8= github.com/google/pprof v0.0.0-20230602150820-91b7bce49751 h1:hR7/MlvK23p6+lIw9SN1TigNLn9ZnF3W4SYRKq2gAHs= -github.com/google/pprof v0.0.0-20230602150820-91b7bce49751/go.mod h1:Jh3hGz2jkYak8qXPD19ryItVnUgpgeqzdkY/D0EaeuA= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= @@ -454,16 +450,11 @@ github.com/ipfs/go-bitfield v1.1.0 h1:fh7FIo8bSwaJEh6DdTWbCeZ1eqOaOkKFI74SCnsWbG github.com/ipfs/go-bitfield v1.1.0/go.mod h1:paqf1wjq/D2BBmzfTVFlJQ9IlFOZpg422HL0HqsGWHU= github.com/ipfs/go-bitswap v0.11.0 h1:j1WVvhDX1yhG32NTC9xfxnqycqYIlhzEzLXG/cU1HyQ= github.com/ipfs/go-block-format v0.0.2/go.mod h1:AWR46JfpcObNfg3ok2JHDUfdiHRgWhJgCQF+KIgOPJY= -github.com/ipfs/go-block-format v0.0.3/go.mod h1:4LmD4ZUw0mhO+JSKdpWwrzATiEfM7WWgQ8H5l6P8MVk= github.com/ipfs/go-block-format v0.1.2 h1:GAjkfhVx1f4YTODS6Esrj1wt2HhrtwTnhEr+DyPUaJo= github.com/ipfs/go-block-format v0.1.2/go.mod h1:mACVcrxarQKstUU3Yf/RdwbC4DzPV6++rO2a3d+a/KE= github.com/ipfs/go-blockservice v0.5.2 h1:in9Bc+QcXwd1apOVM7Un9t8tixPKdaHQFdLSUM1Xgk8= github.com/ipfs/go-blockservice v0.5.2/go.mod h1:VpMblFEqG67A/H2sHKAemeH9vlURVavlysbdUI632yk= github.com/ipfs/go-cid v0.0.1/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM= -github.com/ipfs/go-cid v0.0.2/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM= -github.com/ipfs/go-cid v0.0.3/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM= -github.com/ipfs/go-cid v0.0.4/go.mod h1:4LLaPOQwmk5z9LBgQnpkivrx8BJjUyGwTXCd5Xfj6+M= -github.com/ipfs/go-cid v0.0.6/go.mod h1:6Ux9z5e+HpkQdckYoX1PG/6xqKspzlEIR5SDmgqgC/I= github.com/ipfs/go-cid v0.0.7/go.mod h1:6Ux9z5e+HpkQdckYoX1PG/6xqKspzlEIR5SDmgqgC/I= github.com/ipfs/go-cid v0.4.1 h1:A/T3qGvxi4kpKWWcPC/PgbvDA2bjVLO7n4UeVwnbs/s= github.com/ipfs/go-cid v0.4.1/go.mod h1:uQHwDeX4c6CtyrFwdqyhpNcxVewur1M7l7fNU7LKwZk= @@ -495,21 +486,18 @@ github.com/ipfs/go-ipfs-routing v0.3.0 h1:9W/W3N+g+y4ZDeffSgqhgo7BsBSJwPMcyssET9 github.com/ipfs/go-ipfs-util v0.0.1/go.mod h1:spsl5z8KUnrve+73pOhSVZND1SIxPW5RyBCNzQxlJBc= github.com/ipfs/go-ipfs-util v0.0.2 h1:59Sswnk1MFaiq+VcaknX7aYEyGyGDAA73ilhEK2POp8= github.com/ipfs/go-ipfs-util v0.0.2/go.mod h1:CbPtkWJzjLdEcezDns2XYaehFVNXG9zrdrtMecczcsQ= -github.com/ipfs/go-ipld-cbor v0.0.6 h1:pYuWHyvSpIsOOLw4Jy7NbBkCyzLDcl64Bf/LZW7eBQ0= -github.com/ipfs/go-ipld-cbor v0.0.6/go.mod h1:ssdxxaLJPXH7OjF5V4NSjBbcfh+evoR4ukuru0oPXMA= github.com/ipfs/go-ipld-format v0.0.1/go.mod h1:kyJtbkDALmFHv3QR6et67i35QzO3S0dCDnkOJhcZkms= -github.com/ipfs/go-ipld-format v0.2.0/go.mod h1:3l3C1uKoadTPbeNfrDi+xMInYKlx2Cvg1BuydPSdzQs= -github.com/ipfs/go-ipld-format v0.4.0 h1:yqJSaJftjmjc9jEOFYlpkwOLVKv68OD27jFLlSghBlQ= -github.com/ipfs/go-ipld-format v0.4.0/go.mod h1:co/SdBE8h99968X0hViiw1MNlh6fvxxnHpvVLnH7jSM= -github.com/ipfs/go-ipld-legacy v0.1.1 h1:BvD8PEuqwBHLTKqlGFTHSwrwFOMkVESEvwIYwR2cdcc= -github.com/ipfs/go-ipld-legacy v0.1.1/go.mod h1:8AyKFCjgRPsQFf15ZQgDB8Din4DML/fOmKZkkFkrIEg= +github.com/ipfs/go-ipld-format v0.5.0 h1:WyEle9K96MSrvr47zZHKKcDxJ/vlpET6PSiQsAFO+Ds= +github.com/ipfs/go-ipld-format v0.5.0/go.mod h1:ImdZqJQaEouMjCvqCe0ORUS+uoBmf7Hf+EO/jh+nk3M= +github.com/ipfs/go-ipld-legacy v0.2.1 h1:mDFtrBpmU7b//LzLSypVrXsD8QxkEWxu5qVxN99/+tk= +github.com/ipfs/go-ipld-legacy v0.2.1/go.mod h1:782MOUghNzMO2DER0FlBR94mllfdCJCkTtDtPM51otM= github.com/ipfs/go-libipfs v0.4.1 h1:tyu3RRMKFQUyUQt5jyt5SmDnls93H4Tr3HifL50zihg= github.com/ipfs/go-libipfs v0.4.1/go.mod h1:Ad8ybPqwCkl2cNiNUMvM/iaVc/5bwNpHu8RPZ5te1hw= github.com/ipfs/go-log v1.0.3/go.mod h1:OsLySYkwIbiSUR/yBTdv1qPtcE4FW3WPWk/ewz9Ru+A= github.com/ipfs/go-log v1.0.5 h1:2dOuUCB1Z7uoczMWgAyDck5JLb72zHzrMnGnCNNbvY8= github.com/ipfs/go-log v1.0.5/go.mod h1:j0b8ZoR+7+R99LD9jZ6+AJsrzkPbSXbZfGakb5JPtIo= -github.com/ipfs/go-merkledag v0.10.0 h1:IUQhj/kzTZfam4e+LnaEpoiZ9vZF6ldimVlby+6OXL4= -github.com/ipfs/go-merkledag v0.10.0/go.mod h1:zkVav8KiYlmbzUzNM6kENzkdP5+qR7+2mCwxkQ6GIj8= +github.com/ipfs/go-merkledag v0.11.0 h1:DgzwK5hprESOzS4O1t/wi6JDpyVQdvm9Bs59N/jqfBY= +github.com/ipfs/go-merkledag v0.11.0/go.mod h1:Q4f/1ezvBiJV0YCIXvt51W/9/kqJGH4I1LsA7+djsM4= github.com/ipfs/go-metrics-interface v0.0.1 h1:j+cpbjYvu4R8zbleSs36gvB7jR+wsL2fGD6n0jO4kdg= github.com/ipfs/go-metrics-interface v0.0.1/go.mod h1:6s6euYU4zowdslK0GKHmqaIZ3j/b/tL7HTWtJ4VPgWY= github.com/ipfs/go-path v0.3.1 h1:wkeaCWE/NTuuPGlEkLTsED5UkzfKYZpxaFFPgk8ZVLE= @@ -523,7 +511,6 @@ github.com/ipfs/interface-go-ipfs-core v0.11.2 h1:vI9XEm9iC4iRNcyc8N4NkMdq4BvTYL github.com/ipfs/interface-go-ipfs-core v0.11.2/go.mod h1:xmnoccUXY7N/Q8AIx0vFqgW926/FAZ8+do/1NTEHKsU= github.com/ipld/go-codec-dagpb v1.6.0 h1:9nYazfyu9B1p3NAgfVdpRco3Fs2nFC72DqVsMj6rOcc= github.com/ipld/go-codec-dagpb v1.6.0/go.mod h1:ANzFhfP2uMJxRBr8CE+WQWs5UsNa0pYtmKZ+agnUw9s= -github.com/ipld/go-ipld-prime v0.9.1-0.20210324083106-dc342a9917db/go.mod h1:KvBLMr4PX1gWptgkzRjVZCrLmSGcZCb/jioOQwCqZN8= github.com/ipld/go-ipld-prime v0.20.0 h1:Ud3VwE9ClxpO2LkCYP7vWPc0Fo+dYdYzgxUJZ3uRG4g= github.com/ipld/go-ipld-prime v0.20.0/go.mod h1:PzqZ/ZR981eKbgdr3y2DJYeD/8bgMawdGVlJDE8kK+M= github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus= @@ -550,7 +537,6 @@ github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e h1:LvL4XsI70QxOGHed6yhQtAU34Kx3Qq2wwBzGFKY8zKk= github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e/go.mod h1:kLgvv7o6UM+0QSf0QjAse3wReFDsb9qbZJdfexWlrQw= -github.com/jtolds/gls v4.2.1+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= @@ -575,7 +561,6 @@ github.com/koron/go-ssdp v0.0.4 h1:1IDwrghSKYM7yLf7XCzbByg2sJ/JcNOZRXS2jczTwz0= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= @@ -583,12 +568,9 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= -github.com/libp2p/go-buffer-pool v0.0.2/go.mod h1:MvaB6xw5vOrDl8rYZGLFdKAuk/hRoRZd1Vi32+RXyFM= github.com/libp2p/go-buffer-pool v0.1.0 h1:oK4mSFcQz7cTQIfqbe4MIj9gLW+mnanjyFtc6cdF0Y8= github.com/libp2p/go-buffer-pool v0.1.0/go.mod h1:N+vh8gMqimBzdKkSMVuydVDq+UV5QTWy5HSiZacSbPg= github.com/libp2p/go-cidranger v1.1.0 h1:ewPN8EZ0dd1LSnrtuwd4709PXVcITVeuwbag38yPW7c= -github.com/libp2p/go-flow-metrics v0.1.0 h1:0iPhMI8PskQwzh57jB9WxIuIOQ0r+15PChFGkx3Q3WM= -github.com/libp2p/go-flow-metrics v0.1.0/go.mod h1:4Xi8MX8wj5aWNDAZttg6UPmc0ZrnFNsMtpsYUClFtro= github.com/libp2p/go-libp2p v0.27.5 h1:KwA7pXKXpz8hG6Cr1fMA7UkgleogcwQj0sxl5qquWRg= github.com/libp2p/go-libp2p v0.27.5/go.mod h1:oMfQGTb9CHnrOuSM6yMmyK2lXz3qIhnkn2+oK3B1Y2g= github.com/libp2p/go-libp2p-asn-util v0.3.0 h1:gMDcMyYiZKkocGXDQ5nsUQyquC9+H+iLEQHwOCZ7s8s= @@ -597,7 +579,6 @@ github.com/libp2p/go-libp2p-testing v0.12.0 h1:EPvBb4kKMWO29qP4mZGyhVzUyR25dvfUI github.com/libp2p/go-msgio v0.3.0 h1:mf3Z8B1xcFN314sWX+2vOTShIE0Mmn2TXn3YCUQGNj0= github.com/libp2p/go-nat v0.1.0 h1:MfVsH6DLcpa04Xr+p8hmVRG4juse0s3J8HyNWYHffXg= github.com/libp2p/go-netroute v0.2.1 h1:V8kVrpD8GK0Riv15/7VN6RbUQ3URNZVosw7H2v9tksU= -github.com/libp2p/go-reuseport v0.2.0 h1:18PRvIMlpY6ZK85nIAicSBuXXvrYoSw3dsBAR7zc560= github.com/libp2p/go-yamux/v4 v4.0.0 h1:+Y80dV2Yx/kv7Y7JKu0LECyVdMXm1VUoko+VQ9rBfZQ= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= @@ -609,7 +590,6 @@ github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0Q github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= -github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd h1:br0buuQ854V8u83wA0rVZ8ttrq5CpaPZdvrK0LP2lOk= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= @@ -633,8 +613,6 @@ github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJys github.com/miekg/dns v1.1.43/go.mod h1:+evo5L0630/F6ca/Z9+GAqzhjGyn8/c+TBaOyfEl0V4= github.com/miekg/dns v1.1.54 h1:5jon9mWcb0sFJGpnI99tOMhCPyJ+RPVz5b63MQG0VWI= github.com/miekg/dns v1.1.54/go.mod h1:uInx36IzPl7FYnDcMeVWxj9byh7DutNykX4G9Sj60FY= -github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b h1:z78hV3sbSMAUoyUMM0I83AUIT6Hu17AWfgjzIbtrYFc= -github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc h1:PTfri+PuQmWDqERdnNMiD9ZejrlswWrCpBEZgWOiTrc= github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1/go.mod h1:pD8RvIylQ358TN4wwqatJ8rNavkEINozVn9DtGI3dfQ= github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16/go.mod h1:2FMWW+8GMoPweT6+pI63m9YE3Lmw4J71hV56Chs1E/U= github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= @@ -658,7 +636,6 @@ github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3Rllmb github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8= -github.com/mr-tron/base58 v1.1.2/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= github.com/mr-tron/base58 v1.1.3/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= github.com/mr-tron/base58 v1.2.0/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= @@ -680,12 +657,10 @@ github.com/multiformats/go-multibase v0.2.0/go.mod h1:bFBZX4lKCA/2lyOFSAoKH5SS6o github.com/multiformats/go-multicodec v0.9.0 h1:pb/dlPnzee/Sxv/j4PmkDRxCOi3hXTz3IbPKOXWJkmg= github.com/multiformats/go-multicodec v0.9.0/go.mod h1:L3QTQvMIaVBkXOXXtVmYE+LI16i14xuaojr/H7Ai54k= github.com/multiformats/go-multihash v0.0.1/go.mod h1:w/5tugSrLEbWqlcgJabL3oHFKTwfvkofsjW2Qa1ct4U= -github.com/multiformats/go-multihash v0.0.10/go.mod h1:YSLudS+Pi8NHE7o6tb3D8vrpKa63epEDmG8nTduyAew= github.com/multiformats/go-multihash v0.0.13/go.mod h1:VdAWLKTwram9oKAatUcLxBNUjdtcVwxObEQBtRfuyjc= github.com/multiformats/go-multihash v0.0.14/go.mod h1:VdAWLKTwram9oKAatUcLxBNUjdtcVwxObEQBtRfuyjc= -github.com/multiformats/go-multihash v0.0.15/go.mod h1:D6aZrWNLFTV/ynMpKsNtB40mJzmCl4jb1alC0OvHiHg= -github.com/multiformats/go-multihash v0.2.2 h1:Uu7LWs/PmWby1gkj1S1DXx3zyd3aVabA4FiMKn/2tAc= -github.com/multiformats/go-multihash v0.2.2/go.mod h1:dXgKXCXjBzdscBLk9JkjINiEsCKRVch90MdaGiKsvSM= +github.com/multiformats/go-multihash v0.2.3 h1:7Lyc8XfX/IY2jWb/gI7JP+o7JEq9hOa7BFvVU9RSh+U= +github.com/multiformats/go-multihash v0.2.3/go.mod h1:dXgKXCXjBzdscBLk9JkjINiEsCKRVch90MdaGiKsvSM= github.com/multiformats/go-multistream v0.4.1 h1:rFy0Iiyn3YT0asivDUIR05leAdwZq3de4741sbiSdfo= github.com/multiformats/go-multistream v0.4.1/go.mod h1:Mz5eykRVAjJWckE2U78c6xqdtyNUEhKSM0Lwar2p77Q= github.com/multiformats/go-varint v0.0.5/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE= @@ -713,10 +688,9 @@ github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= github.com/onsi/ginkgo/v2 v2.9.7 h1:06xGQy5www2oN160RtEZoTvnP2sPhEfePYmCDc2szss= -github.com/onsi/ginkgo/v2 v2.9.7/go.mod h1:cxrmXWykAwTwhQsJOPfdIDiJ+l2RYq7U8hFU+M/1uw0= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.27.7 h1:fVih9JD6ogIiHUN6ePK7HJidyEDpWGVB5mzM7cWNXoU= github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= @@ -755,8 +729,6 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/polydawn/refmt v0.0.0-20190221155625-df39d6c2d992/go.mod h1:uIp+gprXxxrWSjjklXD+mN4wed/tMfjMMmN/9+JsA9o= -github.com/polydawn/refmt v0.0.0-20190807091052-3d65705ee9f1/go.mod h1:uIp+gprXxxrWSjjklXD+mN4wed/tMfjMMmN/9+JsA9o= github.com/polydawn/refmt v0.89.0 h1:ADJTApkvkeBZsN0tBTx8QjpD9JkmxbKp0cxfr9qszm4= github.com/polydawn/refmt v0.89.0/go.mod h1:/zvteZs/GwLtCgZ4BL6CBsk9IKIlexP43ObX9AxTqTw= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= @@ -803,11 +775,8 @@ github.com/pseudomuto/protokit v0.2.0 h1:hlnBDcy3YEDXH7kc9gV+NLaN0cDzhDvD1s7Y6FZ github.com/pseudomuto/protokit v0.2.0/go.mod h1:2PdH30hxVHsup8KpBTOXTBeMVhJZVio3Q8ViKSAXT0Q= github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo= github.com/quic-go/qtls-go1-19 v0.3.2 h1:tFxjCFcTQzK+oMxG6Zcvp4Dq8dx4yD3dDiIiyc86Z5U= -github.com/quic-go/qtls-go1-19 v0.3.2/go.mod h1:ySOI96ew8lnoKPtSqx2BlI5wCpUVPT05RMAlajtnyOI= github.com/quic-go/qtls-go1-20 v0.2.2 h1:WLOPx6OY/hxtTxKV1Zrq20FtXtDEkeY00CGQm8GEa3E= -github.com/quic-go/qtls-go1-20 v0.2.2/go.mod h1:JKtK6mjbAVcUTN/9jZpvLbGxvdWIKS8uT7EiStoU1SM= github.com/quic-go/quic-go v0.35.1 h1:b0kzj6b/cQAf05cT0CkQubHM31wiA+xH3IBkxP62poo= -github.com/quic-go/quic-go v0.35.1/go.mod h1:+4CVgVppm0FNjpG3UcX8Joi/frKOH7/ciD5yGcwOO1g= github.com/quic-go/webtransport-go v0.5.3 h1:5XMlzemqB4qmOlgIus5zB45AcZ2kCgCy2EptUrfOPWU= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= @@ -853,7 +822,6 @@ github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs= github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo= -github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa/go.mod h1:2RVY1rIf+2J2o/IM9+vPq9RzmHDSseB7FoXiSNIUsoU= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/smartystreets/goconvey v1.7.2 h1:9RBaZCeXEQ3UselpuwUQHltGVXvdwm6cv1hgR6gDIPg= github.com/smartystreets/goconvey v1.7.2/go.mod h1:Vw0tHAZW6lzCRk3xgdin6fKYcG+G3Pg9vgXWeJpQFMM= @@ -922,13 +890,8 @@ github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijb github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli v1.22.10/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/warpfork/go-testmark v0.11.0 h1:J6LnV8KpceDvo7spaNU4+DauH2n1x+6RaO2rJrmpQ9U= -github.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw= -github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw= github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0 h1:GDDkbFiaK8jsSDJfjId/PEGEShv6ugrt4kYsC5UIDaQ= github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw= -github.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158/go.mod h1:Xj/M2wWU+QdTdRbu/L/1dIZY8/Wb2K9pAhtroQuxJJI= -github.com/whyrusleeping/cbor-gen v0.0.0-20230126041949-52956bd4c9aa h1:EyA027ZAkuaCLoxVX4r1TZMPy1d31fM6hbfQ4OU4I5o= -github.com/whyrusleeping/cbor-gen v0.0.0-20230126041949-52956bd4c9aa/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ= github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f h1:jQa4QT2UP9WYv2nzyawpKMOCl+Z/jW7djv2/J50lj9E= github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f/go.mod h1:p9UJB6dDgdPgMJZs7UjUOdulKyRr9fqkS+6JKAInPy8= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= @@ -999,7 +962,6 @@ golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200602180216-279210d13fed/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g= golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= @@ -1133,7 +1095,6 @@ golang.org/x/sys v0.0.0-20201204225414-ed752295db88/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1153,7 +1114,6 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= @@ -1200,8 +1160,6 @@ golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= diff --git a/pb/commands.pb.go b/pb/commands.pb.go index e132ad8232..3392b5b142 100644 --- a/pb/commands.pb.go +++ b/pb/commands.pb.go @@ -49035,6 +49035,7 @@ var xxx_messageInfo_RpcMetricsSetParameters proto.InternalMessageInfo type RpcMetricsSetParametersRequest struct { Platform string `protobuf:"bytes,1,opt,name=platform,proto3" json:"platform,omitempty"` + Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` } func (m *RpcMetricsSetParametersRequest) Reset() { *m = RpcMetricsSetParametersRequest{} } @@ -49077,6 +49078,13 @@ func (m *RpcMetricsSetParametersRequest) GetPlatform() string { return "" } +func (m *RpcMetricsSetParametersRequest) GetVersion() string { + if m != nil { + return m.Version + } + return "" +} + type RpcMetricsSetParametersResponse struct { Error *RpcMetricsSetParametersResponseError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` } @@ -51095,839 +51103,840 @@ func init() { func init() { proto.RegisterFile("pb/protos/commands.proto", fileDescriptor_8261c968b2e6f45c) } var fileDescriptor_8261c968b2e6f45c = []byte{ - // 13311 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0xbd, 0x7b, 0x94, 0x24, 0xc7, - 0x55, 0x27, 0x3c, 0x55, 0x59, 0x8f, 0xee, 0xe8, 0xc7, 0xa4, 0x52, 0xa3, 0x51, 0x3b, 0x24, 0x8d, - 0xe5, 0xd6, 0xd3, 0x92, 0xdc, 0x23, 0x8d, 0x6c, 0x6c, 0xbd, 0x55, 0x5d, 0x95, 0xdd, 0x5d, 0x9a, - 0xee, 0xaa, 0x26, 0x2b, 0x7b, 0x86, 0x31, 0x1f, 0x5f, 0x6f, 0x76, 0x55, 0x74, 0x77, 0x6a, 0xaa, - 0x2b, 0x8b, 0xac, 0xec, 0x9e, 0x19, 0xef, 0x61, 0xc1, 0x8b, 0xe5, 0x07, 0x1c, 0x63, 0x16, 0x0c, - 0xb6, 0xb0, 0x65, 0xf9, 0x81, 0x6c, 0x8c, 0x6d, 0x8c, 0x1f, 0xb2, 0x11, 0x2b, 0xcc, 0x1a, 0x30, - 0x18, 0x1f, 0xb0, 0x8c, 0xbd, 0xc6, 0x86, 0xb5, 0x79, 0xc8, 0x2c, 0x6b, 0x76, 0xf1, 0x6a, 0xcd, - 0x61, 0x61, 0x59, 0xc3, 0xb2, 0x27, 0x1e, 0xf9, 0x88, 0xea, 0xca, 0xac, 0x8c, 0xea, 0xca, 0x6a, - 0x79, 0xf9, 0xab, 0x2a, 0x23, 0x33, 0x6e, 0xdc, 0xb8, 0xbf, 0x1b, 0xaf, 0x1b, 0x37, 0x6e, 0x80, - 0x99, 0xf6, 0xc6, 0xc9, 0xb6, 0x6d, 0x39, 0x56, 0xe7, 0x64, 0xdd, 0xda, 0xd9, 0x31, 0x5a, 0x8d, - 0xce, 0x1c, 0x79, 0x56, 0xf2, 0x46, 0xeb, 0x92, 0x73, 0xa9, 0x8d, 0xe0, 0xf5, 0xed, 0xf3, 0x5b, - 0x27, 0x9b, 0xe6, 0xc6, 0xc9, 0xf6, 0xc6, 0xc9, 0x1d, 0xab, 0x81, 0x9a, 0x6e, 0x06, 0xf2, 0xc0, - 0x3e, 0x87, 0x37, 0x87, 0x7d, 0xd5, 0xb4, 0xea, 0x46, 0xb3, 0xe3, 0x58, 0x36, 0x62, 0x5f, 0x1e, - 0xf7, 0x8b, 0x44, 0x7b, 0xa8, 0xe5, 0xb8, 0x14, 0xae, 0xde, 0xb2, 0xac, 0xad, 0x26, 0xa2, 0xef, - 0x36, 0x76, 0x37, 0x4f, 0x76, 0x1c, 0x7b, 0xb7, 0xee, 0xb0, 0xb7, 0xd7, 0x76, 0xbf, 0x6d, 0xa0, - 0x4e, 0xdd, 0x36, 0xdb, 0x8e, 0x65, 0xd3, 0x2f, 0x66, 0xff, 0xe6, 0x99, 0x2c, 0x90, 0xb4, 0x76, - 0x1d, 0x7e, 0x7e, 0x0c, 0x48, 0x85, 0x76, 0x1b, 0x7e, 0x3b, 0x0d, 0xc0, 0x22, 0x72, 0xce, 0x20, - 0xbb, 0x63, 0x5a, 0x2d, 0x38, 0x0e, 0xf2, 0x1a, 0xfa, 0xc1, 0x5d, 0xd4, 0x71, 0xe0, 0x57, 0xd2, - 0x60, 0x4c, 0x43, 0x9d, 0xb6, 0xd5, 0xea, 0x20, 0xe5, 0x41, 0x90, 0x45, 0xb6, 0x6d, 0xd9, 0x33, - 0xa9, 0x6b, 0x53, 0x37, 0x4f, 0x9c, 0xba, 0x65, 0x8e, 0x55, 0x7c, 0x4e, 0x6b, 0xd7, 0xe7, 0x0a, - 0xed, 0xf6, 0x9c, 0x4f, 0x63, 0xce, 0xcd, 0x34, 0xa7, 0xe2, 0x1c, 0x1a, 0xcd, 0xa8, 0xcc, 0x80, - 0xfc, 0x1e, 0xfd, 0x60, 0x26, 0x7d, 0x6d, 0xea, 0xe6, 0x71, 0xcd, 0x7d, 0xc4, 0x6f, 0x1a, 0xc8, - 0x31, 0xcc, 0x66, 0x67, 0x46, 0xa2, 0x6f, 0xd8, 0x23, 0xfc, 0x8f, 0x29, 0x90, 0x25, 0x44, 0x94, - 0x22, 0xc8, 0xd4, 0xad, 0x06, 0x22, 0xc5, 0x4f, 0x9f, 0x3a, 0x19, 0xbf, 0xf8, 0xb9, 0xa2, 0xd5, - 0x40, 0x1a, 0xc9, 0xac, 0x5c, 0x0b, 0x26, 0x5c, 0x81, 0xf8, 0x6c, 0x04, 0x93, 0x66, 0x1b, 0x20, - 0x83, 0xbf, 0x57, 0xc6, 0x40, 0xa6, 0xb2, 0xb6, 0xbc, 0x2c, 0x1f, 0x51, 0x2e, 0x03, 0x53, 0x6b, - 0x95, 0xd3, 0x95, 0xea, 0xd9, 0xca, 0xba, 0xaa, 0x69, 0x55, 0x4d, 0x4e, 0x29, 0x53, 0x60, 0x7c, - 0xbe, 0x50, 0x5a, 0x2f, 0x57, 0x56, 0xd7, 0x74, 0x39, 0xad, 0x1c, 0x03, 0xf2, 0x19, 0x55, 0xab, - 0x95, 0xab, 0x95, 0xf5, 0x72, 0x6d, 0x5d, 0x5d, 0x59, 0xd5, 0xcf, 0xc9, 0x12, 0xfe, 0xa8, 0x52, - 0xd5, 0xd7, 0x17, 0xaa, 0x6b, 0x95, 0x92, 0x8c, 0x94, 0x09, 0x90, 0xd7, 0xcb, 0x2b, 0x6a, 0x75, - 0x4d, 0x97, 0x37, 0xe1, 0xc7, 0x25, 0x30, 0x5d, 0x43, 0x4e, 0x09, 0xed, 0x99, 0x75, 0x54, 0x73, - 0x0c, 0x07, 0xc1, 0x37, 0xa5, 0x3c, 0xc1, 0x2b, 0x6b, 0x98, 0x4d, 0xef, 0x15, 0xab, 0xf2, 0x9d, - 0xfb, 0xaa, 0xcc, 0x53, 0x98, 0x63, 0xb9, 0xe7, 0x02, 0x69, 0x5a, 0x90, 0xce, 0xec, 0x4b, 0xc0, - 0x44, 0xe0, 0x9d, 0x32, 0x0d, 0xc0, 0x7c, 0xa1, 0x78, 0x7a, 0x51, 0x23, 0x1c, 0x1e, 0xc1, 0xcf, - 0x0b, 0x55, 0x4d, 0x65, 0xcf, 0x29, 0xf8, 0xa6, 0x20, 0xfc, 0x25, 0x1e, 0xfe, 0xb9, 0xfe, 0xcc, - 0xf4, 0x50, 0x01, 0xf8, 0xb4, 0x07, 0xe7, 0x22, 0x07, 0xe7, 0x9d, 0x62, 0xe4, 0xc4, 0x20, 0x5d, - 0x1a, 0x0c, 0xd2, 0x4a, 0xb5, 0xa4, 0xae, 0x63, 0x04, 0x6b, 0x7a, 0x41, 0xd3, 0xd5, 0x92, 0x8c, - 0xe0, 0xdb, 0xd2, 0x60, 0xac, 0xb6, 0xbd, 0xeb, 0x34, 0xac, 0x0b, 0x5c, 0x43, 0xf9, 0xd1, 0xa0, - 0xa4, 0xee, 0xe7, 0x25, 0x75, 0xf3, 0xfe, 0xaa, 0x31, 0x0a, 0x21, 0x32, 0xfa, 0x84, 0x27, 0xa3, - 0x02, 0x27, 0xa3, 0x97, 0xc4, 0x25, 0x74, 0x58, 0xd2, 0xf9, 0xf2, 0x14, 0xc8, 0x9d, 0x35, 0x9a, - 0x4d, 0xe4, 0xc0, 0xbf, 0x48, 0x83, 0x5c, 0xd1, 0x46, 0x58, 0xaf, 0x6f, 0xf5, 0xd5, 0x1a, 0x82, - 0x31, 0xdb, 0xb2, 0x9c, 0x55, 0xc3, 0xd9, 0x26, 0x75, 0x1a, 0xd7, 0xbc, 0xe7, 0xbb, 0x33, 0xaf, - 0xff, 0x4b, 0x29, 0x05, 0x3f, 0x18, 0x14, 0xe4, 0x03, 0xbc, 0x20, 0x5f, 0xcc, 0xd5, 0x9f, 0x16, - 0x34, 0x47, 0x0b, 0x09, 0xe9, 0x70, 0x20, 0x18, 0xdb, 0x69, 0xa1, 0x1d, 0xab, 0x65, 0xd6, 0x59, - 0xcd, 0xbd, 0x67, 0xf8, 0x1b, 0x9e, 0x94, 0xe7, 0x39, 0x29, 0xcf, 0xc5, 0x2e, 0x45, 0x4c, 0xcc, - 0xb5, 0x01, 0xc4, 0xfc, 0x42, 0x70, 0xd5, 0x42, 0xa1, 0xbc, 0xac, 0x96, 0xd6, 0xf5, 0xea, 0x7a, - 0x51, 0x53, 0x0b, 0xba, 0xba, 0xbe, 0x5c, 0x2d, 0x16, 0x96, 0xd7, 0x35, 0x75, 0xb5, 0x2a, 0x23, - 0xf8, 0x5f, 0xd2, 0x58, 0xb8, 0x75, 0x6b, 0x0f, 0xd9, 0x70, 0x31, 0x96, 0x9c, 0xa3, 0x64, 0xc2, - 0x30, 0xf8, 0xa9, 0xd8, 0xbd, 0x3e, 0x93, 0x0e, 0xe3, 0x20, 0x44, 0x9d, 0x7f, 0x33, 0x56, 0x0f, - 0x1e, 0x49, 0xea, 0x79, 0x20, 0xe9, 0xbf, 0x4d, 0x83, 0x7c, 0xd1, 0x6a, 0xed, 0x21, 0xdb, 0x81, - 0x0f, 0x70, 0x92, 0xf6, 0xa4, 0x99, 0xe2, 0xa5, 0x89, 0x07, 0x35, 0xd4, 0x72, 0x6c, 0xab, 0x7d, - 0xc9, 0x1d, 0xee, 0xd8, 0x23, 0x7c, 0x9f, 0xa8, 0x84, 0x59, 0xc9, 0xe1, 0xe3, 0x6a, 0xef, 0x82, - 0x38, 0xf6, 0xa4, 0xae, 0x06, 0xf0, 0x6e, 0x11, 0x5c, 0x7a, 0x33, 0x20, 0x86, 0xcb, 0x29, 0x71, - 0x5c, 0xe0, 0x17, 0xd3, 0x60, 0x8a, 0x36, 0xbe, 0x1a, 0xea, 0x90, 0xe9, 0xc9, 0xad, 0xb1, 0x84, - 0xcf, 0x54, 0xf9, 0xa7, 0x83, 0x82, 0x5e, 0xe0, 0x05, 0x7d, 0x7b, 0x78, 0x43, 0x67, 0x65, 0x85, - 0x88, 0xfb, 0x18, 0xc8, 0x3a, 0xd6, 0x79, 0xe4, 0xd6, 0x91, 0x3e, 0xc0, 0x5f, 0xf0, 0xc4, 0x59, - 0xe6, 0xc4, 0xf9, 0x32, 0xd1, 0x62, 0x92, 0x17, 0xea, 0x87, 0xd2, 0x60, 0xb2, 0xd8, 0xb4, 0x3a, - 0x9e, 0x4c, 0x5f, 0xe8, 0xcb, 0xd4, 0xab, 0x5c, 0x2a, 0x58, 0xb9, 0xef, 0xa4, 0x02, 0x72, 0x54, - 0x79, 0x39, 0xf6, 0xd6, 0x97, 0x00, 0xf9, 0x90, 0x7e, 0xe1, 0x7d, 0x9e, 0xc0, 0x96, 0x38, 0x81, - 0xbd, 0x54, 0x90, 0x5e, 0xf2, 0xf2, 0xfa, 0x1f, 0x37, 0x80, 0x7c, 0xa1, 0x5e, 0xb7, 0x76, 0x5b, - 0x0e, 0xfc, 0xd3, 0x14, 0xc8, 0x15, 0xad, 0xd6, 0xa6, 0xb9, 0xa5, 0xdc, 0x08, 0xa6, 0x51, 0xcb, - 0xd8, 0x68, 0xa2, 0x92, 0xe1, 0x18, 0x7b, 0x26, 0xba, 0x40, 0x2a, 0x30, 0xa6, 0x75, 0xa5, 0x62, - 0xa6, 0x58, 0x0a, 0xda, 0xd8, 0xdd, 0x22, 0x4c, 0x8d, 0x69, 0xc1, 0x24, 0xe5, 0x15, 0xe0, 0x4a, - 0xfa, 0xb8, 0x6a, 0x23, 0x1b, 0x35, 0x91, 0xd1, 0x41, 0xc5, 0x6d, 0xa3, 0xd5, 0x42, 0x4d, 0xd2, - 0x6a, 0xc7, 0xb4, 0xb0, 0xd7, 0xca, 0x2c, 0x98, 0xa4, 0xaf, 0x6a, 0x6d, 0xa3, 0x8e, 0x3a, 0x33, - 0x19, 0xf2, 0x39, 0x97, 0xa6, 0xbc, 0x04, 0x64, 0xd1, 0x45, 0xc7, 0x36, 0x66, 0x1a, 0x04, 0xaf, - 0x2b, 0xe7, 0xe8, 0x12, 0x61, 0xce, 0x5d, 0x22, 0xcc, 0xd5, 0xc8, 0x02, 0x42, 0xa3, 0x5f, 0xc1, - 0xaf, 0xe4, 0xbc, 0xa1, 0xfb, 0xc9, 0xc0, 0x94, 0x54, 0x01, 0x99, 0x96, 0xb1, 0x83, 0x98, 0x5e, - 0x90, 0xff, 0xca, 0x2d, 0xe0, 0xa8, 0xb1, 0x67, 0x38, 0x86, 0xbd, 0x8c, 0x17, 0x2f, 0x64, 0xb8, - 0x21, 0x22, 0x5f, 0x3a, 0xa2, 0x75, 0xbf, 0x50, 0xae, 0x06, 0xe3, 0x64, 0x75, 0x43, 0xbe, 0xa2, - 0x7d, 0x91, 0x9f, 0x80, 0xa9, 0x9b, 0x75, 0xab, 0x45, 0xf8, 0x97, 0x34, 0xf2, 0x5f, 0xb9, 0x19, - 0x1c, 0x35, 0x9a, 0xed, 0x6d, 0xa3, 0xdc, 0xda, 0x33, 0x1d, 0x84, 0x51, 0x9b, 0x39, 0x46, 0xf2, - 0x75, 0x27, 0xd3, 0xc6, 0x3e, 0x3f, 0x06, 0x72, 0xb4, 0x50, 0xf8, 0xe6, 0x6c, 0xec, 0x75, 0x0b, - 0x85, 0x35, 0x7a, 0x1a, 0x71, 0x3b, 0xc8, 0x1b, 0xf4, 0x3b, 0x52, 0xbd, 0x89, 0x53, 0xc7, 0x3d, - 0x1a, 0x64, 0x09, 0xe7, 0x52, 0xd1, 0xdc, 0xcf, 0x94, 0x3b, 0x41, 0xae, 0x4e, 0x94, 0x84, 0xd4, - 0x74, 0xe2, 0xd4, 0x55, 0xbd, 0x0b, 0x25, 0x9f, 0x68, 0xec, 0x53, 0xf8, 0x27, 0x52, 0xac, 0xa5, - 0x4e, 0x14, 0xc7, 0x62, 0x6d, 0xe1, 0x5b, 0xe9, 0x01, 0x46, 0xca, 0xdb, 0xc0, 0xcd, 0x85, 0x62, - 0xb1, 0xba, 0x56, 0xd1, 0xd9, 0x38, 0x59, 0x5a, 0x9f, 0x5f, 0xd3, 0xd7, 0xfd, 0xd1, 0x93, 0xcc, - 0x07, 0xd7, 0xf1, 0xf4, 0x50, 0xc6, 0x1a, 0x72, 0x63, 0x9f, 0xaf, 0x55, 0x7d, 0xbd, 0x52, 0x58, - 0x51, 0xe5, 0xcd, 0x18, 0x94, 0x55, 0x7d, 0xbd, 0x70, 0xa6, 0xa0, 0x17, 0x34, 0x79, 0x8b, 0x1f, - 0xb1, 0x6b, 0x7a, 0x75, 0x75, 0x5d, 0x5b, 0xab, 0x54, 0xca, 0x95, 0x45, 0x5a, 0x34, 0x9e, 0xe8, - 0x1c, 0xf7, 0x3f, 0x38, 0xab, 0x95, 0x75, 0x75, 0xbd, 0x58, 0xad, 0x2c, 0x94, 0x17, 0x65, 0xb3, - 0xdf, 0x70, 0xff, 0xb0, 0x72, 0x0c, 0x1c, 0xa5, 0x95, 0x3e, 0x43, 0xf3, 0x95, 0x54, 0xf9, 0x35, - 0x79, 0x65, 0x1a, 0x8c, 0x57, 0x54, 0x9d, 0x49, 0xe6, 0x91, 0xbc, 0x72, 0x15, 0x38, 0x8e, 0x9f, - 0x8b, 0xd5, 0x4a, 0x45, 0x2d, 0xea, 0x78, 0xf9, 0xa7, 0xa9, 0x0b, 0x6b, 0x35, 0xb5, 0x24, 0xbf, - 0x36, 0xaf, 0xc8, 0x60, 0x02, 0xbf, 0xac, 0x2e, 0x2c, 0x2c, 0x97, 0x2b, 0xaa, 0xfc, 0xba, 0x3c, - 0x7c, 0x63, 0xc6, 0x9f, 0xad, 0x05, 0x16, 0x0f, 0x7f, 0x27, 0x05, 0xb4, 0xb5, 0xc0, 0x6b, 0xeb, - 0xad, 0x3d, 0xb1, 0x8f, 0x9e, 0x70, 0xbd, 0xd7, 0xd3, 0xa3, 0x12, 0xa7, 0x47, 0xb7, 0x0b, 0xd0, - 0x12, 0x53, 0xa4, 0x8f, 0x0f, 0xa2, 0x48, 0x57, 0x80, 0xcb, 0x2a, 0xd5, 0x75, 0x86, 0x78, 0xcd, - 0x5b, 0x26, 0x5f, 0x0b, 0xae, 0xae, 0xa8, 0x14, 0x18, 0x4d, 0x2d, 0x56, 0xcf, 0xa8, 0xda, 0xfa, - 0xd9, 0xc2, 0xf2, 0xb2, 0xaa, 0xaf, 0x2f, 0x94, 0xb5, 0x9a, 0x2e, 0x6f, 0xf6, 0x03, 0x6f, 0x4b, - 0xb9, 0x0e, 0xbc, 0xd0, 0x7f, 0x5e, 0x57, 0xbf, 0xaf, 0x5c, 0xd3, 0x6b, 0x44, 0x95, 0x8a, 0x55, - 0x4d, 0x5b, 0x5b, 0xc5, 0x8b, 0x95, 0x6d, 0xe5, 0x38, 0x50, 0x7c, 0x2a, 0xda, 0x5a, 0x85, 0xaa, - 0x8d, 0x89, 0xcb, 0x67, 0xe5, 0xb9, 0xc5, 0xe3, 0x45, 0xce, 0xaa, 0xaa, 0x2d, 0x54, 0xb5, 0x15, - 0xb5, 0x24, 0x3f, 0xdc, 0x4f, 0xf3, 0xce, 0x2b, 0x37, 0x82, 0xd9, 0x42, 0xa5, 0xaa, 0x2f, 0xa9, - 0xda, 0x7a, 0xa1, 0x72, 0x4e, 0x3f, 0xb7, 0xaa, 0xae, 0xaf, 0x6a, 0xd5, 0xa2, 0x5a, 0xab, 0xad, - 0x97, 0x6b, 0xee, 0xc7, 0x72, 0x13, 0xbe, 0x51, 0x02, 0xb9, 0x12, 0x6a, 0x22, 0x07, 0xc1, 0x17, - 0xf9, 0x1d, 0xed, 0x71, 0x90, 0xb3, 0x11, 0x9e, 0x6c, 0xb1, 0xe1, 0x84, 0x3d, 0xc1, 0x3f, 0x4d, - 0x8b, 0x76, 0x6a, 0x94, 0x76, 0x48, 0xa7, 0xf6, 0x32, 0x90, 0xeb, 0x38, 0x86, 0xb3, 0xdb, 0x61, - 0x7d, 0xda, 0x35, 0xbd, 0xfb, 0xb4, 0xb9, 0x1a, 0xf9, 0x48, 0x63, 0x1f, 0xc3, 0x3f, 0x4a, 0x89, - 0x74, 0x52, 0x3d, 0x39, 0x10, 0xd3, 0x2d, 0x73, 0x00, 0xd5, 0x3a, 0x01, 0xa0, 0xdb, 0x93, 0x94, - 0x6b, 0xeb, 0x85, 0x65, 0x4d, 0x2d, 0x94, 0xce, 0xad, 0x97, 0xd4, 0x65, 0x95, 0x2c, 0x54, 0xb1, - 0xea, 0x05, 0xdf, 0x17, 0xf5, 0xf2, 0x19, 0x55, 0xde, 0x84, 0x6f, 0xcb, 0x81, 0x5c, 0x0d, 0x35, - 0x51, 0xdd, 0x81, 0xf7, 0xf8, 0x78, 0x4c, 0x83, 0xb4, 0xd9, 0x60, 0xc3, 0x5e, 0xda, 0x6c, 0x70, - 0x8b, 0xab, 0x74, 0xcf, 0x45, 0xec, 0x97, 0x84, 0x87, 0x1f, 0x5a, 0xea, 0xe1, 0x0e, 0x3f, 0x8f, - 0x65, 0x44, 0x90, 0xed, 0xc9, 0xb1, 0x18, 0xb2, 0x1f, 0x94, 0x12, 0x58, 0xa8, 0xc5, 0x69, 0xfc, - 0x9b, 0x21, 0x8d, 0xbf, 0x6b, 0x50, 0x59, 0x28, 0x57, 0x4a, 0xeb, 0x9e, 0x9e, 0x54, 0x16, 0xaa, - 0xf2, 0xb6, 0x32, 0x07, 0x6e, 0x09, 0x50, 0xc7, 0x3d, 0x03, 0x2b, 0xa1, 0x50, 0x29, 0xad, 0xaf, - 0x54, 0xd4, 0x95, 0x6a, 0xa5, 0x5c, 0xa4, 0x66, 0x11, 0x55, 0xa7, 0xbd, 0x49, 0x57, 0x5f, 0x51, - 0x53, 0x0b, 0x5a, 0x71, 0x89, 0x74, 0x2b, 0x25, 0x55, 0x7e, 0x58, 0xb9, 0x09, 0x5c, 0x17, 0x60, - 0x85, 0x75, 0x39, 0xab, 0x9a, 0x5a, 0x52, 0x17, 0xca, 0x15, 0x3c, 0x04, 0x2e, 0x57, 0x8b, 0xa7, - 0x6b, 0xf1, 0x7b, 0x15, 0x5c, 0xb7, 0x80, 0x72, 0xbb, 0x4a, 0xbf, 0xa3, 0xdc, 0x0f, 0xee, 0x0e, - 0xd4, 0x4d, 0xd5, 0x8b, 0x4b, 0xeb, 0x9a, 0xba, 0x52, 0xd5, 0x55, 0xc2, 0xc9, 0xfa, 0x52, 0xa1, - 0xb6, 0x5e, 0xae, 0x14, 0xab, 0x2b, 0xab, 0x05, 0xbd, 0x3c, 0xbf, 0x4c, 0x88, 0xeb, 0xd5, 0x75, - 0x66, 0xd7, 0x94, 0x5b, 0xf0, 0x7f, 0xa7, 0x41, 0xa6, 0xe6, 0x58, 0x6d, 0xf8, 0x62, 0xbf, 0x6d, - 0x9c, 0x00, 0xc0, 0x46, 0x3b, 0xd6, 0x1e, 0x99, 0xec, 0xb2, 0xfe, 0x2a, 0x90, 0x02, 0x7f, 0x3b, - 0xbe, 0x5d, 0xcc, 0xeb, 0x6e, 0xac, 0x76, 0xc8, 0xb8, 0xf6, 0x0f, 0xf1, 0xec, 0x62, 0xe1, 0x84, - 0xc4, 0xd4, 0xf3, 0xc7, 0x52, 0x03, 0xa8, 0x27, 0x04, 0xc7, 0x03, 0xc2, 0xc7, 0x7a, 0xe0, 0x02, - 0x83, 0x94, 0x2b, 0xc1, 0xe5, 0x5d, 0xba, 0x40, 0x54, 0x60, 0x53, 0x79, 0x11, 0xb8, 0x26, 0xa8, - 0x02, 0x2b, 0xd5, 0x33, 0xaa, 0xa7, 0x77, 0xa5, 0x82, 0x5e, 0x90, 0xb7, 0xe0, 0x97, 0x24, 0x90, - 0x59, 0xb1, 0xf6, 0x10, 0xbc, 0xce, 0x17, 0xfe, 0x0c, 0xc8, 0xb7, 0xd0, 0x85, 0x80, 0x91, 0xc7, - 0x7d, 0x84, 0x4f, 0x48, 0xa2, 0x62, 0xc7, 0xb4, 0x43, 0xc4, 0xfe, 0xd5, 0xb4, 0x88, 0xd8, 0x7b, - 0x10, 0x12, 0x13, 0xfb, 0x5f, 0x0d, 0x22, 0xf6, 0x10, 0xd1, 0x22, 0x65, 0x16, 0x9c, 0xf0, 0x5f, - 0x94, 0x4b, 0x6a, 0x45, 0x2f, 0x2f, 0x9c, 0xf3, 0x85, 0x5b, 0xd6, 0x62, 0x89, 0xbf, 0x5f, 0xaf, - 0x13, 0x3d, 0xd9, 0x9c, 0x01, 0xc7, 0xfc, 0x77, 0x8b, 0x74, 0xbe, 0x88, 0xdf, 0x3c, 0x0c, 0x9f, - 0xce, 0x82, 0x49, 0xda, 0x0b, 0xaf, 0xb5, 0x1b, 0x78, 0xc1, 0x55, 0xe5, 0x8c, 0x1b, 0x8e, 0xb9, - 0x83, 0x5e, 0x69, 0xb5, 0xdc, 0x35, 0x97, 0xf7, 0x8c, 0x57, 0x46, 0xe5, 0xd5, 0x85, 0x5a, 0xcd, - 0xb1, 0x6c, 0x63, 0x0b, 0x15, 0x1a, 0x0d, 0x9b, 0x49, 0xb2, 0x3b, 0x19, 0x7e, 0x21, 0xb6, 0x01, - 0x84, 0x1f, 0x15, 0x28, 0x3f, 0x21, 0x1a, 0xf1, 0x9d, 0x58, 0xa6, 0x8e, 0x18, 0x04, 0xc5, 0x34, - 0xe3, 0x35, 0xc3, 0x6e, 0x90, 0xe1, 0xa0, 0x6d, 0x86, 0x82, 0xb6, 0x35, 0xfb, 0xba, 0x34, 0x18, - 0xd7, 0xcd, 0x1d, 0xf4, 0x2a, 0xab, 0x85, 0x3a, 0x4a, 0x1e, 0x48, 0x8b, 0x2b, 0xba, 0x7c, 0x04, - 0xff, 0x51, 0x8b, 0xba, 0x9c, 0x22, 0x7f, 0x54, 0x5c, 0x34, 0xfe, 0x53, 0xd0, 0x65, 0x09, 0xff, - 0x59, 0x51, 0x75, 0x39, 0x83, 0xff, 0x54, 0x54, 0x5d, 0xce, 0xe2, 0x3f, 0xab, 0xcb, 0xba, 0x9c, - 0xc3, 0x7f, 0xca, 0x35, 0x5d, 0xce, 0xe3, 0x3f, 0xf3, 0x35, 0x5d, 0x1e, 0xc3, 0x7f, 0xce, 0xd4, - 0x74, 0x79, 0x1c, 0xff, 0x29, 0xea, 0xba, 0x0c, 0xf0, 0x9f, 0x87, 0x6a, 0xba, 0x3c, 0x81, 0xff, - 0x14, 0x8a, 0xba, 0x3c, 0x49, 0xfe, 0xa8, 0xba, 0x3c, 0x85, 0xff, 0xd4, 0x6a, 0xba, 0x3c, 0x4d, - 0x28, 0xd7, 0x74, 0xf9, 0x28, 0x29, 0xab, 0xac, 0xcb, 0x32, 0xfe, 0xb3, 0x54, 0xd3, 0xe5, 0xcb, - 0xc8, 0xc7, 0x35, 0x5d, 0x56, 0x48, 0xa1, 0x35, 0x5d, 0xbe, 0x9c, 0x7c, 0x53, 0xd3, 0xe5, 0x63, - 0xa4, 0x88, 0x9a, 0x2e, 0x5f, 0x41, 0xd8, 0x50, 0x75, 0xf9, 0x38, 0xf9, 0x46, 0xd3, 0xe5, 0x2b, - 0xc9, 0xab, 0x8a, 0x2e, 0xcf, 0x10, 0xc6, 0x54, 0x5d, 0x7e, 0x01, 0xf9, 0xa3, 0xe9, 0x32, 0x24, - 0xaf, 0x0a, 0xba, 0x7c, 0x15, 0xbc, 0x06, 0x8c, 0x2f, 0x22, 0x87, 0xe2, 0x0b, 0x65, 0x20, 0x2d, - 0x22, 0x27, 0xb8, 0xae, 0x79, 0x4a, 0x02, 0x57, 0xb2, 0xd5, 0xc5, 0x82, 0x6d, 0xed, 0x2c, 0xa3, - 0x2d, 0xa3, 0x7e, 0x49, 0xbd, 0xd8, 0xb6, 0x6c, 0x07, 0xd6, 0x38, 0xc3, 0x42, 0xdb, 0xef, 0xc3, - 0xc8, 0xff, 0xa8, 0x39, 0x96, 0x67, 0x2a, 0x90, 0x7c, 0x53, 0x01, 0x9b, 0x77, 0x7d, 0x36, 0xa8, - 0xec, 0x57, 0x83, 0x71, 0x36, 0x1d, 0x2a, 0xbb, 0xb3, 0x37, 0x3f, 0x41, 0xf9, 0x5e, 0xb7, 0x29, - 0xd0, 0x19, 0xd5, 0x3d, 0x51, 0x4b, 0xa3, 0x6e, 0xe6, 0x43, 0x5a, 0xc5, 0xe7, 0xbc, 0x56, 0xa1, - 0x73, 0xad, 0xe2, 0xc1, 0x03, 0xd0, 0x16, 0x6b, 0x20, 0xe5, 0xc1, 0x56, 0x61, 0xa5, 0xf2, 0xc2, - 0x82, 0xaa, 0xa9, 0x15, 0xdd, 0xed, 0xf5, 0x64, 0x09, 0x3e, 0x36, 0x03, 0xc6, 0xcf, 0x5a, 0xf6, - 0xf9, 0x4e, 0xdb, 0xa8, 0x23, 0xf8, 0x14, 0xdd, 0x21, 0x2e, 0xee, 0xda, 0x36, 0x6a, 0x71, 0x18, - 0x3f, 0x1e, 0xdf, 0xc0, 0xea, 0x52, 0x9b, 0xf3, 0x29, 0x85, 0x4c, 0x78, 0xaf, 0x05, 0x13, 0x17, - 0xdc, 0xaf, 0xcb, 0x0d, 0xb7, 0xa6, 0x81, 0xa4, 0xb8, 0xc6, 0xd6, 0xfe, 0x45, 0x26, 0x6f, 0x3c, - 0xfc, 0x70, 0x1a, 0xe4, 0x16, 0x91, 0x53, 0x68, 0x36, 0x83, 0x72, 0x7b, 0x34, 0x28, 0xb7, 0x79, - 0x5e, 0x6e, 0xb7, 0x85, 0x57, 0xa2, 0xd0, 0x6c, 0x86, 0xc8, 0x6c, 0x16, 0x4c, 0x06, 0x04, 0x84, - 0x17, 0x75, 0xd2, 0xcd, 0xe3, 0x1a, 0x97, 0x06, 0x7f, 0xde, 0x93, 0x9a, 0xca, 0x49, 0xed, 0x0e, - 0x91, 0x02, 0x93, 0x97, 0xd8, 0xa7, 0xfd, 0xbd, 0xc3, 0x6b, 0x22, 0xed, 0x8f, 0xf0, 0x2d, 0x03, - 0x48, 0x31, 0xd2, 0xd2, 0xd7, 0x5f, 0xf3, 0x44, 0x65, 0x38, 0x04, 0x33, 0xdd, 0x20, 0x32, 0x7c, - 0x6a, 0x0c, 0xe4, 0xaa, 0x1b, 0x0f, 0xe3, 0xa5, 0xec, 0x77, 0xd2, 0x40, 0x2a, 0x34, 0x1a, 0xf0, - 0x06, 0x6e, 0x6e, 0x61, 0x91, 0x97, 0x5e, 0xd7, 0xe8, 0x3d, 0xc3, 0xdf, 0x1b, 0xa0, 0x45, 0xd3, - 0x92, 0xe6, 0x0a, 0x8d, 0x46, 0xf8, 0x46, 0xac, 0x57, 0x60, 0x9a, 0x2f, 0x50, 0xb9, 0x83, 0xf7, - 0xfd, 0x88, 0x30, 0x50, 0x7b, 0x4e, 0x21, 0xa2, 0xcd, 0x3f, 0x94, 0xbf, 0xe4, 0x81, 0xf8, 0x6a, - 0x1a, 0xe4, 0x97, 0xcd, 0x8e, 0x83, 0x11, 0xb8, 0xc9, 0x47, 0xe0, 0x6a, 0x30, 0xee, 0x0a, 0xa0, - 0x33, 0x93, 0x22, 0x6d, 0xd5, 0x4f, 0x80, 0xef, 0x09, 0x62, 0xf0, 0x10, 0x8f, 0xc1, 0x4b, 0xa3, - 0xeb, 0xc8, 0xca, 0x0a, 0xc1, 0x81, 0x2b, 0x36, 0xdd, 0x5d, 0xec, 0x07, 0x3d, 0xb1, 0xae, 0x70, - 0x62, 0xbd, 0x6b, 0x90, 0x22, 0x93, 0x17, 0xed, 0x97, 0xd3, 0x00, 0xe0, 0xb2, 0x35, 0xb2, 0xde, - 0x8c, 0x2f, 0xdd, 0xc7, 0x82, 0xd2, 0x5d, 0xe1, 0xa5, 0xfb, 0xf2, 0xfe, 0x55, 0xa5, 0xc5, 0x85, - 0x08, 0x58, 0x06, 0x92, 0xe9, 0x89, 0x16, 0xff, 0x85, 0x1f, 0xf6, 0x84, 0xba, 0xca, 0x09, 0xf5, - 0xde, 0x01, 0x4b, 0x4a, 0x5e, 0xae, 0xff, 0x2d, 0x0d, 0xe4, 0x1a, 0x72, 0xca, 0x9d, 0x25, 0x73, - 0x6b, 0xbb, 0x69, 0x6e, 0x6d, 0x3b, 0xa8, 0x01, 0x4f, 0xc7, 0xea, 0x3d, 0x94, 0xeb, 0xc1, 0x94, - 0x19, 0xcc, 0xc7, 0x76, 0xbb, 0xf8, 0x44, 0xf8, 0x86, 0x20, 0x02, 0xcb, 0x3c, 0x02, 0xdf, 0x13, - 0x22, 0x97, 0x6e, 0x8e, 0x42, 0x66, 0x61, 0xbf, 0xe4, 0x89, 0xbb, 0xca, 0x89, 0xfb, 0x9e, 0xc1, - 0xc8, 0x8e, 0x64, 0x33, 0xd6, 0x35, 0x3a, 0x06, 0xb6, 0xb6, 0xbb, 0x06, 0xa2, 0xd4, 0xfe, 0x81, - 0xe8, 0x7f, 0xa6, 0xc4, 0xc7, 0xbe, 0x28, 0x33, 0xa3, 0xf0, 0xc8, 0x36, 0x04, 0x0b, 0xe0, 0x20, - 0xf2, 0xfa, 0x51, 0x09, 0xe4, 0xd8, 0x22, 0xe2, 0x81, 0xe8, 0x45, 0x44, 0xff, 0xc1, 0xfc, 0x93, - 0x03, 0xcc, 0x1f, 0xa2, 0xd6, 0x00, 0x1e, 0x1b, 0xe9, 0x00, 0x1b, 0xb7, 0x81, 0x2c, 0xf1, 0xdf, - 0x64, 0xa3, 0x9b, 0x6f, 0xbc, 0x75, 0x49, 0xa8, 0xf8, 0xad, 0x46, 0x3f, 0x12, 0x46, 0x61, 0x08, - 0xcb, 0x86, 0x41, 0x50, 0x78, 0xe7, 0x13, 0x29, 0x6f, 0x82, 0xf1, 0x86, 0x0c, 0xc8, 0x54, 0xdb, - 0xa8, 0x05, 0x3f, 0x94, 0xe2, 0xba, 0xe0, 0xba, 0xd5, 0x72, 0xd0, 0xc5, 0xc0, 0xf2, 0xcb, 0x4b, - 0x88, 0x9c, 0x0f, 0xcc, 0x80, 0xbc, 0x63, 0x53, 0xc8, 0x98, 0x2f, 0x28, 0x7b, 0x54, 0x2a, 0x60, - 0xd6, 0x6c, 0xd5, 0x9b, 0xbb, 0x0d, 0xa4, 0xa1, 0xa6, 0x81, 0x79, 0xef, 0x14, 0x3a, 0x25, 0xd4, - 0x46, 0xad, 0x06, 0x6a, 0x39, 0x94, 0x1b, 0x77, 0x0b, 0x3c, 0xc6, 0x97, 0xbc, 0x71, 0xe4, 0x3e, - 0x1e, 0xfe, 0x9b, 0x38, 0x79, 0xb3, 0x4e, 0x19, 0xd7, 0x32, 0x04, 0xf9, 0xbb, 0x00, 0xa0, 0x35, - 0x38, 0x63, 0xa2, 0x0b, 0x6c, 0x55, 0xf9, 0x82, 0x2e, 0x3b, 0x7d, 0xd5, 0xfb, 0x40, 0x0b, 0x7c, - 0x0c, 0x7f, 0xd7, 0x83, 0xfc, 0x41, 0x0e, 0xf2, 0xdb, 0x62, 0xb2, 0x20, 0x86, 0xf6, 0xff, 0x37, - 0xc0, 0x22, 0x91, 0xf3, 0x64, 0x95, 0x94, 0x17, 0x80, 0x2b, 0x5c, 0x0b, 0x74, 0x45, 0x55, 0x4b, - 0xb5, 0xf5, 0xb5, 0xd5, 0x45, 0xad, 0x50, 0x52, 0x65, 0x00, 0x9f, 0x4e, 0x83, 0x2c, 0xf1, 0xd5, - 0x80, 0xc5, 0x21, 0xe8, 0x02, 0xfc, 0x56, 0x2a, 0xae, 0x21, 0x93, 0x89, 0x87, 0x94, 0x1d, 0xd2, - 0xc1, 0xbd, 0x33, 0x96, 0xfd, 0x38, 0x82, 0x50, 0xf2, 0xcd, 0x0a, 0x37, 0xa5, 0xda, 0xb6, 0x75, - 0xe1, 0xff, 0xfd, 0xa6, 0x84, 0x6b, 0x79, 0xc8, 0x4d, 0xa9, 0x07, 0x0b, 0xcf, 0xa7, 0xa6, 0xf4, - 0x68, 0xc6, 0x5b, 0x06, 0x3f, 0x1e, 0xd0, 0x86, 0xc0, 0x72, 0x29, 0x15, 0x6f, 0xb9, 0xa4, 0x14, - 0xc0, 0x94, 0xd9, 0x72, 0x90, 0xdd, 0x32, 0x9a, 0x0b, 0x4d, 0x63, 0x8b, 0x4e, 0x4f, 0x83, 0xbb, - 0x82, 0x54, 0xa6, 0xe5, 0xc0, 0x37, 0x1a, 0x9f, 0x43, 0x39, 0x01, 0x80, 0x83, 0x76, 0xda, 0x4d, - 0xc3, 0xf1, 0x95, 0x29, 0x90, 0x02, 0xff, 0x3a, 0xb6, 0xdf, 0xae, 0xdb, 0xbe, 0xfa, 0xf8, 0xed, - 0x7a, 0x3a, 0x2d, 0x75, 0xe9, 0xb4, 0x37, 0x9c, 0x66, 0x62, 0x0c, 0xa7, 0x41, 0x69, 0x65, 0x63, - 0x2e, 0x2e, 0xdf, 0x15, 0xcb, 0x31, 0x38, 0xaa, 0x1a, 0xc9, 0xf7, 0x13, 0x8f, 0x4b, 0x60, 0x9a, - 0x16, 0x3d, 0x6f, 0x59, 0xe7, 0x77, 0x0c, 0xfb, 0x3c, 0xbc, 0xf7, 0x20, 0x2a, 0x02, 0x3f, 0x1f, - 0xc4, 0x6f, 0x91, 0xc7, 0xef, 0x8e, 0xf0, 0x8a, 0xbb, 0xa5, 0x8f, 0x66, 0xd9, 0xff, 0x7e, 0x0f, - 0x99, 0x87, 0x38, 0x64, 0xbe, 0x47, 0x98, 0xc1, 0xe4, 0x11, 0xfa, 0x88, 0x87, 0x90, 0xdb, 0x6d, - 0x1e, 0x10, 0xa1, 0x3f, 0x1b, 0x0c, 0x21, 0xb7, 0xf4, 0x01, 0x10, 0x92, 0x81, 0x74, 0x1e, 0x5d, - 0x62, 0x0d, 0x10, 0xff, 0x0d, 0xb2, 0x9d, 0x49, 0x0e, 0xb3, 0x10, 0x96, 0x47, 0x82, 0xd9, 0x31, - 0x9e, 0x85, 0x6a, 0x7b, 0x08, 0xc8, 0xfd, 0x71, 0x6c, 0x7b, 0x43, 0x4f, 0x31, 0x50, 0x1e, 0x46, - 0xd3, 0xc2, 0xe2, 0x19, 0x2b, 0xe2, 0xb3, 0x99, 0x3c, 0x66, 0x5f, 0xc9, 0x80, 0x71, 0xd7, 0x9b, - 0xda, 0x81, 0x9f, 0x4c, 0x71, 0x7e, 0x54, 0x1d, 0x6b, 0xd7, 0xae, 0x23, 0x66, 0x01, 0x62, 0x4f, - 0x41, 0xb1, 0xa4, 0x63, 0x0e, 0xa0, 0x7d, 0x46, 0xbf, 0xfd, 0x03, 0x6c, 0x46, 0x74, 0x80, 0x85, - 0x6f, 0x92, 0xe2, 0x2e, 0x45, 0x39, 0xe9, 0xd7, 0x90, 0xf3, 0x7c, 0x1c, 0x43, 0x3f, 0x1d, 0x6b, - 0x15, 0xdb, 0xa7, 0x26, 0x62, 0xca, 0x53, 0x1d, 0x60, 0x32, 0x76, 0x15, 0xb8, 0xd2, 0xfd, 0xa2, - 0x3a, 0xff, 0x90, 0x5a, 0xd4, 0xd7, 0xc9, 0x4c, 0x6c, 0x4d, 0x5b, 0x96, 0x25, 0xf8, 0x48, 0x06, - 0xc8, 0x94, 0x35, 0xca, 0xa7, 0x7e, 0xa9, 0x8d, 0xe0, 0x0f, 0x1f, 0xf2, 0x44, 0x0c, 0x3e, 0x17, - 0xec, 0x4c, 0xca, 0xbc, 0x9e, 0xdc, 0x19, 0x2e, 0x5d, 0xbf, 0x0a, 0x21, 0xea, 0x32, 0x40, 0xab, - 0x88, 0xd0, 0x30, 0xf8, 0x59, 0x4f, 0x01, 0x96, 0x39, 0x05, 0x78, 0xc5, 0x00, 0x2c, 0x1e, 0xb2, - 0x1e, 0x7c, 0x2e, 0x0d, 0xa6, 0xdc, 0x69, 0xc4, 0x02, 0x72, 0xea, 0xdb, 0xf0, 0xae, 0xb8, 0x6b, - 0x33, 0x19, 0x48, 0xbb, 0x76, 0x93, 0x71, 0x89, 0xff, 0xc2, 0x7f, 0x4a, 0xc5, 0xdd, 0x5d, 0x61, - 0xb2, 0xe1, 0x4a, 0x0e, 0x59, 0xd8, 0xc6, 0xdb, 0x0e, 0x89, 0x41, 0x30, 0xf9, 0xee, 0xfa, 0xeb, - 0x69, 0x00, 0x74, 0xcb, 0x9b, 0xb4, 0x1e, 0x40, 0x92, 0xdc, 0xd1, 0x9e, 0x22, 0x2f, 0xc9, 0x9e, - 0x2b, 0x7a, 0xbf, 0x58, 0xf1, 0xb1, 0x14, 0x3e, 0xe1, 0x89, 0x78, 0x81, 0x13, 0xf1, 0x29, 0xa1, - 0x92, 0x92, 0x97, 0xef, 0xd3, 0x69, 0x30, 0x5e, 0xda, 0x6d, 0x37, 0xcd, 0x3a, 0x5e, 0x37, 0xde, - 0x14, 0x53, 0xbc, 0xf0, 0x91, 0xb4, 0xe0, 0xe8, 0xe3, 0x95, 0x11, 0x22, 0x4b, 0xea, 0x34, 0x9b, - 0x76, 0x9d, 0x66, 0x63, 0x9a, 0x35, 0xfb, 0x10, 0x1f, 0x81, 0x7a, 0x4a, 0xe0, 0x68, 0xb5, 0x8d, - 0x5a, 0xf3, 0x36, 0x32, 0x1a, 0x75, 0x7b, 0x77, 0x67, 0xa3, 0x03, 0x0b, 0x71, 0x75, 0x34, 0x60, - 0x6d, 0x49, 0x73, 0xd6, 0x16, 0xf8, 0xda, 0xe0, 0xe0, 0xbe, 0xc4, 0x8b, 0xf7, 0x54, 0x98, 0x95, - 0x2f, 0xc0, 0xc3, 0x00, 0x93, 0x3f, 0x21, 0xab, 0x73, 0x97, 0xc9, 0x25, 0x23, 0x62, 0x72, 0xf9, - 0x45, 0x0f, 0xd9, 0xd3, 0x1c, 0xb2, 0x2f, 0x17, 0xaf, 0xd7, 0x48, 0x36, 0x0f, 0xa6, 0x6b, 0xc8, - 0x09, 0x81, 0xf7, 0x7a, 0x30, 0xb5, 0xe1, 0xbf, 0xf1, 0x20, 0xe6, 0x13, 0x7b, 0x6c, 0xf1, 0x7d, - 0x48, 0x74, 0x69, 0xc6, 0xb3, 0x10, 0x82, 0xae, 0x87, 0x60, 0x3a, 0xce, 0xbe, 0x81, 0xd0, 0x3a, - 0x2b, 0xb2, 0xfc, 0xe4, 0x51, 0xf8, 0xad, 0x34, 0x98, 0xa8, 0x6d, 0x1b, 0x36, 0x9a, 0xbf, 0xb4, - 0x6c, 0xb6, 0xce, 0xc7, 0xf5, 0x4c, 0x78, 0x63, 0x50, 0xcc, 0x0a, 0xc8, 0x34, 0xcd, 0xd6, 0x79, - 0x77, 0xc3, 0x07, 0xff, 0xf7, 0x43, 0x14, 0xa4, 0x7b, 0x84, 0x28, 0xf0, 0x8c, 0x7e, 0x5e, 0xb9, - 0x61, 0xc7, 0x67, 0x62, 0x85, 0x28, 0xe8, 0x4b, 0x2e, 0x79, 0x31, 0xfe, 0x7e, 0x06, 0xe4, 0x6a, - 0xc8, 0xb0, 0xeb, 0xdb, 0xf0, 0xb1, 0xb4, 0x2f, 0xc2, 0x05, 0x90, 0xdf, 0x34, 0x9b, 0x0e, 0xb2, - 0xe9, 0xd6, 0x77, 0xb0, 0x03, 0xa7, 0x0d, 0x79, 0xbe, 0x69, 0xd5, 0xcf, 0xcf, 0x15, 0x71, 0xbf, - 0xd5, 0x72, 0xe6, 0xdc, 0x63, 0x8a, 0x73, 0x0b, 0x24, 0x93, 0xe6, 0x66, 0x56, 0x1e, 0x04, 0xd9, - 0x8e, 0x65, 0x3b, 0xee, 0x24, 0xf5, 0x96, 0x78, 0x54, 0x6a, 0x96, 0xed, 0x68, 0x34, 0x23, 0x06, - 0x73, 0x73, 0xb7, 0xd9, 0xd4, 0xd1, 0x45, 0xc7, 0x9d, 0x20, 0xba, 0xcf, 0x78, 0x75, 0x66, 0x6d, - 0x6e, 0x76, 0x10, 0x5d, 0x83, 0x64, 0x35, 0xf6, 0xa4, 0x1c, 0x03, 0xd9, 0xa6, 0xb9, 0x63, 0x3a, - 0x64, 0xa9, 0x91, 0xd5, 0xe8, 0x83, 0x72, 0x0b, 0x90, 0x2d, 0x6f, 0x7a, 0x48, 0x19, 0x9d, 0xc9, - 0x91, 0x06, 0xb8, 0x2f, 0x1d, 0x6b, 0xc6, 0x79, 0x74, 0xa9, 0x33, 0x93, 0x27, 0xef, 0xc9, 0x7f, - 0xf8, 0x6e, 0x51, 0xf3, 0x24, 0x95, 0x6b, 0xf8, 0x5c, 0xd9, 0x46, 0x75, 0xcb, 0x6e, 0xb8, 0xb2, - 0x09, 0x9f, 0x2b, 0xb3, 0xef, 0xc4, 0x8c, 0x8a, 0x3d, 0x0b, 0x4f, 0x5e, 0x9f, 0xde, 0x9d, 0x03, - 0xd9, 0x45, 0xdb, 0x68, 0x6f, 0xc3, 0xf7, 0xa5, 0x86, 0xaf, 0x4e, 0x1e, 0xb0, 0xe9, 0x7e, 0xc0, - 0x4a, 0x7d, 0x80, 0xcd, 0x04, 0x80, 0x7d, 0x34, 0x0d, 0x32, 0x6a, 0x63, 0x0b, 0x71, 0xab, 0xfd, - 0x54, 0x60, 0xb5, 0x7f, 0x1c, 0xe4, 0x1c, 0xc3, 0xde, 0x42, 0x0e, 0x93, 0x12, 0x7b, 0xf2, 0xdc, - 0xc9, 0xa4, 0xc0, 0x71, 0xd6, 0x97, 0x83, 0x0c, 0xae, 0x17, 0xd1, 0xc8, 0xe9, 0x53, 0xd7, 0xf5, - 0x82, 0x86, 0xc8, 0x67, 0x0e, 0x97, 0x38, 0x87, 0x39, 0xd3, 0x48, 0x86, 0x6e, 0x3c, 0xb2, 0xfb, - 0xf0, 0xc0, 0x33, 0x07, 0xb3, 0x6e, 0xb5, 0xca, 0x3b, 0xc6, 0x16, 0x9a, 0xc9, 0xd1, 0x99, 0x83, - 0x97, 0xe0, 0xbe, 0x55, 0x77, 0xac, 0x87, 0xcd, 0x99, 0xbc, 0xff, 0x96, 0x24, 0xe0, 0x2a, 0x6c, - 0x9b, 0x8d, 0x06, 0x6a, 0xcd, 0x8c, 0xd1, 0x03, 0x61, 0xf4, 0x69, 0xf6, 0x04, 0xc8, 0x60, 0x1e, - 0x30, 0xc6, 0xb8, 0xff, 0x91, 0x8f, 0x28, 0x93, 0x58, 0xcb, 0xa9, 0x39, 0x46, 0x4e, 0xc1, 0x2f, - 0xa6, 0x05, 0x37, 0xcf, 0x68, 0xe5, 0x7a, 0xeb, 0xfc, 0x4b, 0x40, 0xb6, 0x65, 0x35, 0x50, 0x5f, - 0x8d, 0xa7, 0x5f, 0x29, 0x2f, 0x05, 0x59, 0xd4, 0xd8, 0x42, 0x1d, 0x02, 0xe6, 0xc4, 0xa9, 0x13, - 0xd1, 0xb2, 0xd4, 0xe8, 0xc7, 0x62, 0x3b, 0x74, 0xbd, 0xb8, 0x4d, 0xbe, 0x91, 0xbc, 0x3d, 0x0f, - 0x8e, 0xd2, 0xf6, 0x59, 0xdb, 0xdd, 0xc0, 0xa4, 0x36, 0x10, 0x7c, 0x52, 0xe2, 0xce, 0xcf, 0x77, - 0x76, 0x37, 0xbc, 0xd1, 0x8b, 0x3e, 0x04, 0x1b, 0x51, 0x7a, 0x28, 0x7d, 0xb2, 0x34, 0x68, 0x9f, - 0xcc, 0xf5, 0xaf, 0x92, 0xdb, 0x0c, 0xfd, 0xde, 0x38, 0x47, 0x92, 0xdd, 0xde, 0xb8, 0x47, 0x5f, - 0x8a, 0xa7, 0xb9, 0xc6, 0xa6, 0x83, 0xec, 0x72, 0x83, 0xe8, 0xe3, 0xb8, 0xe6, 0x3e, 0xe2, 0xfe, - 0x7e, 0x03, 0x6d, 0x5a, 0x36, 0x9e, 0x01, 0x8f, 0xd3, 0xfe, 0xde, 0x7d, 0x0e, 0xb4, 0x4f, 0xc0, - 0x59, 0xe3, 0x6e, 0x06, 0x47, 0xcd, 0xad, 0x96, 0x65, 0x23, 0xcf, 0xa5, 0x61, 0x66, 0x92, 0x1e, - 0x65, 0xe8, 0x4a, 0x56, 0x6e, 0x03, 0x97, 0xb5, 0xac, 0x12, 0x6a, 0x33, 0xb9, 0x53, 0x54, 0xa7, - 0x48, 0x8b, 0xd8, 0xff, 0x42, 0x99, 0x05, 0x93, 0x75, 0xab, 0xd9, 0x44, 0x75, 0xfc, 0x54, 0x6e, - 0xcc, 0x4c, 0x13, 0xa2, 0x5c, 0x1a, 0xfc, 0x82, 0xe8, 0xb4, 0xbc, 0x0b, 0xf8, 0xa1, 0x0d, 0x0f, - 0xca, 0x3d, 0x60, 0xb2, 0xc1, 0xb6, 0x54, 0xeb, 0xa6, 0xd7, 0x6a, 0x42, 0xf3, 0x71, 0x1f, 0xfb, - 0x2a, 0x97, 0x09, 0xaa, 0xdc, 0x22, 0x18, 0x23, 0x9e, 0xe6, 0x58, 0xe7, 0xb2, 0x5d, 0x67, 0x89, - 0xc9, 0xcc, 0xd1, 0xab, 0x54, 0x40, 0x6c, 0x73, 0x45, 0x96, 0x45, 0xf3, 0x32, 0x8b, 0x4d, 0xf0, - 0xa3, 0x25, 0x94, 0x7c, 0xf3, 0xfc, 0x95, 0x0c, 0x38, 0xba, 0x68, 0x5b, 0xbb, 0xed, 0x8e, 0xdf, - 0x3c, 0x3f, 0x93, 0xea, 0xd7, 0x3c, 0xaf, 0x05, 0x13, 0x36, 0xeb, 0x37, 0x4f, 0x23, 0x37, 0x88, - 0x4a, 0x30, 0x29, 0xd8, 0x80, 0xa5, 0x83, 0x34, 0x60, 0xbf, 0x19, 0x64, 0xb8, 0x66, 0xd0, 0xad, - 0xae, 0xd9, 0x1e, 0xea, 0xfa, 0xb5, 0xb4, 0xa0, 0xba, 0x76, 0x09, 0x22, 0x44, 0x5d, 0x8b, 0x20, - 0xb7, 0x45, 0x3e, 0x64, 0xda, 0x7a, 0x6b, 0xbc, 0x9a, 0x11, 0xe2, 0x1a, 0xcb, 0xea, 0xcb, 0x55, - 0x0a, 0xc8, 0x55, 0x4c, 0x75, 0xa2, 0xb9, 0x4d, 0x5e, 0x75, 0x3e, 0x9a, 0x01, 0x93, 0x5e, 0xe9, - 0xc4, 0x4f, 0xb4, 0xaf, 0xde, 0xec, 0x5b, 0x0a, 0x7a, 0x1d, 0xa6, 0x14, 0xe8, 0x30, 0x7b, 0x74, - 0x71, 0x13, 0x02, 0x5d, 0xdc, 0x64, 0x48, 0x17, 0x07, 0x5f, 0x2d, 0xc5, 0x0d, 0xca, 0xc2, 0xb7, - 0x74, 0x52, 0xbb, 0xe7, 0x73, 0xdf, 0x15, 0x33, 0x34, 0x4c, 0xff, 0x5a, 0x25, 0xaf, 0x34, 0x9f, - 0x4a, 0x83, 0xcb, 0x68, 0x9f, 0xb7, 0xd6, 0xea, 0x78, 0x3d, 0x0e, 0x7f, 0x9a, 0x9f, 0xd4, 0xa9, - 0xe3, 0xed, 0x42, 0x91, 0x27, 0xde, 0xe2, 0x16, 0xe9, 0xe2, 0xcd, 0xf5, 0xac, 0x81, 0x52, 0x42, - 0x96, 0xaf, 0xf1, 0x9c, 0xb8, 0x63, 0x12, 0x4d, 0x5e, 0x80, 0x6f, 0x96, 0xc0, 0x78, 0x0d, 0x39, - 0xcb, 0xc6, 0x25, 0x6b, 0xd7, 0x81, 0x46, 0x5c, 0x5b, 0xdb, 0x2b, 0x40, 0xae, 0x49, 0xb2, 0x90, - 0x0e, 0x67, 0xfa, 0xd4, 0xb5, 0x3d, 0x8d, 0x55, 0x64, 0x33, 0x81, 0x92, 0xd6, 0xd8, 0xf7, 0xbc, - 0x6f, 0x7d, 0x1c, 0x53, 0xa7, 0xc7, 0xdd, 0x50, 0xec, 0x34, 0x42, 0x86, 0xd0, 0xb0, 0xa2, 0x93, - 0x87, 0xe5, 0xb5, 0x12, 0x98, 0x22, 0xae, 0xd1, 0x0b, 0xc6, 0x9e, 0x65, 0x9b, 0x0e, 0x0a, 0x86, - 0x97, 0x8b, 0x86, 0xe6, 0x04, 0x00, 0xa6, 0x97, 0x8d, 0xf9, 0x7f, 0x07, 0x52, 0xe0, 0x07, 0xd2, - 0x82, 0x5b, 0x20, 0x1c, 0x1f, 0x43, 0x01, 0x41, 0x68, 0xc3, 0x24, 0xaa, 0xf8, 0x11, 0x02, 0x51, - 0xb0, 0xeb, 0xdb, 0xe6, 0x1e, 0x6a, 0x08, 0x02, 0xe1, 0x66, 0xf3, 0x81, 0xf0, 0x08, 0x0d, 0x06, - 0x84, 0x9b, 0xfd, 0x90, 0x80, 0x08, 0x29, 0x3e, 0x79, 0x20, 0xfe, 0x26, 0x4d, 0x3a, 0xaa, 0x1a, - 0x99, 0xaf, 0x05, 0x5d, 0xcf, 0xa3, 0x41, 0xf0, 0x27, 0x7c, 0xe9, 0xe0, 0x84, 0x6f, 0xa0, 0x6e, - 0x88, 0x96, 0xdd, 0x4f, 0xf0, 0x99, 0x24, 0xba, 0xa1, 0x9e, 0x45, 0x27, 0x2f, 0xf4, 0x4f, 0x48, - 0xe0, 0x0a, 0x6f, 0x7a, 0x54, 0x43, 0x4e, 0xc9, 0xe8, 0x6c, 0x6f, 0x58, 0x86, 0xdd, 0x18, 0x8e, - 0x7b, 0x31, 0x17, 0xdf, 0xb8, 0xc2, 0x83, 0xd0, 0x73, 0xa7, 0xba, 0x27, 0x2f, 0xc3, 0x68, 0x09, - 0x91, 0x9b, 0xe9, 0xbf, 0xec, 0x81, 0xf5, 0xbd, 0x1c, 0x58, 0xf7, 0x0d, 0xca, 0x62, 0xf2, 0xc0, - 0xbd, 0x9f, 0x76, 0x5b, 0x01, 0xcf, 0x89, 0x95, 0xb8, 0x80, 0x5d, 0x0f, 0xa6, 0x7c, 0xd3, 0xdf, - 0x9a, 0xdd, 0x64, 0xe2, 0xe0, 0x13, 0xf9, 0xb3, 0xde, 0x31, 0x3b, 0xaf, 0xbe, 0x4e, 0x10, 0x62, - 0x9d, 0xd7, 0x67, 0x04, 0x3b, 0xaf, 0xe7, 0xab, 0x83, 0xc3, 0x33, 0x12, 0x3d, 0xef, 0xc5, 0xf9, - 0x99, 0x3c, 0x1c, 0x17, 0xae, 0x7d, 0x3e, 0x2d, 0x79, 0x61, 0x9f, 0x96, 0xcf, 0x8b, 0xfa, 0xb4, - 0x74, 0x73, 0x3b, 0x14, 0x38, 0x85, 0x5c, 0x56, 0xfa, 0x70, 0x70, 0xc8, 0x88, 0x7e, 0x53, 0x02, - 0x80, 0xc4, 0xcf, 0xa6, 0xde, 0x58, 0x4b, 0x20, 0x47, 0xff, 0xba, 0x2e, 0x9d, 0x29, 0xdf, 0xa5, - 0xf3, 0x36, 0x90, 0xdd, 0x33, 0x9a, 0xbb, 0xc8, 0x93, 0x51, 0xf7, 0xb2, 0xed, 0x0c, 0x7e, 0xab, - 0xd1, 0x8f, 0xe0, 0x76, 0x5c, 0xad, 0x78, 0x20, 0xe8, 0x4e, 0x84, 0xf5, 0xe1, 0x86, 0x10, 0x29, - 0x32, 0x1e, 0xe7, 0xe8, 0xaf, 0xef, 0x41, 0xf6, 0x84, 0xa8, 0x7b, 0x47, 0x80, 0xd6, 0x30, 0xb4, - 0x41, 0xc8, 0xe1, 0x23, 0xb4, 0xec, 0x11, 0x18, 0xbc, 0xd2, 0x20, 0xab, 0x5b, 0x35, 0xe4, 0x1c, - 0x7c, 0x4a, 0x22, 0x7c, 0xd8, 0x86, 0x94, 0x3b, 0x8c, 0xc3, 0x36, 0xbd, 0x08, 0x25, 0x2f, 0xba, - 0x27, 0xd3, 0x60, 0x52, 0xb7, 0x8a, 0x9e, 0x89, 0x2d, 0xbe, 0xbb, 0x4c, 0xfc, 0x70, 0xb8, 0x5e, - 0x05, 0xfd, 0x62, 0x0e, 0x14, 0x0e, 0xb7, 0x3f, 0xbd, 0xe4, 0xe5, 0x76, 0x17, 0x38, 0xba, 0xd6, - 0x6a, 0x58, 0x1a, 0x6a, 0x58, 0xcc, 0x5c, 0xac, 0x28, 0x20, 0xb3, 0xdb, 0x6a, 0x58, 0x84, 0xe5, - 0xac, 0x46, 0xfe, 0xe3, 0x34, 0x1b, 0x35, 0x2c, 0xb6, 0xdf, 0x47, 0xfe, 0xc3, 0x77, 0x48, 0x20, - 0x83, 0xf3, 0xc6, 0x17, 0xf5, 0x5f, 0x8b, 0x1e, 0x2c, 0xc2, 0xe4, 0x87, 0x32, 0x23, 0x7b, 0x20, - 0x60, 0x40, 0xa7, 0x4e, 0x34, 0xd7, 0x85, 0x95, 0x17, 0x10, 0x45, 0xc0, 0x70, 0xfe, 0x11, 0x91, - 0xc3, 0x48, 0x3d, 0xd8, 0x16, 0x43, 0xb2, 0x34, 0xc0, 0x20, 0x22, 0x83, 0xc9, 0x62, 0xa1, 0x42, - 0xa2, 0x22, 0xad, 0x54, 0xcf, 0xa8, 0xb2, 0x44, 0x00, 0xc2, 0xb5, 0x49, 0x10, 0x20, 0x4c, 0xfe, - 0xbb, 0x10, 0xa0, 0x1e, 0x6c, 0x1f, 0x06, 0x40, 0x9f, 0x4b, 0x83, 0xa9, 0x65, 0xb3, 0xe3, 0x84, - 0x39, 0xf9, 0x45, 0xc4, 0x3d, 0x78, 0x93, 0xe8, 0x94, 0x99, 0x2b, 0x27, 0x76, 0xc0, 0x03, 0xa1, - 0x35, 0x7d, 0x54, 0x11, 0xa3, 0xf1, 0x46, 0x25, 0x1c, 0xd0, 0x20, 0xac, 0xb1, 0x25, 0x29, 0x3c, - 0x39, 0xf1, 0x0b, 0x19, 0xfd, 0xe4, 0x24, 0xb4, 0xec, 0xe4, 0xe5, 0xfb, 0x17, 0x69, 0x70, 0x19, - 0x2e, 0x3e, 0xca, 0x80, 0x15, 0x2e, 0xe6, 0xbe, 0x06, 0x2c, 0x61, 0x1b, 0xfa, 0x3e, 0x5e, 0x86, - 0x61, 0x43, 0xef, 0x47, 0x74, 0xc4, 0x62, 0x0e, 0x31, 0xd8, 0xf6, 0x13, 0x73, 0x84, 0xc1, 0x76, - 0x70, 0x31, 0x47, 0x1b, 0x6d, 0x07, 0x14, 0xf3, 0xa1, 0x99, 0x62, 0xbf, 0x9a, 0x06, 0x53, 0x85, - 0x76, 0xbb, 0x79, 0x49, 0x67, 0x27, 0x7f, 0x84, 0x4c, 0xb1, 0x81, 0x03, 0x44, 0xe9, 0x7d, 0xc7, - 0x67, 0x85, 0x8f, 0x05, 0x70, 0x7c, 0x0c, 0xe3, 0x58, 0x40, 0x14, 0xc1, 0xe4, 0x45, 0xfb, 0x4c, - 0x96, 0x76, 0xc4, 0x2c, 0xb0, 0xc7, 0x5b, 0xd3, 0xd1, 0x91, 0x3d, 0x22, 0xc3, 0x18, 0x29, 0xf7, - 0x81, 0xdc, 0xa6, 0x65, 0xef, 0x18, 0xee, 0xde, 0xd0, 0x0d, 0x61, 0xea, 0xc4, 0x62, 0x67, 0x2c, - 0x90, 0x8f, 0x35, 0x96, 0x09, 0x8f, 0x68, 0xaf, 0x32, 0xdb, 0xec, 0xec, 0x3b, 0xfe, 0x4b, 0x82, - 0xda, 0xd0, 0x23, 0xf0, 0x15, 0xd4, 0x71, 0x10, 0xdd, 0x9d, 0x1f, 0xd3, 0xf8, 0x44, 0x65, 0x16, - 0x4c, 0xb2, 0x84, 0x05, 0xb3, 0x89, 0x3a, 0xc4, 0x93, 0x66, 0x4c, 0xe3, 0xd2, 0xf0, 0xd2, 0xcb, - 0xec, 0x3c, 0xd4, 0xb1, 0x5a, 0xc4, 0xcb, 0x6b, 0x4c, 0x63, 0x4f, 0x64, 0x8b, 0x98, 0x7e, 0xe7, - 0x75, 0x77, 0xe3, 0xe4, 0x83, 0xee, 0x64, 0xf8, 0xa5, 0x41, 0x86, 0x1e, 0xe1, 0x98, 0x25, 0x33, - 0x20, 0xdf, 0xd9, 0xad, 0xd7, 0x11, 0x6a, 0x30, 0xf7, 0x4c, 0xf7, 0x51, 0x30, 0x9a, 0x89, 0xf0, - 0x40, 0x75, 0x38, 0xe1, 0x4c, 0x66, 0x57, 0x41, 0x8e, 0x6a, 0x81, 0x32, 0x09, 0xc6, 0x56, 0x0c, - 0xfb, 0x7c, 0xc3, 0xba, 0xd0, 0xa2, 0x0e, 0x75, 0xab, 0xcc, 0x10, 0x22, 0xa7, 0x30, 0xc5, 0x87, - 0x6a, 0xd5, 0x0a, 0x0d, 0xed, 0x59, 0xaa, 0xb2, 0xd0, 0x9e, 0xb5, 0x33, 0x8b, 0x72, 0x46, 0x99, - 0x06, 0x60, 0x51, 0x2b, 0xac, 0x2e, 0xad, 0x93, 0x2f, 0xb2, 0xf0, 0xd3, 0x97, 0x83, 0x5c, 0x79, - 0x87, 0x68, 0xf3, 0xdb, 0xa7, 0x82, 0x17, 0xbb, 0x4d, 0xb6, 0x2c, 0xcc, 0xe6, 0xaa, 0x61, 0x1b, - 0x3b, 0x9d, 0xa8, 0x35, 0x23, 0xcd, 0xed, 0x5d, 0xea, 0x56, 0x09, 0x64, 0x5b, 0x3a, 0xa2, 0x71, - 0x64, 0x94, 0xff, 0x1f, 0x1c, 0xdd, 0x60, 0x47, 0x4e, 0x3a, 0x8c, 0x72, 0x3a, 0xdc, 0x2f, 0xa4, - 0x8b, 0xf2, 0x3c, 0x9f, 0x73, 0xe9, 0x88, 0xd6, 0x4d, 0x4c, 0xf9, 0x7e, 0x30, 0xbd, 0xc3, 0xa4, - 0xc2, 0xc8, 0x4b, 0xe1, 0xde, 0xed, 0x5d, 0xe4, 0x57, 0xb8, 0x8c, 0x4b, 0x47, 0xb4, 0x2e, 0x52, - 0x4a, 0x15, 0x80, 0x6d, 0x67, 0xa7, 0xc9, 0x08, 0x67, 0xc2, 0x55, 0xb9, 0x8b, 0xf0, 0x92, 0x97, - 0x69, 0xe9, 0x88, 0x16, 0x20, 0xa1, 0x2c, 0x83, 0x71, 0xe7, 0xa2, 0xc3, 0xe8, 0x65, 0xc3, 0xb7, - 0x54, 0xba, 0xe8, 0xe9, 0x6e, 0x9e, 0xa5, 0x23, 0x9a, 0x4f, 0x40, 0x29, 0x83, 0xb1, 0xf6, 0x06, - 0x23, 0x96, 0xeb, 0x71, 0x29, 0x43, 0x6f, 0x62, 0xab, 0x1b, 0x1e, 0x2d, 0x2f, 0x3b, 0x66, 0xac, - 0xde, 0xd9, 0x63, 0xb4, 0xf2, 0xb1, 0x19, 0x2b, 0xba, 0x79, 0x30, 0x63, 0x1e, 0x01, 0xa5, 0x0c, - 0xc6, 0x3b, 0x2d, 0xa3, 0xdd, 0xd9, 0xb6, 0x9c, 0xce, 0xcc, 0x58, 0x97, 0xef, 0x4e, 0x38, 0xb5, - 0x1a, 0xcb, 0xa3, 0xf9, 0xb9, 0x95, 0x97, 0x82, 0x2b, 0x76, 0x49, 0x80, 0x5e, 0xf5, 0xa2, 0xd9, - 0x71, 0xcc, 0xd6, 0x96, 0x1b, 0x01, 0x84, 0xf6, 0x42, 0xbd, 0x5f, 0x2a, 0xf7, 0x30, 0x7f, 0x59, - 0x40, 0xda, 0xf4, 0x4d, 0x71, 0x44, 0xec, 0xfb, 0xcc, 0xde, 0x03, 0x32, 0x3b, 0xb8, 0x43, 0x98, - 0x88, 0x9d, 0x79, 0x85, 0xf4, 0x02, 0x38, 0x13, 0x1e, 0x4f, 0x5b, 0xd6, 0xaa, 0x6d, 0x6d, 0xd9, - 0xa8, 0xd3, 0x61, 0x1e, 0x32, 0x81, 0x14, 0xdc, 0x4b, 0x98, 0x9d, 0x15, 0x73, 0xcb, 0x36, 0x02, - 0x5e, 0x82, 0xc1, 0x24, 0x78, 0x23, 0x98, 0x0c, 0xb6, 0x28, 0xdc, 0x33, 0x1b, 0x6d, 0xf3, 0xb4, - 0x67, 0x1c, 0x65, 0x4f, 0xf0, 0x7a, 0x30, 0xcd, 0x2b, 0x70, 0x60, 0x40, 0x92, 0xdc, 0xfe, 0x12, - 0x5e, 0x07, 0x8e, 0x76, 0xb5, 0x22, 0xf7, 0xc4, 0x5a, 0xca, 0x3f, 0xb1, 0x76, 0x2d, 0x00, 0xbe, - 0xca, 0xf6, 0x24, 0xf3, 0x42, 0x30, 0xee, 0x29, 0x61, 0xcf, 0x0f, 0xe6, 0xc1, 0x98, 0xab, 0x58, - 0xbd, 0xde, 0xe3, 0x31, 0xa8, 0x15, 0x30, 0x0d, 0xb1, 0xc9, 0x1c, 0x97, 0x06, 0xdf, 0x96, 0x06, - 0xe3, 0x9e, 0x46, 0xf5, 0xa4, 0xa2, 0x32, 0x68, 0xd2, 0xe1, 0x5b, 0x82, 0x61, 0x1a, 0x1a, 0x04, - 0xe9, 0x15, 0xe0, 0xca, 0xdd, 0x0e, 0x5a, 0x30, 0xed, 0x8e, 0xa3, 0x59, 0x17, 0x16, 0x2c, 0xdb, - 0x0b, 0x20, 0xe3, 0xde, 0x6a, 0x14, 0xf2, 0x1a, 0x8f, 0xef, 0x0d, 0x44, 0x3c, 0x53, 0x91, 0xcd, - 0x3c, 0x83, 0xfc, 0x04, 0x4c, 0xd7, 0xb1, 0x8d, 0x56, 0xa7, 0x6d, 0x75, 0x90, 0x66, 0x5d, 0xe8, - 0x14, 0x5a, 0x8d, 0xa2, 0xd5, 0xdc, 0xdd, 0x69, 0x75, 0xd8, 0xc0, 0x1c, 0xf6, 0x7a, 0xf6, 0x45, - 0x20, 0x83, 0xf9, 0xc3, 0x9d, 0x75, 0xb1, 0xba, 0xbc, 0x4c, 0xef, 0x6c, 0x91, 0x8f, 0x28, 0xe3, - 0x20, 0xab, 0x17, 0xe6, 0x97, 0x55, 0x39, 0x05, 0x7f, 0x00, 0x8c, 0xb9, 0x0d, 0x64, 0xdf, 0xcd, - 0x0f, 0x05, 0x30, 0xe6, 0x36, 0x19, 0xd6, 0xbd, 0xde, 0xd0, 0xb5, 0xcb, 0x51, 0xdb, 0x31, 0x6c, - 0x87, 0x38, 0xcc, 0xb9, 0x44, 0xe6, 0x8d, 0x0e, 0xd2, 0xbc, 0x6c, 0xb3, 0x2f, 0x61, 0x1c, 0x28, - 0x60, 0xba, 0xb0, 0xbc, 0xbc, 0x5e, 0x25, 0xb7, 0x8b, 0x2c, 0x95, 0x2b, 0x8b, 0x74, 0x98, 0x2a, - 0x2f, 0x56, 0xaa, 0x9a, 0x4a, 0x47, 0xa9, 0x9a, 0x9c, 0x9a, 0xd5, 0x98, 0x8b, 0x37, 0x00, 0x39, - 0xaa, 0xad, 0x74, 0x4c, 0xf2, 0x46, 0xa8, 0x14, 0x7e, 0x52, 0x2f, 0xd2, 0x8d, 0x08, 0x39, 0xad, - 0xe4, 0x40, 0x7a, 0x75, 0x43, 0x96, 0xf0, 0x48, 0x85, 0x55, 0x8d, 0x86, 0x9c, 0xd6, 0x2f, 0x3a, - 0x34, 0xe4, 0x74, 0xb1, 0xb3, 0x27, 0xe7, 0xfc, 0xcb, 0x92, 0xda, 0x04, 0x31, 0xde, 0x4d, 0x3c, - 0xce, 0xd9, 0x08, 0x0f, 0xfb, 0x5e, 0x93, 0xce, 0xd7, 0xa4, 0x05, 0x0e, 0x3a, 0xf4, 0xa4, 0x24, - 0x36, 0xda, 0xbf, 0x79, 0x7f, 0x50, 0x70, 0x05, 0x4c, 0x97, 0x2b, 0xba, 0xaa, 0x55, 0x0a, 0xcb, - 0xde, 0x78, 0xbf, 0x6f, 0x0a, 0x90, 0xe6, 0xa7, 0x00, 0x52, 0x44, 0xa0, 0xf0, 0x8c, 0x32, 0x03, - 0x8e, 0x55, 0xaa, 0x6c, 0x9f, 0xa5, 0x46, 0x22, 0xc9, 0xaf, 0xac, 0x56, 0x35, 0x5d, 0xce, 0x2a, - 0xc7, 0x81, 0x42, 0xff, 0xe3, 0x4c, 0xc5, 0x42, 0xa5, 0xa8, 0x2e, 0xab, 0x25, 0x39, 0x07, 0x7f, - 0x43, 0x72, 0x11, 0x83, 0x9f, 0x94, 0xc0, 0xd4, 0x19, 0xa3, 0x69, 0xe2, 0x1e, 0x54, 0x27, 0xb7, - 0xa9, 0xf5, 0xbd, 0x6e, 0xed, 0x35, 0x41, 0xcf, 0x3e, 0x9d, 0x87, 0xe4, 0xfe, 0x08, 0x41, 0xd2, - 0x12, 0xe7, 0xb8, 0xd2, 0x42, 0x70, 0x7a, 0x97, 0x87, 0xd3, 0x59, 0x0e, 0xa7, 0xe2, 0xc1, 0xc8, - 0x8b, 0x81, 0xf7, 0xf6, 0x78, 0xe0, 0xc9, 0x60, 0x72, 0xad, 0x52, 0x58, 0xd3, 0x97, 0xaa, 0x5a, - 0xf9, 0x95, 0x6a, 0x49, 0x4e, 0xef, 0x87, 0x53, 0xe2, 0xe1, 0xcc, 0xe0, 0xc7, 0x85, 0xaa, 0x36, - 0x5f, 0x2e, 0x95, 0xd4, 0x8a, 0x9c, 0x55, 0xae, 0x04, 0x97, 0xd7, 0x54, 0xed, 0x4c, 0xb9, 0xa8, - 0xae, 0xaf, 0x55, 0x0a, 0x67, 0x0a, 0xe5, 0x65, 0xd2, 0xde, 0x73, 0x11, 0xb0, 0xe7, 0xe1, 0x8f, - 0x64, 0x00, 0xa0, 0x55, 0xc7, 0x53, 0xd3, 0x60, 0xf8, 0xe6, 0x3f, 0x14, 0x9d, 0x85, 0xfb, 0x64, - 0x42, 0x66, 0xe1, 0x65, 0x30, 0x66, 0xb3, 0x17, 0x6c, 0xc7, 0xac, 0x1f, 0x1d, 0xfa, 0xd7, 0xa5, - 0xa6, 0x79, 0xd9, 0xe1, 0x53, 0x22, 0x93, 0xee, 0x50, 0xc6, 0xc4, 0x90, 0x5c, 0x18, 0x4e, 0x2b, - 0x84, 0x6f, 0x4c, 0x81, 0x69, 0xbe, 0x62, 0xb8, 0x12, 0x64, 0x96, 0x11, 0xaf, 0x12, 0x7c, 0xe6, - 0xc0, 0x84, 0x63, 0xf6, 0xce, 0xbe, 0x7d, 0xa9, 0xdb, 0x6b, 0xa6, 0xdd, 0x5e, 0x53, 0x82, 0x4f, - 0x49, 0x60, 0x8a, 0x92, 0x5c, 0xeb, 0xa0, 0xa2, 0xd1, 0x41, 0xdc, 0xd9, 0xa8, 0xd3, 0x20, 0xbf, - 0x4b, 0x93, 0xa3, 0xdc, 0x67, 0xb8, 0xfc, 0xde, 0x90, 0xc9, 0x9e, 0x35, 0x97, 0xc2, 0x6c, 0x15, - 0xe4, 0x59, 0x1a, 0x66, 0xa4, 0x76, 0xba, 0xbc, 0x2a, 0x1f, 0x51, 0xae, 0x00, 0x97, 0xad, 0xaa, - 0x5a, 0xad, 0x8a, 0xa5, 0xb8, 0xaa, 0x55, 0x49, 0x07, 0x24, 0xa7, 0xb0, 0x70, 0xb1, 0x18, 0x97, - 0xd5, 0xd2, 0xa2, 0xba, 0x3e, 0x5f, 0xa8, 0xa9, 0x72, 0x5a, 0x39, 0x0a, 0x26, 0x2a, 0x55, 0x5d, - 0xad, 0xad, 0x97, 0xca, 0x05, 0xed, 0x9c, 0x2c, 0x89, 0x1b, 0x15, 0xba, 0x19, 0x3d, 0xb0, 0x51, - 0x21, 0x8a, 0xe0, 0x08, 0x22, 0xaf, 0x8f, 0x03, 0x99, 0x32, 0x12, 0x98, 0xfd, 0xbc, 0x59, 0xa2, - 0xd1, 0xb0, 0xd7, 0x05, 0x4e, 0x75, 0xbb, 0xc7, 0x5d, 0xd2, 0xfc, 0x71, 0x17, 0xce, 0x0a, 0x21, - 0x75, 0xdb, 0x88, 0x45, 0xbd, 0xeb, 0x02, 0x1b, 0x7a, 0xe1, 0xf1, 0x9b, 0x93, 0xf3, 0xae, 0x8b, - 0x2c, 0x7e, 0x34, 0x51, 0x5d, 0x59, 0x1c, 0x67, 0x35, 0x2e, 0x32, 0xd1, 0xc1, 0xac, 0x3f, 0x22, - 0xe8, 0x54, 0xc2, 0x6d, 0xa8, 0x46, 0x44, 0x78, 0x16, 0x83, 0xe0, 0x03, 0x02, 0x4e, 0x25, 0xfd, - 0x38, 0x48, 0x1e, 0x85, 0x7f, 0x4a, 0x83, 0x4c, 0xcd, 0xb2, 0x9d, 0x61, 0x61, 0x20, 0x7a, 0x30, - 0x3e, 0x20, 0x81, 0x5a, 0xb8, 0xc1, 0x2a, 0xb9, 0x83, 0xf1, 0xd1, 0xe5, 0x8f, 0xe0, 0x60, 0xfc, - 0x51, 0x30, 0x4d, 0x39, 0xf1, 0x82, 0xc6, 0xfd, 0x23, 0x8b, 0xde, 0x7f, 0x3a, 0x2e, 0x22, 0xb3, - 0x60, 0x32, 0x70, 0x70, 0xc9, 0xbb, 0x08, 0x22, 0x98, 0xc6, 0xdf, 0x3f, 0x1d, 0x79, 0xb1, 0x3f, - 0xcf, 0xcd, 0xd0, 0x7a, 0x26, 0x91, 0x33, 0xf6, 0x11, 0x85, 0x27, 0x8f, 0xc8, 0x23, 0xfe, 0x15, - 0x8d, 0x43, 0x45, 0x40, 0xb4, 0x65, 0x78, 0x42, 0x88, 0xb7, 0x8b, 0x28, 0x0d, 0xbb, 0x65, 0x44, - 0x97, 0x9f, 0x3c, 0x0e, 0xff, 0xcc, 0xb6, 0xbd, 0x0b, 0x7b, 0x86, 0xd9, 0x34, 0x36, 0x9a, 0x02, - 0xb1, 0x6d, 0x7e, 0x4b, 0xd0, 0xc9, 0xd7, 0xab, 0x2a, 0x57, 0x5e, 0xe8, 0x2d, 0x9a, 0xe3, 0xb6, - 0x67, 0xd5, 0x70, 0x4f, 0x4c, 0xf1, 0x36, 0x01, 0x97, 0x9e, 0xe6, 0x7f, 0x29, 0xe4, 0xd1, 0x1b, - 0x8b, 0x9f, 0xe4, 0x11, 0xf8, 0x09, 0x09, 0x4c, 0x14, 0x1a, 0x8d, 0x05, 0x64, 0x38, 0xbb, 0x36, - 0x6a, 0x08, 0x0d, 0x11, 0xbc, 0x88, 0xc6, 0x83, 0x92, 0xf8, 0x64, 0xec, 0xab, 0x00, 0xf6, 0xf7, - 0x06, 0x2e, 0x2f, 0x43, 0xe9, 0x92, 0xe2, 0x5d, 0x1c, 0x10, 0x9b, 0x89, 0xe4, 0x01, 0x79, 0x8b, - 0x04, 0xa6, 0xe9, 0x3c, 0x61, 0xd8, 0x98, 0xfc, 0x5a, 0x10, 0x93, 0x2a, 0x8f, 0xc9, 0x5d, 0x51, - 0xe2, 0xe0, 0xd9, 0x19, 0x0a, 0x2c, 0xbe, 0x8f, 0x8e, 0xc6, 0xc1, 0x72, 0xff, 0xc0, 0x7c, 0x24, - 0x8f, 0xcc, 0xb7, 0x00, 0x00, 0x01, 0xcf, 0xf7, 0x3f, 0x01, 0x7e, 0x58, 0x06, 0xf8, 0x79, 0xb6, - 0xfe, 0xa8, 0x71, 0x61, 0x87, 0x78, 0x87, 0xf7, 0x54, 0x0f, 0x87, 0xf7, 0x58, 0xa3, 0xca, 0xb7, - 0x05, 0xe7, 0xbc, 0xcc, 0x17, 0xbd, 0xef, 0xe0, 0x3e, 0x60, 0x2f, 0xf7, 0xac, 0xc0, 0xe4, 0xb7, - 0x1f, 0x2b, 0xc9, 0x5f, 0x1a, 0x1c, 0xe5, 0x51, 0xad, 0xcc, 0x80, 0x63, 0x9a, 0x5a, 0x28, 0x55, - 0x2b, 0xcb, 0xe7, 0x82, 0x6f, 0xe5, 0x0c, 0x7c, 0xa7, 0xbf, 0x72, 0x49, 0x04, 0xd3, 0xff, 0x20, - 0xd8, 0x41, 0xf2, 0x82, 0x8c, 0x5a, 0xca, 0xc0, 0xff, 0x2c, 0xd0, 0xe5, 0xc5, 0x20, 0xfb, 0xbc, - 0x85, 0xe8, 0xeb, 0x12, 0xc8, 0x10, 0x0b, 0xde, 0xae, 0x28, 0x40, 0x25, 0x70, 0x8d, 0xd1, 0x6e, - 0xa3, 0x56, 0xc3, 0xdb, 0x9b, 0x58, 0xb0, 0xad, 0x9d, 0xaa, 0xb3, 0x8d, 0x6c, 0xfc, 0x49, 0x87, - 0x6d, 0xb0, 0x44, 0x7f, 0x04, 0xbf, 0x2e, 0xe8, 0x40, 0xc3, 0xcb, 0x3a, 0xc2, 0x68, 0x78, 0xd7, - 0xfe, 0x76, 0x79, 0x55, 0x48, 0xbb, 0x5c, 0x36, 0x5b, 0xe7, 0x83, 0x6d, 0xf3, 0x77, 0x05, 0x7c, - 0x6f, 0xfa, 0xf2, 0x73, 0xc8, 0xc7, 0x1d, 0x5e, 0x9d, 0x0b, 0x74, 0xb0, 0x6f, 0x90, 0x80, 0xec, - 0x5f, 0x9e, 0xc4, 0x02, 0x38, 0x57, 0x79, 0x5f, 0xa8, 0x36, 0x8d, 0xa8, 0xe0, 0xfb, 0x42, 0xb9, - 0x09, 0xca, 0x8d, 0x60, 0xba, 0xbe, 0x8d, 0xea, 0xe7, 0xcb, 0x2d, 0x77, 0x07, 0x94, 0x22, 0xdc, - 0x95, 0xca, 0x1f, 0xdf, 0x3b, 0xcd, 0x43, 0xca, 0x9b, 0x57, 0x38, 0xb9, 0x05, 0x99, 0x0a, 0x69, - 0x94, 0x3e, 0x30, 0x15, 0x0e, 0x98, 0xbb, 0x07, 0xa2, 0x2a, 0x86, 0x4c, 0x65, 0xb0, 0x0b, 0x56, - 0xab, 0xab, 0x7a, 0xb9, 0x5a, 0x59, 0x5f, 0xab, 0xa9, 0xa5, 0xf5, 0x79, 0xb7, 0xf1, 0xd5, 0x64, - 0x09, 0x7e, 0x33, 0x0d, 0xf2, 0x94, 0xad, 0x4e, 0xd7, 0xe5, 0x46, 0xc1, 0x70, 0x1b, 0xa9, 0x7d, - 0xe1, 0x36, 0xe0, 0x87, 0x63, 0x9f, 0x8e, 0xf4, 0x04, 0xc1, 0xca, 0x09, 0x69, 0x29, 0xaf, 0x00, - 0x79, 0x0a, 0xb2, 0xeb, 0x18, 0x71, 0x22, 0xa4, 0x9d, 0x30, 0x32, 0x9a, 0xfb, 0x79, 0xcc, 0x93, - 0x92, 0x7d, 0xd8, 0x48, 0x7e, 0xce, 0xf1, 0xde, 0x09, 0x90, 0x5f, 0x32, 0x3b, 0x8e, 0x65, 0x5f, - 0x82, 0x4f, 0xa4, 0x40, 0xfe, 0x0c, 0xb2, 0x3b, 0xa6, 0xd5, 0xda, 0xb7, 0x87, 0x79, 0x2d, 0x98, - 0x68, 0xdb, 0x68, 0xcf, 0xb4, 0x76, 0x3b, 0xbe, 0xc9, 0x26, 0x98, 0xa4, 0x40, 0x30, 0x66, 0xec, - 0x3a, 0xdb, 0x96, 0xed, 0x9f, 0x44, 0x74, 0x9f, 0x95, 0x13, 0x00, 0xd0, 0xff, 0x15, 0x63, 0x07, - 0xb1, 0x9d, 0xd9, 0x40, 0x8a, 0xa2, 0x80, 0x8c, 0x63, 0xee, 0x20, 0x16, 0x5c, 0x88, 0xfc, 0x57, - 0x66, 0x40, 0x9e, 0x04, 0x09, 0x29, 0x37, 0x58, 0x70, 0x21, 0xf7, 0x11, 0xfe, 0x82, 0x04, 0x26, - 0x16, 0x91, 0xc3, 0x58, 0xed, 0x04, 0x4f, 0xff, 0xf7, 0xb9, 0x63, 0xac, 0x69, 0x74, 0xdc, 0x6c, - 0x9e, 0x5d, 0x96, 0x4f, 0xf4, 0x03, 0x1d, 0x49, 0x81, 0x78, 0x63, 0xf0, 0xc9, 0x74, 0xdc, 0x93, - 0x1b, 0x4c, 0x98, 0x73, 0x01, 0x06, 0x43, 0x75, 0x6b, 0x6c, 0x8f, 0x7d, 0xc1, 0x3a, 0xe1, 0xab, - 0x7b, 0x52, 0x62, 0x64, 0x34, 0xef, 0xeb, 0x98, 0x67, 0x3e, 0xfa, 0x73, 0x92, 0xbc, 0x7a, 0xfd, - 0xbd, 0x04, 0x26, 0x6a, 0xdb, 0xd6, 0x05, 0xc6, 0x00, 0xfc, 0x81, 0x78, 0x50, 0x5d, 0x0d, 0xc6, - 0xf7, 0xba, 0x60, 0xf2, 0x13, 0xc2, 0xaf, 0xa7, 0x81, 0xaf, 0x97, 0x44, 0x61, 0x0a, 0x30, 0x37, - 0xf4, 0x6b, 0x65, 0x94, 0xef, 0x01, 0x79, 0xc6, 0x35, 0xb3, 0xac, 0x44, 0x03, 0xec, 0x7e, 0x1c, - 0xac, 0x60, 0x86, 0xaf, 0xa0, 0x18, 0xf2, 0xe1, 0x95, 0x1b, 0x41, 0x94, 0xc9, 0x34, 0x39, 0x4b, - 0xe8, 0x02, 0x5f, 0x1c, 0x02, 0xf0, 0xf0, 0x1f, 0x52, 0x71, 0xed, 0x8f, 0x9e, 0x04, 0x3c, 0x0e, - 0x0e, 0x14, 0xb5, 0xb3, 0x2f, 0xb9, 0xe4, 0xe5, 0xf9, 0xc4, 0x15, 0x20, 0xb3, 0x60, 0x36, 0x11, - 0x5e, 0xbf, 0xe7, 0xab, 0x9b, 0x9b, 0x4d, 0xcb, 0xe0, 0x16, 0xee, 0xdd, 0x1d, 0xf6, 0x2d, 0x40, - 0x76, 0xfd, 0x4c, 0x2d, 0x67, 0xd5, 0x6c, 0xb5, 0x3c, 0x57, 0xf8, 0x7d, 0xe9, 0xbc, 0xa9, 0x2b, - 0xf2, 0x04, 0x1f, 0xe6, 0x60, 0x8e, 0x95, 0x1e, 0xd2, 0x5e, 0x6e, 0x04, 0xd3, 0x1b, 0x97, 0x1c, - 0xd4, 0x61, 0x5f, 0xb1, 0x62, 0x33, 0x5a, 0x57, 0x2a, 0x7c, 0x26, 0xd6, 0x49, 0xbf, 0x88, 0x02, - 0xc5, 0x64, 0x6e, 0x0c, 0x30, 0x47, 0x39, 0x06, 0xe4, 0x4a, 0xb5, 0xa4, 0x92, 0xed, 0xfd, 0x9a, - 0x5e, 0xd0, 0x74, 0xb5, 0x24, 0x6f, 0x29, 0x57, 0x82, 0xcb, 0x17, 0xca, 0xcb, 0x34, 0xf5, 0x9c, - 0xaa, 0xaf, 0xaf, 0x96, 0x2b, 0x15, 0xb5, 0x24, 0x6f, 0xc3, 0xa7, 0x25, 0x30, 0x81, 0xe7, 0x55, - 0x2e, 0x3a, 0x81, 0xd9, 0xe3, 0x0c, 0xc8, 0x5b, 0xad, 0xe6, 0x25, 0x7f, 0xee, 0xe8, 0x3e, 0x0a, - 0xe1, 0xf4, 0x9f, 0x62, 0x4f, 0x6f, 0x88, 0xd8, 0x02, 0xbc, 0x84, 0x63, 0xb5, 0x69, 0x36, 0xbb, - 0xb1, 0xca, 0x6a, 0x5d, 0xa9, 0x3d, 0x30, 0x95, 0x7a, 0x62, 0xfa, 0xab, 0xb1, 0x26, 0x3d, 0x7d, - 0x98, 0x13, 0xc3, 0x75, 0x69, 0x58, 0xb8, 0xc2, 0xe7, 0x24, 0x90, 0x5b, 0x6b, 0x13, 0xe4, 0x9e, - 0x0d, 0x6c, 0xd6, 0xef, 0x73, 0xc8, 0xc3, 0x9d, 0x54, 0xd3, 0xaa, 0x1b, 0xcd, 0xc0, 0x35, 0xf3, - 0x7e, 0x82, 0x72, 0x37, 0xf3, 0x3b, 0xa0, 0x4e, 0xe4, 0x37, 0x46, 0x46, 0x45, 0x23, 0x92, 0x08, - 0x38, 0x37, 0xde, 0x06, 0x2e, 0x6b, 0x98, 0x1d, 0x63, 0xa3, 0x89, 0xd4, 0x56, 0xdd, 0xbe, 0x44, - 0x2b, 0x4d, 0x3d, 0xca, 0xf7, 0xbf, 0x50, 0xee, 0x03, 0xd9, 0x8e, 0x73, 0xa9, 0x49, 0xa7, 0x4d, - 0x41, 0x5f, 0xc8, 0xd0, 0xa2, 0x6a, 0xf8, 0x73, 0x8d, 0xe6, 0x82, 0xff, 0x9c, 0x8a, 0x7b, 0x02, - 0x8f, 0xe4, 0xa5, 0xa2, 0x09, 0x77, 0x06, 0xdf, 0x36, 0x3a, 0x9e, 0x33, 0x38, 0xfe, 0x0f, 0x1f, - 0x8f, 0x75, 0x4c, 0x2e, 0x9c, 0x76, 0xf2, 0x7d, 0xea, 0xd7, 0xd2, 0x60, 0xac, 0x64, 0x5d, 0x68, - 0x11, 0xcc, 0xef, 0xe0, 0xce, 0x0e, 0x90, 0xda, 0xa4, 0xfc, 0xda, 0xf4, 0x72, 0x77, 0x87, 0x6f, - 0x8f, 0xed, 0x02, 0x47, 0x6a, 0xe9, 0x16, 0x15, 0x7e, 0xc9, 0x72, 0xb8, 0x5a, 0x05, 0x4c, 0xff, - 0x51, 0x0e, 0x72, 0x51, 0xe5, 0x88, 0xc9, 0xb3, 0x70, 0xe0, 0x4b, 0xea, 0xe0, 0x33, 0x12, 0xc8, - 0x94, 0x6c, 0xab, 0x0d, 0x7f, 0x29, 0x25, 0xb0, 0x07, 0xd6, 0xb0, 0xad, 0xb6, 0x4e, 0x82, 0xed, - 0x7a, 0x53, 0x00, 0x2e, 0x4d, 0xb9, 0x0b, 0x8c, 0xb5, 0xad, 0x8e, 0xe9, 0xb8, 0xd3, 0xaa, 0xe9, - 0x53, 0xd7, 0xf4, 0xd4, 0xfc, 0x55, 0xf6, 0x91, 0xe6, 0x7d, 0x8e, 0xfb, 0x31, 0x22, 0x51, 0x2c, - 0x26, 0x2c, 0x55, 0x37, 0x28, 0x70, 0x57, 0x2a, 0xfc, 0x99, 0x20, 0xb0, 0xf7, 0xf0, 0xc0, 0xde, - 0xd0, 0x43, 0xe0, 0xb6, 0xd5, 0x1e, 0x8a, 0xd5, 0xfa, 0x31, 0x0f, 0xe4, 0xfb, 0x39, 0x90, 0x6f, - 0x89, 0x55, 0xe6, 0x08, 0xae, 0x6f, 0xcd, 0x00, 0x50, 0x6b, 0x1b, 0x75, 0xb4, 0xd6, 0x31, 0xb6, - 0x50, 0xd0, 0xb3, 0xed, 0xb5, 0x99, 0x80, 0xc4, 0x0a, 0xbc, 0xc4, 0x6e, 0xdd, 0xcf, 0xbd, 0x4f, - 0x24, 0x44, 0x6e, 0x05, 0x90, 0xdd, 0xc5, 0xaf, 0x99, 0xdc, 0x62, 0x92, 0x20, 0x8f, 0x1a, 0xcd, - 0x09, 0x7f, 0x3f, 0x05, 0xb2, 0x24, 0x01, 0x2f, 0x3f, 0xc9, 0x80, 0x46, 0x8e, 0xf2, 0x12, 0xa6, - 0x32, 0x5a, 0x20, 0x85, 0xe8, 0xa4, 0xd9, 0x60, 0xaf, 0xe9, 0x6c, 0xc5, 0x4f, 0xc0, 0xb9, 0xc9, - 0x30, 0x47, 0x68, 0xb1, 0x81, 0x2f, 0x90, 0x82, 0x73, 0x93, 0xa7, 0x65, 0xb4, 0x49, 0xa3, 0x28, - 0x65, 0x34, 0x3f, 0xc1, 0xcb, 0xbd, 0xec, 0x45, 0xcf, 0x75, 0x73, 0x93, 0x14, 0xe5, 0x66, 0x70, - 0x94, 0x28, 0xdf, 0xbc, 0x5f, 0x44, 0x8e, 0x7c, 0xd4, 0x9d, 0x0c, 0xdf, 0xe3, 0x29, 0x47, 0x89, - 0x53, 0x8e, 0xdb, 0x05, 0xc4, 0x9b, 0xbc, 0x8a, 0xfc, 0x75, 0x1e, 0x80, 0x8a, 0xb1, 0x67, 0x6e, - 0x51, 0xb3, 0xda, 0x57, 0xdc, 0x39, 0x11, 0x33, 0x80, 0xfd, 0x44, 0xa0, 0x2b, 0xb8, 0x0b, 0xe4, - 0x59, 0xcb, 0x67, 0x35, 0x79, 0x21, 0x57, 0x13, 0x9f, 0x0a, 0x1d, 0xc4, 0x2e, 0x3a, 0x9a, 0xfb, - 0x3d, 0x17, 0x22, 0x3e, 0xdd, 0x15, 0x22, 0xbe, 0xe7, 0x0a, 0x3e, 0x2c, 0x70, 0x3c, 0xfc, 0x44, - 0xec, 0xe8, 0xa8, 0x01, 0x7e, 0x02, 0x35, 0x0a, 0xd1, 0xdf, 0x3b, 0x41, 0xde, 0xf2, 0x2c, 0x81, - 0x52, 0xe8, 0x92, 0xb1, 0xdc, 0xda, 0xb4, 0x34, 0xf7, 0xcb, 0x98, 0x71, 0x4f, 0x63, 0xf1, 0x91, - 0x3c, 0xd0, 0x5f, 0x90, 0xc0, 0xf1, 0x45, 0x37, 0x3a, 0x11, 0xae, 0xc7, 0x59, 0xd3, 0xd9, 0x5e, - 0x36, 0x5b, 0xe7, 0x3b, 0xf0, 0x5f, 0xc5, 0x5b, 0xec, 0x05, 0xf0, 0x4f, 0x8b, 0xe1, 0xcf, 0x1f, - 0x67, 0xab, 0xf1, 0xa8, 0xdd, 0x17, 0x46, 0xa5, 0x37, 0xb7, 0x21, 0x00, 0xde, 0x0d, 0x72, 0x94, - 0x51, 0xd6, 0x03, 0xcd, 0x86, 0xe2, 0xe7, 0x51, 0xd2, 0x58, 0x0e, 0xf8, 0xa4, 0x87, 0xe3, 0x19, - 0x0e, 0xc7, 0xf9, 0x03, 0x71, 0x96, 0xfc, 0x71, 0xb6, 0x3b, 0x40, 0x9e, 0x49, 0x5a, 0x99, 0x0e, - 0xb6, 0x62, 0xf9, 0x88, 0x02, 0x40, 0x6e, 0xc5, 0xda, 0x43, 0xba, 0x25, 0xa7, 0xf0, 0x7f, 0xcc, - 0x9f, 0x6e, 0xc9, 0x69, 0xf8, 0x5f, 0x01, 0x18, 0xf3, 0xce, 0xb5, 0x7e, 0x39, 0xed, 0x5e, 0x7d, - 0x46, 0x76, 0x32, 0xa8, 0x30, 0x62, 0x3b, 0x5c, 0xbc, 0x25, 0xb6, 0x6d, 0xdc, 0x3b, 0x6f, 0xda, - 0x5d, 0x58, 0xcc, 0x5b, 0x85, 0x3e, 0x14, 0xcb, 0x56, 0x1e, 0xb7, 0x94, 0xe4, 0x9b, 0xda, 0x37, - 0xd2, 0xee, 0x05, 0x93, 0x3e, 0x13, 0x64, 0x8b, 0xf8, 0xc5, 0xbe, 0x6c, 0x4f, 0xb8, 0x66, 0x2a, - 0xdd, 0x75, 0x7a, 0x1e, 0xd7, 0x02, 0x29, 0xf0, 0xf1, 0xd8, 0x9b, 0xf3, 0xa1, 0xf5, 0x8e, 0x88, - 0x80, 0xd6, 0x2d, 0xe1, 0x78, 0xdb, 0xef, 0x22, 0x25, 0x25, 0x2f, 0xe5, 0x8f, 0xd3, 0x3b, 0xc8, - 0x5b, 0x02, 0x3e, 0x42, 0xaf, 0x0e, 0x0a, 0xf5, 0x41, 0x5e, 0xa8, 0xb7, 0x84, 0x54, 0x15, 0x97, - 0x10, 0x53, 0x8a, 0xef, 0xf6, 0xa4, 0x58, 0xe4, 0xa4, 0x78, 0x32, 0x3e, 0xe9, 0xe4, 0xc5, 0xf6, - 0xcd, 0x34, 0x18, 0xa7, 0xc7, 0x6f, 0x0b, 0xcd, 0x26, 0xbc, 0x26, 0xf2, 0x04, 0x36, 0xfc, 0xf7, - 0xb1, 0x3d, 0x08, 0xbd, 0x5a, 0x79, 0xb4, 0x05, 0xce, 0x21, 0x8b, 0x39, 0xb4, 0xc5, 0xb3, 0x01, - 0xf6, 0x65, 0x28, 0x79, 0x51, 0xff, 0x61, 0x1a, 0x4f, 0xa6, 0x5a, 0xe7, 0x57, 0x6d, 0xb4, 0x67, - 0xa2, 0x0b, 0xf0, 0xaa, 0x08, 0x2b, 0x05, 0x7c, 0x7f, 0xec, 0x00, 0x3b, 0x01, 0x92, 0x21, 0x32, - 0xbe, 0x17, 0x4c, 0x34, 0xfd, 0x8f, 0xd8, 0x88, 0x08, 0xbb, 0x46, 0xc4, 0x00, 0x19, 0x2d, 0xf8, - 0x79, 0x4c, 0x43, 0x40, 0x38, 0x17, 0xc9, 0x0b, 0xf6, 0x2f, 0x73, 0x60, 0x6c, 0xad, 0xd5, 0x69, - 0x37, 0x8d, 0xce, 0x36, 0xfc, 0x47, 0xc9, 0xbb, 0x1f, 0xe9, 0x65, 0xdc, 0x89, 0xab, 0x1f, 0xdc, - 0x45, 0xb6, 0xbb, 0xed, 0x48, 0x1f, 0x7a, 0xdf, 0x4e, 0x03, 0x7f, 0x55, 0x8a, 0xbb, 0x18, 0x72, - 0x0b, 0x8d, 0xbe, 0x38, 0xa8, 0x0c, 0xc6, 0xda, 0x66, 0xdd, 0xd9, 0xb5, 0xbd, 0x7b, 0x54, 0x5e, - 0x12, 0x8f, 0xca, 0x2a, 0xcd, 0xa5, 0x79, 0xd9, 0xa1, 0x01, 0xf2, 0x2c, 0x71, 0x9f, 0xc5, 0x78, - 0xdf, 0x5d, 0x89, 0xe4, 0x70, 0xab, 0xed, 0x98, 0x1d, 0xf7, 0x1a, 0x26, 0xf6, 0x84, 0x3b, 0x45, - 0xfa, 0x6f, 0xcd, 0x6e, 0xba, 0xe7, 0x2c, 0xbd, 0x04, 0xf8, 0x74, 0xac, 0x75, 0x4a, 0x74, 0xcd, - 0xc5, 0x20, 0x3f, 0x3d, 0x80, 0xad, 0xe2, 0x4a, 0x70, 0xb9, 0x56, 0xd0, 0xd5, 0xf5, 0xe5, 0xf2, - 0x4a, 0x59, 0x5f, 0x57, 0xbf, 0xaf, 0xa8, 0xaa, 0x25, 0xb5, 0x24, 0x37, 0xc8, 0xb5, 0xcb, 0x9e, - 0x51, 0x88, 0x1f, 0x09, 0x98, 0x14, 0xfd, 0x91, 0xc0, 0x4b, 0x80, 0x3f, 0x1f, 0xfb, 0x64, 0x97, - 0x57, 0xf1, 0x3e, 0xe6, 0xa0, 0x5e, 0x26, 0xb5, 0x4f, 0xc5, 0x3a, 0xa2, 0xd5, 0xaf, 0x84, 0x43, - 0x14, 0xee, 0xb7, 0x5e, 0x09, 0xb2, 0xc4, 0x3a, 0x03, 0x3f, 0x4a, 0x2e, 0xbf, 0x69, 0x37, 0x8d, - 0x3a, 0x82, 0x3b, 0x02, 0x87, 0x6a, 0x36, 0x70, 0x6e, 0xff, 0x50, 0x0d, 0x7b, 0x54, 0x6e, 0x01, - 0x59, 0xf2, 0x97, 0xf5, 0xf8, 0xc7, 0x7a, 0x59, 0x84, 0x34, 0xfa, 0x09, 0xef, 0x3b, 0x1a, 0x69, - 0xb6, 0xa3, 0x86, 0x24, 0xc6, 0x66, 0x08, 0x4e, 0xe1, 0x3c, 0x89, 0x8d, 0x42, 0xf1, 0xae, 0xfa, - 0x8a, 0xe2, 0x28, 0xf9, 0x7e, 0xf2, 0x8f, 0x33, 0x20, 0x5b, 0x6b, 0x37, 0x4d, 0x07, 0xfe, 0x5c, - 0x7a, 0x28, 0x98, 0xd9, 0x46, 0x8b, 0xd9, 0x54, 0xf6, 0x63, 0xa6, 0xe1, 0x77, 0x1a, 0xfd, 0xc4, - 0xb7, 0x75, 0x67, 0x62, 0xd8, 0xba, 0x75, 0x74, 0xd1, 0xe1, 0x6c, 0xdd, 0xca, 0x5d, 0xec, 0x68, - 0x7a, 0xb6, 0x47, 0x64, 0x17, 0x9a, 0x97, 0x54, 0xab, 0x47, 0xcc, 0x80, 0xd9, 0x3b, 0xd8, 0xd1, - 0x6b, 0x00, 0x72, 0xf3, 0x55, 0x5d, 0xaf, 0xae, 0xc8, 0x47, 0xc8, 0x39, 0xbf, 0xea, 0xaa, 0x9c, - 0x52, 0xc6, 0x41, 0xb6, 0x5c, 0xa9, 0xa8, 0x9a, 0x9c, 0x26, 0x87, 0xc1, 0xcb, 0xfa, 0xb2, 0x2a, - 0x4b, 0xf0, 0x63, 0xb1, 0x87, 0x5e, 0xbe, 0xec, 0x24, 0xd5, 0x2b, 0xde, 0x20, 0x1c, 0xce, 0x4f, - 0xf2, 0xca, 0xf5, 0xb3, 0x12, 0xc8, 0xae, 0x20, 0x7b, 0x0b, 0xc1, 0x1f, 0x14, 0x30, 0x17, 0x6f, - 0x9a, 0x76, 0x87, 0x1e, 0x9d, 0xf7, 0xcd, 0xc5, 0xc1, 0x34, 0xe5, 0x7a, 0x30, 0xd5, 0x41, 0x75, - 0xab, 0xd5, 0x70, 0x3f, 0x62, 0x71, 0xa1, 0xb9, 0x44, 0xf8, 0xa8, 0x20, 0x64, 0x84, 0xd1, 0xa1, - 0xd8, 0x7c, 0x45, 0x80, 0xe9, 0x55, 0x6a, 0xf2, 0xc0, 0xfc, 0x9d, 0x84, 0x33, 0xb5, 0x2f, 0xc1, - 0x47, 0x63, 0xdb, 0xf1, 0x6f, 0x03, 0x39, 0xa2, 0xa6, 0xee, 0x7c, 0xa5, 0x77, 0x7f, 0xcc, 0xbe, - 0x51, 0xe6, 0xc1, 0x65, 0x1d, 0xd4, 0x44, 0x75, 0x07, 0x35, 0x70, 0xd3, 0xd5, 0xfa, 0x76, 0x0a, - 0xfb, 0x3f, 0x87, 0x7f, 0x10, 0x04, 0xf0, 0x5e, 0x1e, 0xc0, 0x1b, 0x7b, 0x88, 0x12, 0x57, 0x28, - 0xfc, 0x7e, 0x5c, 0x5c, 0x8d, 0x5a, 0xd3, 0xf2, 0x8c, 0x8b, 0xee, 0x33, 0x7e, 0xb7, 0xed, 0xec, - 0x34, 0xc9, 0x3b, 0xe6, 0xe5, 0xe4, 0x3e, 0x2b, 0x73, 0x20, 0x6f, 0xb4, 0x2e, 0x91, 0x57, 0x99, - 0x88, 0x5a, 0xbb, 0x1f, 0xc1, 0x77, 0x78, 0xc8, 0x3f, 0xc0, 0x21, 0x7f, 0x6b, 0x3c, 0x76, 0x47, - 0x70, 0x77, 0x41, 0x0e, 0x64, 0x57, 0x8d, 0x8e, 0x83, 0xe0, 0x9f, 0x48, 0x71, 0x91, 0xbf, 0x11, - 0x4c, 0x6f, 0x5a, 0xf5, 0xdd, 0x0e, 0x6a, 0xf0, 0x8d, 0xb2, 0x2b, 0x75, 0x18, 0x98, 0x2b, 0xb7, - 0x00, 0xd9, 0x4d, 0x64, 0x64, 0xdd, 0x0d, 0x9d, 0x7d, 0xe9, 0x24, 0x18, 0x57, 0x67, 0xd5, 0xb0, - 0x9d, 0xea, 0x26, 0x49, 0xf3, 0x82, 0x71, 0x05, 0x13, 0x39, 0xe8, 0x73, 0x11, 0xd0, 0xe7, 0xc3, - 0xa1, 0x1f, 0x8b, 0x01, 0xbd, 0x52, 0x00, 0x63, 0x9b, 0x66, 0x13, 0x91, 0x0c, 0xe3, 0x3d, 0x02, - 0x5d, 0xb3, 0x1d, 0x2c, 0x2c, 0x7b, 0x6f, 0x4c, 0x5a, 0x30, 0x9b, 0x48, 0xf3, 0xb2, 0xc1, 0x65, - 0xea, 0x0f, 0xe2, 0xdd, 0x48, 0x99, 0x0a, 0xdc, 0x48, 0xa9, 0x80, 0x4c, 0xc3, 0x70, 0x0c, 0x22, - 0xfa, 0x49, 0x8d, 0xfc, 0xe7, 0xb7, 0x17, 0xa5, 0xee, 0xed, 0xc5, 0xd7, 0x49, 0x62, 0xfd, 0x9f, - 0xcb, 0x5a, 0x48, 0xfb, 0xd9, 0x70, 0xe1, 0xa0, 0x8e, 0x82, 0xde, 0x33, 0x86, 0xa1, 0x6e, 0xd8, - 0xc8, 0x59, 0x0d, 0xee, 0xe0, 0x65, 0x35, 0x3e, 0x91, 0x38, 0x45, 0x74, 0x6a, 0xc6, 0x0e, 0x22, - 0x85, 0x15, 0xf1, 0x3b, 0xb6, 0x0d, 0xbe, 0x2f, 0xdd, 0xef, 0x6d, 0xb3, 0xc3, 0xee, 0x6d, 0x7b, - 0xd5, 0x31, 0xf9, 0x46, 0xf7, 0xae, 0x0c, 0x90, 0x8a, 0xbb, 0xce, 0xf3, 0xba, 0xb3, 0xfd, 0xa7, - 0xd8, 0xfb, 0xa3, 0xac, 0xf7, 0x0a, 0xbd, 0x05, 0x69, 0x44, 0x7d, 0xad, 0xa0, 0x96, 0xc4, 0xdb, - 0x87, 0x0d, 0xab, 0xdb, 0x48, 0xce, 0x70, 0xb9, 0xae, 0x2a, 0xd6, 0xc1, 0xe7, 0xe1, 0x90, 0x76, - 0x46, 0x81, 0x8e, 0xc1, 0x7b, 0x76, 0x8d, 0x02, 0x19, 0xdf, 0xae, 0xf4, 0xb6, 0xd8, 0xce, 0x62, - 0x54, 0x3e, 0x91, 0x7e, 0x23, 0x62, 0x53, 0xa5, 0x78, 0xc1, 0xe1, 0x23, 0x8a, 0x4d, 0x1e, 0x99, - 0xe7, 0x82, 0xd6, 0x83, 0xc2, 0x81, 0xb1, 0xe1, 0xcd, 0xf6, 0x91, 0x16, 0x66, 0x5a, 0xed, 0x3e, - 0x46, 0x05, 0x31, 0x79, 0xc7, 0xb3, 0x3f, 0x47, 0x16, 0x3c, 0x82, 0x53, 0x73, 0x12, 0xc8, 0xd1, - 0xfd, 0x03, 0xf8, 0x8b, 0x29, 0x81, 0xdb, 0x7d, 0x1c, 0xde, 0xc7, 0xc4, 0x7b, 0x16, 0x31, 0x25, - 0x70, 0xbe, 0x28, 0x19, 0x21, 0x5f, 0x14, 0xde, 0xa5, 0x3c, 0x46, 0x3b, 0xa2, 0x75, 0x4c, 0x78, - 0x95, 0x28, 0xd2, 0xc2, 0x7a, 0x32, 0x94, 0x3c, 0xde, 0x6f, 0xc8, 0x82, 0x49, 0x5a, 0xf4, 0x59, - 0xb3, 0xb1, 0x85, 0x1c, 0xf8, 0xf1, 0xf4, 0x77, 0x0f, 0xea, 0x4a, 0x05, 0x4c, 0x5e, 0x20, 0x6c, - 0xd3, 0x0b, 0xfa, 0x98, 0x41, 0x22, 0xfa, 0x42, 0x66, 0x5a, 0x4f, 0xf7, 0x42, 0x42, 0x2e, 0x3f, - 0x96, 0x31, 0xdd, 0xe4, 0xa3, 0xfe, 0x25, 0x39, 0x32, 0x9b, 0x0a, 0x26, 0x29, 0xc7, 0x41, 0x6e, - 0xcf, 0x44, 0x17, 0xca, 0x0d, 0x36, 0x69, 0x65, 0x4f, 0xf0, 0xd3, 0xb1, 0xb7, 0x62, 0x82, 0x70, - 0x33, 0x5e, 0x92, 0xd5, 0xc2, 0x78, 0x1b, 0x32, 0x7d, 0xd9, 0x1a, 0xc1, 0xf1, 0x06, 0x3e, 0x10, - 0xbc, 0xc8, 0xe5, 0x62, 0x61, 0x33, 0x64, 0x81, 0x1b, 0xde, 0xa8, 0x00, 0x86, 0x1c, 0x23, 0x3e, - 0xde, 0xb9, 0xa5, 0x3e, 0x45, 0x27, 0x2f, 0xf9, 0xf7, 0xd0, 0xfb, 0x3f, 0x17, 0x4c, 0xd4, 0x6c, - 0x74, 0xa0, 0x7d, 0xf0, 0x49, 0xd0, 0x49, 0x90, 0xdb, 0x24, 0xc4, 0x98, 0x8a, 0x86, 0x5e, 0x44, - 0xcb, 0x3e, 0x83, 0xef, 0x4a, 0xc7, 0xdd, 0xe4, 0x61, 0x46, 0x35, 0x97, 0xdb, 0xa1, 0xc0, 0x14, - 0xcf, 0x19, 0x2c, 0xba, 0xe4, 0x11, 0x84, 0xd2, 0x92, 0xc0, 0x24, 0x0b, 0xc0, 0x5e, 0x68, 0x9a, - 0x5b, 0xad, 0xe0, 0x49, 0xda, 0x81, 0x5b, 0x88, 0x72, 0x3b, 0xc8, 0x1a, 0x98, 0x1a, 0xf3, 0xfe, - 0x84, 0x3d, 0x3b, 0x4f, 0x52, 0x9e, 0x46, 0x3f, 0x14, 0x08, 0x5c, 0xe3, 0x2b, 0xb6, 0xcb, 0xf3, - 0x08, 0x03, 0xd7, 0xf4, 0x2d, 0x3c, 0x79, 0xc4, 0xfe, 0x4c, 0x02, 0xc7, 0x18, 0x03, 0x67, 0x90, - 0xed, 0x98, 0x75, 0xa3, 0x49, 0x91, 0x7b, 0x63, 0x6a, 0x18, 0xd0, 0x2d, 0x81, 0xa9, 0xbd, 0x20, - 0x59, 0x06, 0xe1, 0x6c, 0x4f, 0x08, 0x39, 0x06, 0x34, 0x3e, 0xa3, 0x40, 0x00, 0x10, 0x4e, 0xaa, - 0x1c, 0xcd, 0x11, 0x06, 0x00, 0x89, 0xcd, 0x44, 0xf2, 0x10, 0xff, 0x4c, 0x86, 0xc6, 0xc4, 0xf1, - 0xbb, 0xcf, 0xaf, 0xc4, 0xc6, 0x76, 0x0d, 0x4c, 0x10, 0x2c, 0x69, 0x46, 0x66, 0x6f, 0x88, 0x50, - 0x62, 0xaf, 0xdf, 0x61, 0x21, 0xc3, 0xbd, 0xbc, 0x5a, 0x90, 0x0e, 0x3c, 0x0b, 0x80, 0xff, 0x2a, - 0xd8, 0x49, 0xa7, 0xc2, 0x3a, 0xe9, 0x74, 0xbc, 0x4e, 0xfa, 0xfd, 0xb1, 0xcf, 0x6d, 0xf6, 0x66, - 0xfb, 0xe0, 0xea, 0x11, 0xef, 0xc4, 0x5e, 0xff, 0xd2, 0x93, 0xd7, 0x8b, 0x77, 0x64, 0xba, 0xaf, - 0x08, 0xfa, 0xad, 0xa1, 0xac, 0xa7, 0x82, 0xfd, 0x81, 0xd4, 0xd5, 0x1f, 0x1c, 0x60, 0x26, 0x7d, - 0x33, 0x38, 0x4a, 0x8b, 0x28, 0x7a, 0x6c, 0x65, 0xe9, 0xf5, 0xf8, 0x5d, 0xc9, 0xf0, 0x33, 0x03, - 0x28, 0x41, 0xbf, 0xfb, 0x8b, 0xa2, 0x3a, 0x39, 0xb1, 0xc9, 0xae, 0xa8, 0x82, 0x1c, 0xde, 0xb5, - 0x47, 0xdf, 0xcc, 0xd0, 0xd9, 0xee, 0x1a, 0x89, 0xea, 0x0e, 0xff, 0x28, 0x33, 0x8c, 0x11, 0xe1, - 0x41, 0x90, 0x21, 0x1e, 0xc0, 0x52, 0xa8, 0x49, 0xc3, 0x2f, 0xd2, 0x8f, 0x07, 0x8f, 0x2e, 0x3a, - 0x4b, 0x47, 0x34, 0x92, 0x53, 0xb9, 0x05, 0x1c, 0xdd, 0x30, 0xea, 0xe7, 0xb7, 0x6c, 0x6b, 0x97, - 0x84, 0xec, 0xb6, 0x58, 0xec, 0x6f, 0x72, 0x21, 0x01, 0xff, 0x42, 0x39, 0xe5, 0x4e, 0x1d, 0xb2, - 0xfd, 0xa6, 0x0e, 0x4b, 0x47, 0xd8, 0xe4, 0x41, 0xb9, 0xc3, 0xeb, 0x74, 0x72, 0x91, 0x9d, 0xce, - 0xd2, 0x11, 0xb7, 0xdb, 0x51, 0x4a, 0x60, 0xac, 0x61, 0xee, 0x91, 0x1d, 0x68, 0xb2, 0xea, 0xea, - 0x77, 0x0e, 0xac, 0x64, 0xee, 0xd1, 0xfd, 0xea, 0xa5, 0x23, 0x9a, 0x97, 0x53, 0x59, 0x04, 0xe3, - 0xc4, 0xda, 0x4f, 0xc8, 0x8c, 0x09, 0x9d, 0xf1, 0x5a, 0x3a, 0xa2, 0xf9, 0x79, 0xf1, 0xec, 0x23, - 0x43, 0x5c, 0xe3, 0x1f, 0x70, 0x77, 0xd1, 0x53, 0x42, 0xbb, 0xe8, 0x58, 0x16, 0x74, 0x1f, 0xfd, - 0x38, 0xc8, 0xd6, 0x89, 0x84, 0xd3, 0x4c, 0xc2, 0xf4, 0x51, 0xb9, 0x17, 0x64, 0x76, 0x0c, 0xdb, - 0x5d, 0x3c, 0xdf, 0xd8, 0x9f, 0xee, 0x8a, 0x61, 0x9f, 0xc7, 0x08, 0xe2, 0x5c, 0xf3, 0x79, 0x90, - 0x25, 0x82, 0xf3, 0xfe, 0xc0, 0x67, 0xd8, 0x34, 0xa4, 0x68, 0xb5, 0xf0, 0xb0, 0xaf, 0x5b, 0xee, - 0xf9, 0x81, 0xfa, 0x30, 0x74, 0x8e, 0xf7, 0x95, 0x95, 0xf6, 0xf9, 0xca, 0xfe, 0xc1, 0x00, 0x73, - 0x8b, 0x6e, 0x4e, 0xc3, 0x97, 0xc8, 0x4d, 0xb3, 0x15, 0xe0, 0xca, 0x7d, 0x14, 0xec, 0x35, 0x44, - 0x67, 0x1d, 0x7d, 0xd8, 0x4b, 0xbe, 0xf3, 0xf8, 0x40, 0x06, 0xcc, 0x60, 0x46, 0xa8, 0x17, 0x39, - 0x7f, 0x25, 0x04, 0xfc, 0xbd, 0xa1, 0x4c, 0x2e, 0x7b, 0x8c, 0x08, 0x52, 0xcf, 0x11, 0x61, 0xdf, - 0x31, 0xb3, 0x4c, 0x9f, 0x63, 0x66, 0x59, 0x31, 0xd3, 0xde, 0xaf, 0x07, 0xf5, 0x67, 0x95, 0xd7, - 0x9f, 0xbb, 0x43, 0x00, 0xea, 0x25, 0x97, 0xa1, 0x4c, 0x40, 0x3e, 0xea, 0x69, 0x4a, 0x8d, 0xd3, - 0x94, 0x07, 0x06, 0x67, 0x24, 0x79, 0x6d, 0xf9, 0xb5, 0x0c, 0xb8, 0xdc, 0x67, 0xa6, 0x82, 0x2e, - 0x30, 0x45, 0xf9, 0xf2, 0x50, 0x14, 0xe5, 0x0e, 0xff, 0x96, 0xe1, 0x3e, 0x8b, 0x7d, 0xf7, 0xbb, - 0xa4, 0x35, 0xe6, 0xf7, 0x63, 0x9f, 0x7d, 0xe8, 0x06, 0xca, 0x93, 0x4d, 0x88, 0xb2, 0x1c, 0x07, - 0x39, 0xda, 0xc3, 0x30, 0x68, 0xd8, 0x93, 0x60, 0x77, 0x13, 0xef, 0xc4, 0x44, 0x5c, 0xde, 0x46, - 0xa0, 0x3f, 0xcc, 0xf0, 0xa0, 0xef, 0xda, 0xad, 0x72, 0xcb, 0xb1, 0xe0, 0xbf, 0x1d, 0x8a, 0xe2, - 0x78, 0x5e, 0x68, 0xd2, 0x20, 0x5e, 0x68, 0x03, 0x99, 0x21, 0xdc, 0x1a, 0x1c, 0x8a, 0x19, 0x22, - 0xa4, 0xf0, 0xe4, 0xf1, 0xfb, 0x88, 0x04, 0x8e, 0xb3, 0xd5, 0xd0, 0x3c, 0x3f, 0x85, 0x83, 0xe7, - 0x86, 0x01, 0xe4, 0x31, 0x77, 0x1e, 0x43, 0x07, 0x08, 0xfa, 0xc0, 0x9f, 0x4e, 0x88, 0x0c, 0xf9, - 0xca, 0xad, 0xd7, 0xba, 0x38, 0x1c, 0x0a, 0x52, 0xf1, 0x22, 0xbd, 0x0a, 0xb0, 0x91, 0x3c, 0x66, - 0xff, 0x4e, 0x02, 0x39, 0x76, 0x11, 0xdf, 0x5a, 0x22, 0xae, 0x0b, 0x7c, 0x78, 0xaf, 0x18, 0x5b, - 0x66, 0xc2, 0xf7, 0xd7, 0x25, 0xb7, 0x59, 0x76, 0x38, 0x17, 0xd4, 0xc1, 0x47, 0x25, 0x66, 0x59, - 0x59, 0x36, 0x1c, 0x74, 0x11, 0xfe, 0x98, 0x04, 0xf2, 0x35, 0xe4, 0xe0, 0x9e, 0x29, 0x3e, 0x46, - 0xe1, 0x36, 0x73, 0x25, 0xb0, 0x76, 0x1b, 0xa7, 0xab, 0x31, 0xd1, 0x3e, 0x8e, 0xf0, 0x35, 0xc7, - 0x78, 0x1a, 0x75, 0x1f, 0x17, 0x55, 0xf8, 0x08, 0x4e, 0x4a, 0x5f, 0x0f, 0xc6, 0x09, 0x1b, 0x04, - 0x8e, 0xcf, 0x06, 0xa0, 0x79, 0x73, 0x2a, 0x11, 0x6c, 0xf0, 0xf0, 0x45, 0xae, 0x1a, 0x63, 0x97, - 0xe5, 0xdd, 0x14, 0x6f, 0x99, 0xd6, 0xd1, 0x68, 0x2e, 0x81, 0xeb, 0x8b, 0xbd, 0x6a, 0x0d, 0x15, - 0xd9, 0x78, 0xb7, 0x42, 0xf6, 0x2b, 0x3b, 0x79, 0x60, 0xdf, 0x28, 0x81, 0xb1, 0x1a, 0x5e, 0x6e, - 0xe0, 0x31, 0xe5, 0xec, 0xc1, 0xa1, 0xec, 0x3d, 0x58, 0x09, 0x36, 0x34, 0x57, 0x22, 0xc3, 0x1b, - 0xa2, 0x04, 0x1a, 0x5a, 0x54, 0xe1, 0xc9, 0xe3, 0xf1, 0x31, 0x8a, 0x07, 0xd1, 0x65, 0xf8, 0x5e, - 0x09, 0x48, 0x8b, 0xc8, 0x19, 0xd2, 0x99, 0x93, 0xb8, 0xe7, 0x17, 0xf8, 0xa1, 0x2b, 0x32, 0xcc, - 0x00, 0x27, 0x30, 0xc2, 0xf3, 0xdc, 0x22, 0x1a, 0x4e, 0x03, 0x8a, 0x17, 0x5f, 0x20, 0x16, 0x03, - 0xc9, 0xa3, 0xf6, 0x49, 0x8a, 0x1a, 0xb5, 0x60, 0xfd, 0xc8, 0x10, 0x7a, 0xc4, 0xd1, 0x4e, 0xde, - 0x5d, 0x01, 0x12, 0x1a, 0x87, 0xd5, 0xde, 0x7a, 0x15, 0x3e, 0x12, 0xef, 0x44, 0x80, 0x1b, 0xfb, - 0x36, 0xaa, 0x9f, 0x47, 0x0d, 0xf8, 0xfd, 0x07, 0x87, 0x6e, 0x06, 0xe4, 0xeb, 0x94, 0x1a, 0xbb, - 0x02, 0xd2, 0x7d, 0x14, 0xb8, 0x2e, 0x89, 0xef, 0x88, 0x68, 0xf6, 0x11, 0x5e, 0x97, 0x14, 0xa3, - 0xf8, 0xe4, 0x91, 0xf9, 0x65, 0x3a, 0xc9, 0x28, 0xd7, 0xad, 0x16, 0xfc, 0xa1, 0x83, 0xc3, 0x72, - 0x35, 0x18, 0x37, 0xeb, 0x56, 0xab, 0xbc, 0xe3, 0x06, 0xc6, 0x19, 0xd7, 0xfc, 0x04, 0xf7, 0xad, - 0xba, 0x63, 0x3d, 0x6c, 0xb2, 0xad, 0x19, 0x3f, 0x61, 0xd0, 0xc9, 0x04, 0x66, 0xfd, 0xb0, 0x26, - 0x13, 0x3d, 0xca, 0x4e, 0x1e, 0xb2, 0xcf, 0xf8, 0x2e, 0x14, 0xb4, 0x2b, 0x7c, 0x5e, 0x58, 0x32, - 0x06, 0x19, 0xce, 0x82, 0xb5, 0x38, 0x94, 0xe1, 0x2c, 0x82, 0x81, 0xe4, 0x71, 0x7c, 0x9b, 0x8f, - 0x63, 0xe2, 0x76, 0x8c, 0x03, 0xa0, 0x33, 0xbc, 0xe9, 0xe1, 0x80, 0xe8, 0x1c, 0xce, 0x14, 0xf1, - 0x53, 0x2c, 0x4c, 0x15, 0x9b, 0xf1, 0xc0, 0x1f, 0x1e, 0x06, 0x38, 0x77, 0x0f, 0xb2, 0x29, 0x46, - 0xb7, 0xc4, 0x04, 0x2e, 0x7a, 0xda, 0x27, 0x41, 0x4c, 0x65, 0x84, 0x57, 0xa0, 0xc5, 0x29, 0x3f, - 0x79, 0x00, 0x7f, 0x5c, 0x02, 0xd3, 0x64, 0x9f, 0xab, 0x89, 0x0c, 0x9b, 0x76, 0x94, 0x43, 0xf1, - 0xc6, 0xfc, 0x58, 0xec, 0x3b, 0x18, 0x78, 0x39, 0xf8, 0x7c, 0x0c, 0x05, 0x8a, 0x0f, 0xc6, 0xba, - 0x76, 0x21, 0x26, 0x0b, 0x23, 0x31, 0x05, 0xca, 0x1e, 0x0b, 0x4c, 0xc5, 0x87, 0x83, 0x87, 0xa0, - 0xdb, 0x17, 0x2f, 0x0c, 0xb7, 0xb1, 0x8d, 0xd8, 0xed, 0x2b, 0x0e, 0x13, 0x23, 0x88, 0xf4, 0x7f, - 0x3b, 0x33, 0x05, 0xea, 0xe4, 0x1e, 0xb4, 0xc7, 0x33, 0xde, 0xb1, 0x89, 0x2f, 0x0e, 0xc5, 0xcd, - 0xe7, 0x00, 0x61, 0x39, 0x15, 0x90, 0xb1, 0xad, 0x0b, 0xd4, 0x2c, 0x35, 0xa5, 0x91, 0xff, 0x64, - 0xca, 0x1f, 0xb8, 0x9d, 0x7d, 0x4a, 0x73, 0x1f, 0x95, 0xeb, 0xc1, 0xd4, 0x05, 0xd3, 0xd9, 0x5e, - 0x42, 0x46, 0x03, 0xd9, 0x9a, 0x75, 0x81, 0xb8, 0x65, 0x8c, 0x69, 0x7c, 0x22, 0xbf, 0x07, 0x1b, - 0x63, 0x7e, 0x49, 0x2e, 0x47, 0x1b, 0xc9, 0x19, 0x0b, 0x91, 0x99, 0x67, 0x38, 0x57, 0xc9, 0x2b, - 0xcc, 0x53, 0x12, 0x18, 0xd7, 0xac, 0x0b, 0x4c, 0x49, 0xfe, 0xcd, 0xe1, 0xea, 0x88, 0xf0, 0x42, - 0x8f, 0x5e, 0x76, 0xe7, 0xb2, 0x3f, 0xf2, 0x85, 0x5e, 0x64, 0xf1, 0x23, 0x71, 0x8f, 0x9f, 0xd4, - 0xac, 0x0b, 0x35, 0xe4, 0xd0, 0x16, 0x11, 0xff, 0xde, 0xe2, 0x3e, 0x9e, 0x7c, 0x66, 0x87, 0x12, - 0x64, 0xeb, 0x70, 0xef, 0x59, 0xe0, 0xde, 0x5c, 0x5e, 0x40, 0x1e, 0x8b, 0x23, 0xbc, 0x37, 0x37, - 0x1e, 0x07, 0xc9, 0xa3, 0xf4, 0x1a, 0x09, 0x4c, 0x68, 0xd6, 0x05, 0x3c, 0x34, 0x2c, 0x98, 0xcd, - 0xe6, 0x70, 0x46, 0x48, 0xd1, 0xc9, 0xbf, 0x2b, 0x06, 0x97, 0x8b, 0x91, 0x4f, 0xfe, 0xfb, 0x30, - 0x90, 0x3c, 0x0c, 0xaf, 0xa3, 0x8d, 0xc5, 0x1d, 0xa1, 0x5b, 0xc3, 0xc1, 0x61, 0xd0, 0x06, 0xe1, - 0xb1, 0x71, 0x68, 0x0d, 0x22, 0x8c, 0x83, 0x91, 0xec, 0x9c, 0x4c, 0x17, 0xc9, 0x30, 0x3f, 0xdc, - 0x36, 0xf1, 0xa4, 0x98, 0x7b, 0x0d, 0x1b, 0x76, 0x39, 0x46, 0x86, 0x82, 0x86, 0x80, 0x1b, 0x4d, - 0x0c, 0x1e, 0x92, 0xc7, 0xe3, 0x37, 0x24, 0x30, 0x49, 0x59, 0x78, 0x9e, 0xcc, 0x02, 0x06, 0x6a, - 0x54, 0xc1, 0x1a, 0x1c, 0x4e, 0xa3, 0x8a, 0xe0, 0x20, 0x79, 0x10, 0xff, 0x4f, 0x9a, 0xcc, 0xe3, - 0x06, 0x38, 0xa3, 0x18, 0x86, 0xe0, 0xc0, 0x93, 0xb1, 0x21, 0x9e, 0x53, 0x1c, 0x64, 0x32, 0x76, - 0x48, 0x67, 0x15, 0x5f, 0xe7, 0xb5, 0xa2, 0x61, 0x62, 0x70, 0x80, 0xa6, 0x30, 0x44, 0x18, 0x06, - 0x6c, 0x0a, 0x87, 0x84, 0xc4, 0x9f, 0x4b, 0x00, 0x50, 0x06, 0x56, 0xac, 0x3d, 0x04, 0xdf, 0x3d, - 0x94, 0x85, 0x6f, 0xb7, 0x6b, 0xa8, 0xd4, 0xc7, 0x35, 0x54, 0x30, 0x4e, 0x80, 0xa8, 0x25, 0x30, - 0x20, 0xe5, 0x95, 0xd0, 0x3b, 0x5c, 0x13, 0xb4, 0x04, 0x46, 0x97, 0x9f, 0x3c, 0xc6, 0x5f, 0xa7, - 0xb3, 0x39, 0xff, 0x14, 0xd3, 0x5b, 0x87, 0x82, 0x72, 0x60, 0xf5, 0x2f, 0xf1, 0xab, 0xff, 0x03, - 0x60, 0x3b, 0xe8, 0x1c, 0xb1, 0xdf, 0xe9, 0xa4, 0xe4, 0xe7, 0x88, 0x87, 0x77, 0x0a, 0xe9, 0x47, - 0x32, 0xe0, 0x28, 0xeb, 0x44, 0xbe, 0x1b, 0x20, 0x16, 0x3c, 0x4b, 0xc2, 0x75, 0x92, 0x7d, 0x50, - 0x1e, 0x96, 0x41, 0x4a, 0xc4, 0x94, 0x19, 0x83, 0xbd, 0x91, 0x58, 0x37, 0x72, 0xea, 0xc5, 0xb6, - 0xd1, 0x6a, 0xc4, 0x0f, 0x15, 0xd9, 0x07, 0x78, 0xd7, 0xd6, 0x28, 0xf1, 0xb6, 0xc6, 0x1e, 0x96, - 0x49, 0xe1, 0x9d, 0x6b, 0x22, 0x32, 0xca, 0xee, 0xc8, 0x77, 0xae, 0xc3, 0xcb, 0x4e, 0x1e, 0xa5, - 0x27, 0x25, 0x90, 0xa9, 0x59, 0xb6, 0x03, 0x5f, 0x2f, 0xd2, 0x3a, 0xa9, 0xe4, 0x7d, 0x90, 0xdc, - 0x67, 0xa5, 0xc8, 0xdd, 0xab, 0x76, 0x32, 0xfa, 0x3c, 0x9d, 0xe1, 0x18, 0x24, 0x90, 0x38, 0x2e, - 0x3f, 0x70, 0xc1, 0x9a, 0x68, 0xd0, 0x06, 0x2a, 0xbf, 0x5a, 0xb8, 0x13, 0x71, 0x62, 0x41, 0x1b, - 0x42, 0x4b, 0x1e, 0x81, 0xdd, 0x77, 0x82, 0xf9, 0xa5, 0x92, 0xeb, 0x26, 0x5f, 0x4f, 0x5d, 0x46, - 0x2a, 0xc6, 0x0e, 0x1a, 0x92, 0xcb, 0x30, 0x89, 0x56, 0x28, 0xf9, 0xd1, 0x0a, 0x45, 0x1b, 0x14, - 0x3d, 0xe5, 0x48, 0x59, 0x1a, 0x75, 0x83, 0x8a, 0x28, 0x3b, 0x79, 0x60, 0xbe, 0x8a, 0x47, 0x3e, - 0xb2, 0x86, 0x2c, 0xb4, 0x1a, 0x2c, 0xfc, 0xdb, 0xdf, 0x1c, 0xf6, 0xde, 0xcd, 0xbe, 0x00, 0x71, - 0x7c, 0xa0, 0xc9, 0x6c, 0xf7, 0xf5, 0x88, 0xf3, 0x34, 0xd8, 0x1c, 0x39, 0x79, 0x99, 0x13, 0xba, - 0x22, 0xd1, 0xcb, 0x07, 0x9f, 0x11, 0x33, 0xe7, 0x10, 0x12, 0x5d, 0x82, 0x4b, 0x78, 0x48, 0x15, - 0x30, 0xf4, 0xc4, 0xe0, 0xee, 0x5f, 0x86, 0x97, 0xd1, 0xfe, 0x1b, 0x2a, 0x05, 0x4d, 0xd9, 0xde, - 0xbd, 0xa2, 0x87, 0xe5, 0x65, 0xd4, 0x8f, 0x81, 0xe4, 0x71, 0x7c, 0x26, 0xcb, 0x36, 0x79, 0x89, - 0x0b, 0x1e, 0xfc, 0x5a, 0x3a, 0xf1, 0xce, 0x3b, 0xfe, 0x9d, 0xcc, 0x3e, 0x5f, 0xd1, 0xbd, 0xb7, - 0x88, 0xa3, 0x6b, 0x14, 0xb9, 0x11, 0x98, 0x13, 0xd2, 0xc4, 0x45, 0xf9, 0xac, 0xd9, 0x70, 0xb6, - 0x87, 0xe4, 0xe8, 0x7f, 0x01, 0xd3, 0x72, 0x6f, 0xae, 0x23, 0x0f, 0xf0, 0x3b, 0x29, 0xa1, 0xf0, - 0x15, 0x9e, 0x48, 0x08, 0x5b, 0x21, 0x22, 0x16, 0x08, 0x3a, 0x11, 0x49, 0x6f, 0x84, 0x1a, 0x7d, - 0xc6, 0x6c, 0x20, 0xeb, 0x79, 0xa8, 0xd1, 0x84, 0xaf, 0xe1, 0x69, 0x74, 0x14, 0xb9, 0x7f, 0xa1, - 0x1a, 0xed, 0x89, 0x64, 0x48, 0x1a, 0x1d, 0x49, 0x6f, 0x04, 0x51, 0xd5, 0x01, 0x9b, 0x5f, 0x2f, - 0x9b, 0xad, 0xf3, 0xf0, 0x73, 0x59, 0xf7, 0xce, 0xbc, 0xb3, 0xa6, 0xb3, 0xcd, 0x8e, 0xb9, 0x7f, - 0x26, 0x76, 0x48, 0xcb, 0x01, 0x8e, 0xb2, 0x9f, 0x00, 0xc0, 0x61, 0x77, 0x59, 0x79, 0x31, 0x73, - 0x02, 0x29, 0x4a, 0x01, 0x4c, 0x99, 0x2d, 0x07, 0xd9, 0x2d, 0xa3, 0xb9, 0xd0, 0x34, 0xb6, 0x3a, - 0x33, 0x79, 0x72, 0x34, 0xf3, 0xaa, 0xae, 0xc1, 0xbb, 0x1c, 0xf8, 0x46, 0xe3, 0x73, 0xc4, 0x9e, - 0x6b, 0x0a, 0x86, 0xfc, 0x39, 0x19, 0x33, 0x12, 0x8b, 0x17, 0xfe, 0xe9, 0x5b, 0x62, 0xc6, 0x17, - 0x0c, 0xc8, 0x5c, 0x37, 0x18, 0xc2, 0x33, 0xc5, 0x60, 0xe5, 0xa5, 0xae, 0xca, 0x7b, 0x53, 0x8f, - 0xcc, 0x90, 0x0d, 0x33, 0x71, 0x58, 0x1f, 0xc1, 0xc9, 0x8f, 0x2c, 0xb8, 0xcc, 0x0d, 0x5f, 0xd7, - 0x6e, 0x23, 0xc3, 0x36, 0x5a, 0x75, 0x24, 0xa0, 0xcd, 0x51, 0x73, 0xc9, 0x05, 0x30, 0x66, 0xd6, - 0xad, 0x56, 0xcd, 0x7c, 0x95, 0x7b, 0x09, 0x4c, 0x74, 0xd4, 0x54, 0x22, 0x91, 0x32, 0xcb, 0xa1, - 0x79, 0x79, 0x95, 0x32, 0x18, 0xaf, 0x1b, 0x76, 0xa3, 0x16, 0xb8, 0x39, 0xfd, 0xd6, 0xfe, 0x84, - 0x8a, 0x6e, 0x16, 0xcd, 0xcf, 0xad, 0x54, 0x79, 0x21, 0xe6, 0xba, 0x4e, 0xff, 0x86, 0x12, 0x2b, - 0xf9, 0x99, 0x38, 0x99, 0x63, 0xe9, 0xd8, 0xa8, 0x49, 0xee, 0xdc, 0xa4, 0xcd, 0x6e, 0x5c, 0xf3, - 0x13, 0xe0, 0x53, 0x41, 0x6d, 0x5e, 0xe1, 0xb5, 0xf9, 0xe5, 0x21, 0x2a, 0xb1, 0x0f, 0x8d, 0xa1, - 0xcc, 0x89, 0x3f, 0xec, 0x29, 0xe6, 0x2a, 0xa7, 0x98, 0xf7, 0x0e, 0xc8, 0x45, 0xf2, 0x9a, 0xf9, - 0xd1, 0x1c, 0x98, 0xa2, 0x87, 0xc9, 0x99, 0x38, 0xe1, 0x8f, 0x93, 0x6b, 0xde, 0x9c, 0xd3, 0xe8, - 0x12, 0xac, 0x1d, 0x7c, 0xa0, 0x93, 0x81, 0x74, 0x1e, 0x5d, 0x62, 0xed, 0x1d, 0xff, 0x15, 0xdd, - 0x23, 0x75, 0xf9, 0x9a, 0xa3, 0x3c, 0x8d, 0x7a, 0x8f, 0x34, 0xba, 0xf8, 0xe4, 0xf1, 0xf9, 0x29, - 0x09, 0x48, 0x85, 0x46, 0x23, 0x7e, 0x7c, 0xa7, 0x70, 0x28, 0xae, 0x05, 0x13, 0x6e, 0x9b, 0x39, - 0xed, 0x41, 0x12, 0x4c, 0x12, 0x35, 0x38, 0x79, 0xb2, 0x29, 0x34, 0x46, 0x6e, 0xc1, 0x8d, 0x28, - 0x3b, 0x79, 0x50, 0xde, 0x9a, 0x67, 0x8d, 0x66, 0xde, 0xb2, 0xce, 0x93, 0x63, 0x09, 0xaf, 0x97, - 0x40, 0x76, 0x01, 0x39, 0xf5, 0xed, 0x21, 0xb5, 0x99, 0x5d, 0xbb, 0xe9, 0xb6, 0x99, 0x7d, 0x77, - 0x56, 0xf6, 0x9f, 0x18, 0xba, 0x6c, 0xcd, 0x11, 0x96, 0x46, 0x1d, 0xae, 0x31, 0xb2, 0xf4, 0xe4, - 0xc1, 0xf9, 0x8e, 0x04, 0xa6, 0x3d, 0xb3, 0x11, 0xc5, 0xe4, 0x27, 0x9f, 0x77, 0xc6, 0x40, 0xf8, - 0x65, 0xb1, 0x90, 0x2a, 0x9e, 0x4c, 0xf9, 0x9a, 0x25, 0x6c, 0xad, 0x13, 0x08, 0xb6, 0x12, 0x8f, - 0xc1, 0x11, 0x2c, 0x8b, 0x25, 0x30, 0x46, 0x18, 0x2a, 0x99, 0x7b, 0xc4, 0x4d, 0x8b, 0xb3, 0xde, - 0xbd, 0x7a, 0x28, 0xd6, 0xbb, 0x7b, 0x79, 0xeb, 0x5d, 0xcc, 0x10, 0x86, 0xae, 0xf1, 0x4e, 0xd0, - 0x6f, 0x01, 0xe7, 0x1f, 0xba, 0xed, 0x4e, 0xc0, 0x6f, 0xa1, 0x4f, 0xf9, 0xc9, 0x23, 0xfa, 0xbf, - 0xd6, 0x59, 0x67, 0xeb, 0x6e, 0x5e, 0xc1, 0x47, 0x15, 0x90, 0x39, 0x83, 0xff, 0xfc, 0xad, 0x7f, - 0xc5, 0xc5, 0xa3, 0x43, 0x38, 0x08, 0x7f, 0x3f, 0xc8, 0x90, 0x6b, 0x7c, 0x33, 0x5d, 0x21, 0x37, - 0x23, 0x77, 0xd2, 0x30, 0x23, 0x1a, 0xc9, 0xa7, 0x1c, 0x07, 0xb9, 0x8e, 0xb5, 0x6b, 0xd7, 0xf1, - 0xf4, 0x19, 0x6b, 0x0c, 0x7b, 0x12, 0x0d, 0x62, 0xc6, 0x91, 0x9e, 0x1b, 0x9e, 0x7b, 0x5e, 0xe0, - 0xc6, 0x03, 0x89, 0xbb, 0xf1, 0x40, 0xc0, 0x28, 0x1f, 0x83, 0xb7, 0xe4, 0x35, 0xe2, 0x6b, 0xe4, - 0x96, 0x9f, 0xc6, 0xb0, 0x60, 0x0f, 0x11, 0xcb, 0x41, 0xd5, 0x41, 0xd4, 0xb9, 0x96, 0x17, 0xad, - 0x17, 0xd8, 0x75, 0xa4, 0xce, 0xb5, 0x31, 0x78, 0x18, 0xc9, 0x89, 0xe0, 0x1c, 0x73, 0x08, 0x3c, - 0x37, 0x4c, 0x74, 0x33, 0x9c, 0xd2, 0x1f, 0x08, 0x9d, 0x21, 0x3a, 0x0a, 0x0e, 0x8c, 0xce, 0x21, - 0xb9, 0x0a, 0xfe, 0xb6, 0x04, 0x26, 0x6a, 0xfe, 0x95, 0x74, 0xf1, 0x6f, 0x2e, 0x10, 0x86, 0x08, - 0x8f, 0xc1, 0x5c, 0xdc, 0xc8, 0xa9, 0xc1, 0x43, 0x89, 0xf2, 0xa2, 0x0b, 0xf0, 0x3f, 0xea, 0x50, - 0xa2, 0x71, 0x19, 0x49, 0x1e, 0xc8, 0x2f, 0xd1, 0x9b, 0x42, 0x0a, 0x75, 0xc7, 0xdc, 0x43, 0xf0, - 0x75, 0x09, 0x76, 0xa4, 0xc7, 0x41, 0xce, 0xda, 0xdc, 0xec, 0xb0, 0xbb, 0x0a, 0xa7, 0x34, 0xf6, - 0xe4, 0x5f, 0x12, 0x4f, 0xc1, 0x65, 0x97, 0xc4, 0x0b, 0x06, 0x1b, 0xdc, 0x27, 0x50, 0x5a, 0xa1, - 0x51, 0x07, 0x1b, 0x8c, 0xc7, 0xc6, 0x08, 0xc2, 0x09, 0x03, 0x2c, 0x3d, 0x66, 0xca, 0x79, 0x2f, - 0x33, 0x1e, 0xa0, 0x83, 0x63, 0x3b, 0x0b, 0x26, 0x03, 0x96, 0x02, 0x37, 0x60, 0x3d, 0x97, 0x26, - 0x7a, 0x06, 0xd9, 0x13, 0xd9, 0xd0, 0xed, 0x08, 0x02, 0xf6, 0xe1, 0x38, 0x4c, 0x8c, 0xe4, 0x3e, - 0x18, 0x77, 0xc8, 0x1b, 0x11, 0x56, 0xbf, 0x16, 0xc4, 0xaa, 0xca, 0x63, 0x75, 0x57, 0x1c, 0x31, - 0xc5, 0x1b, 0x02, 0x63, 0x2d, 0x33, 0x3f, 0xe2, 0xc1, 0xa5, 0x71, 0x70, 0xdd, 0x3f, 0x30, 0x1f, - 0xc9, 0x23, 0xf6, 0x9b, 0x12, 0xbd, 0x14, 0xa2, 0xb0, 0x67, 0x98, 0x4d, 0x72, 0x70, 0x7c, 0x08, - 0x97, 0x1a, 0xfe, 0xf7, 0x20, 0x28, 0x67, 0x78, 0x50, 0x1e, 0x8c, 0x23, 0x0c, 0x8e, 0xa3, 0x10, - 0x6c, 0x5e, 0x16, 0xb4, 0xa5, 0xd3, 0xe8, 0xa2, 0x57, 0x76, 0x47, 0x68, 0x63, 0xef, 0x83, 0x46, - 0xf6, 0x2f, 0x7a, 0x20, 0x9d, 0xe3, 0x40, 0x52, 0x0f, 0xca, 0x97, 0x18, 0x56, 0xcb, 0xe2, 0x58, - 0x29, 0x33, 0xe0, 0x58, 0xa5, 0xaa, 0xaf, 0x17, 0xd6, 0x4b, 0x05, 0xbd, 0x70, 0xa6, 0xac, 0x9e, - 0x5d, 0x9f, 0x5f, 0xae, 0x16, 0x4f, 0xcb, 0x12, 0xfc, 0x39, 0x3a, 0x06, 0xd6, 0xe8, 0x3a, 0x6d, - 0x38, 0xb3, 0x4d, 0xb6, 0x04, 0x94, 0xb8, 0x25, 0xa0, 0xa0, 0x43, 0xbb, 0xef, 0xa7, 0xe9, 0x32, - 0xd7, 0xaf, 0xa1, 0x65, 0x86, 0xec, 0xd0, 0xde, 0x97, 0x83, 0xe4, 0x9b, 0xd8, 0xb7, 0x25, 0x00, - 0x16, 0x6d, 0x6b, 0xb7, 0x5d, 0xb5, 0x1b, 0xc8, 0x86, 0xcf, 0xfa, 0xab, 0xbe, 0x9f, 0x1e, 0xc2, - 0x64, 0x65, 0x15, 0x80, 0x2d, 0x8f, 0x38, 0xeb, 0xa7, 0x6e, 0x8f, 0xb7, 0xc6, 0xf3, 0x99, 0xd2, - 0x02, 0x34, 0xf8, 0x8b, 0x03, 0xbf, 0x97, 0xc7, 0x38, 0x6a, 0xe4, 0xf1, 0xc9, 0x0d, 0x73, 0xd5, - 0xf7, 0x31, 0x0f, 0x6b, 0x9d, 0xc3, 0xfa, 0xc1, 0x03, 0x70, 0x32, 0x02, 0x1f, 0x80, 0x3c, 0x98, - 0xa0, 0x7b, 0xb4, 0x54, 0xa6, 0x7f, 0xe5, 0x83, 0xfe, 0xd6, 0x21, 0x80, 0xbe, 0x06, 0x26, 0x2d, - 0x9f, 0x3a, 0x1d, 0x19, 0x83, 0x56, 0xb7, 0x48, 0xd8, 0x03, 0x7c, 0x69, 0x1c, 0x19, 0xf8, 0x9b, - 0x41, 0xe4, 0x35, 0x1e, 0xf9, 0x7b, 0x23, 0xe4, 0x1d, 0xa0, 0x38, 0x4c, 0xe8, 0x3f, 0xee, 0x41, - 0xbf, 0xc6, 0x41, 0x5f, 0x38, 0x08, 0x2b, 0xc9, 0x63, 0xff, 0x77, 0x12, 0xc8, 0x90, 0xe3, 0x67, - 0x1f, 0x48, 0x70, 0x2d, 0x32, 0x03, 0xf2, 0xa4, 0xc9, 0x7a, 0x8b, 0x4d, 0xf7, 0x11, 0xbf, 0x31, - 0x36, 0x1d, 0x64, 0x7b, 0xbe, 0x1f, 0xee, 0x23, 0xe6, 0x81, 0xc2, 0x5d, 0x26, 0x1e, 0x16, 0x64, - 0xf7, 0xd9, 0x4b, 0x18, 0x78, 0x25, 0x1a, 0x94, 0xf8, 0xd0, 0x0e, 0xa4, 0x0d, 0xb2, 0x12, 0xed, - 0xc3, 0x48, 0xf2, 0xc0, 0xff, 0x51, 0x06, 0xcc, 0x50, 0x53, 0xe2, 0x82, 0x6d, 0xed, 0x74, 0x5d, - 0x81, 0x62, 0x1e, 0x5c, 0x17, 0x6e, 0x04, 0xd3, 0x74, 0x13, 0xa7, 0xca, 0x40, 0x63, 0x3a, 0xd1, - 0x95, 0x0a, 0xff, 0x20, 0x78, 0xd7, 0xff, 0xf7, 0xf1, 0x48, 0xce, 0x47, 0x08, 0x30, 0x8c, 0x77, - 0xe1, 0xdd, 0x99, 0x98, 0x8c, 0x06, 0x2c, 0x93, 0xd2, 0x40, 0x86, 0x6a, 0xb1, 0x4b, 0xdf, 0x7f, - 0xd5, 0xd3, 0xa9, 0xef, 0xe7, 0x74, 0x6a, 0xf1, 0xe0, 0x22, 0x49, 0x5e, 0xb7, 0x1e, 0xf1, 0x76, - 0x03, 0xbd, 0xbd, 0xda, 0x44, 0x76, 0x68, 0x1f, 0x1b, 0xd0, 0x6a, 0xc1, 0xf3, 0x16, 0xa2, 0x31, - 0xd3, 0x20, 0x6d, 0xba, 0x3c, 0xa4, 0xcd, 0xc6, 0x40, 0x76, 0x89, 0xc8, 0x82, 0x46, 0x60, 0x36, - 0x9c, 0x06, 0xb9, 0x05, 0xb3, 0xe9, 0x20, 0x1b, 0x7e, 0x9d, 0x59, 0x25, 0x1e, 0x4f, 0xb0, 0x9b, - 0x2f, 0x81, 0xdc, 0x26, 0x29, 0x8d, 0x4d, 0x8c, 0x6f, 0x8b, 0xd7, 0x46, 0x28, 0x87, 0x1a, 0xcb, - 0x2b, 0x1a, 0xe4, 0xae, 0x8b, 0xcc, 0xd0, 0xcc, 0x19, 0x02, 0x41, 0xee, 0xfa, 0xb3, 0x30, 0x92, - 0x3b, 0x4a, 0x72, 0x1a, 0xda, 0xc1, 0x23, 0xf9, 0xf9, 0xe4, 0x10, 0x96, 0x81, 0x64, 0x36, 0x3a, - 0xa4, 0x0b, 0x1c, 0xd7, 0xf0, 0x5f, 0x51, 0x37, 0xb0, 0x6e, 0x51, 0x51, 0x96, 0x47, 0xed, 0x06, - 0x16, 0x8b, 0x8b, 0xe4, 0x31, 0xfb, 0x07, 0x09, 0x23, 0xd5, 0x6e, 0x1a, 0x75, 0x84, 0xb9, 0x4f, - 0x0c, 0x35, 0xda, 0x93, 0x65, 0xdc, 0x9e, 0x2c, 0xd0, 0x4e, 0xb3, 0x07, 0x68, 0xa7, 0x83, 0x9a, - 0x8c, 0x3d, 0x99, 0x93, 0x8a, 0x1f, 0x9a, 0xc9, 0x38, 0x92, 0x8d, 0x11, 0x98, 0x8c, 0xdd, 0xf3, - 0xa8, 0x23, 0x6d, 0xad, 0x83, 0xee, 0xbf, 0x31, 0x61, 0x0d, 0xed, 0xec, 0xe9, 0x20, 0xfb, 0x6f, - 0xe1, 0x3c, 0x24, 0x8f, 0xd6, 0x2f, 0x4c, 0x33, 0xb4, 0xbe, 0xc4, 0x86, 0xd1, 0x84, 0xb7, 0xc0, - 0x3b, 0x96, 0xed, 0x88, 0x6d, 0x81, 0x63, 0xee, 0x34, 0x92, 0x4f, 0xf4, 0xa0, 0x1a, 0x7f, 0x3c, - 0x79, 0x58, 0xc3, 0xa7, 0xc0, 0x41, 0xb5, 0x7e, 0x0c, 0x24, 0x0f, 0xef, 0x87, 0x0e, 0x69, 0xf0, - 0x1c, 0xb4, 0x39, 0xb2, 0x36, 0x30, 0xb4, 0xa1, 0x73, 0x90, 0xe6, 0x18, 0xce, 0x43, 0xf2, 0x78, - 0x3d, 0x17, 0x18, 0x38, 0xdf, 0x3f, 0xc2, 0x81, 0xd3, 0x6d, 0x99, 0xd9, 0x01, 0x5b, 0xe6, 0xa0, - 0x7b, 0x75, 0x4c, 0xd6, 0xc3, 0x1b, 0x30, 0x07, 0xd9, 0xab, 0x8b, 0x60, 0x22, 0x79, 0xc4, 0xdf, - 0x77, 0x28, 0xc3, 0xe5, 0xc0, 0x1b, 0x08, 0x58, 0x54, 0x43, 0x1b, 0x2c, 0x07, 0xda, 0x40, 0x08, - 0xe1, 0x60, 0x04, 0xc1, 0xeb, 0x8f, 0x82, 0x49, 0x62, 0xf5, 0x70, 0xf7, 0xc3, 0x9f, 0x63, 0x43, - 0xe6, 0x13, 0x09, 0x36, 0xd4, 0x87, 0xc0, 0x98, 0xbb, 0x69, 0xc6, 0x86, 0xcd, 0xb9, 0x78, 0x8d, - 0xd3, 0xdb, 0x74, 0xf3, 0xf2, 0x1f, 0xc8, 0xc9, 0x65, 0xe8, 0x9b, 0xea, 0x83, 0x3a, 0xb9, 0x1c, - 0xea, 0xc6, 0xfa, 0x33, 0xfe, 0x70, 0xfa, 0x43, 0xc9, 0x61, 0xde, 0xbd, 0xe1, 0x9e, 0xe9, 0xb1, - 0xe1, 0xce, 0x5d, 0xb6, 0x5f, 0xe3, 0xb1, 0xbc, 0x2f, 0xae, 0x08, 0x87, 0x38, 0xd0, 0x3e, 0xe9, - 0xc1, 0x79, 0x86, 0x83, 0x73, 0xfe, 0x40, 0xbc, 0x24, 0x8f, 0xe8, 0x63, 0x19, 0x7f, 0xc0, 0xfd, - 0x9d, 0x04, 0xdb, 0x71, 0xd7, 0x69, 0x99, 0xcc, 0xbe, 0xd3, 0x32, 0x5c, 0x4b, 0xcf, 0x1e, 0xb0, - 0xa5, 0xff, 0x4e, 0x50, 0x3b, 0x74, 0x5e, 0x3b, 0xee, 0x8f, 0x8f, 0xc8, 0xf0, 0x86, 0xe5, 0x4f, - 0x78, 0xea, 0x71, 0x96, 0x53, 0x8f, 0xe2, 0xc1, 0x98, 0x49, 0x5e, 0x3f, 0x7e, 0xd7, 0x1d, 0x9e, - 0x0f, 0xb9, 0xbd, 0x0f, 0xba, 0x1b, 0xcc, 0x09, 0x71, 0x68, 0x03, 0xf7, 0x20, 0xbb, 0xc1, 0xfd, - 0x38, 0x19, 0x41, 0x3c, 0xb3, 0x29, 0x30, 0x41, 0x78, 0x3a, 0x6b, 0x36, 0xb6, 0x90, 0x03, 0xdf, - 0x49, 0x7d, 0x4f, 0xdd, 0xe8, 0x91, 0xf0, 0x07, 0x0e, 0x0e, 0x71, 0xc4, 0xa1, 0x64, 0xd1, 0x39, - 0x17, 0x65, 0x72, 0x2e, 0xc0, 0xe0, 0xa8, 0xe7, 0x5c, 0x7d, 0x39, 0x18, 0x89, 0x5f, 0xd4, 0x78, - 0x0d, 0x39, 0xcb, 0xc6, 0x25, 0x6b, 0xd7, 0x81, 0x8f, 0x0c, 0xa1, 0x83, 0x9e, 0x07, 0xb9, 0x26, - 0xa1, 0xc6, 0x8e, 0xdb, 0x44, 0xaf, 0x75, 0x98, 0x08, 0x68, 0xf9, 0x1a, 0xcb, 0x29, 0x7a, 0xe6, - 0xc6, 0x97, 0x23, 0xa5, 0x33, 0xea, 0x33, 0x37, 0x7d, 0xca, 0x1f, 0xc9, 0x3d, 0x35, 0x63, 0xb8, - 0x74, 0xe2, 0x90, 0x3b, 0x9c, 0x70, 0x17, 0xd4, 0xd3, 0x97, 0x85, 0xbb, 0xa0, 0x9e, 0xbe, 0x82, - 0x27, 0x81, 0x03, 0x52, 0xc1, 0xd9, 0x47, 0x7d, 0x12, 0x38, 0xba, 0xf8, 0xe4, 0x31, 0xf9, 0x59, - 0xda, 0xb2, 0xce, 0xd0, 0xe3, 0x0b, 0xe7, 0x12, 0x1b, 0xdd, 0x06, 0x6f, 0x2c, 0x94, 0xb5, 0xc3, - 0x6b, 0x2c, 0x3d, 0xcb, 0x4f, 0x1e, 0x98, 0xb7, 0x1f, 0x05, 0xd9, 0x12, 0xda, 0xd8, 0xdd, 0x82, - 0xf7, 0x82, 0x31, 0xdd, 0x46, 0xa8, 0xdc, 0xda, 0xb4, 0xb0, 0x74, 0x1d, 0xfc, 0xdf, 0x85, 0x84, - 0x3d, 0x61, 0x3c, 0xb6, 0x91, 0xd1, 0xf0, 0xcf, 0x15, 0xba, 0x8f, 0xf0, 0xb9, 0x34, 0x18, 0xc7, - 0xd9, 0x97, 0x90, 0xd1, 0xe8, 0xc0, 0x17, 0xf9, 0x00, 0x87, 0x90, 0x82, 0x9f, 0x8a, 0x1d, 0xb4, - 0x91, 0xb0, 0x37, 0xe7, 0x11, 0x0f, 0x77, 0x4c, 0xe8, 0xb4, 0x8d, 0x3a, 0xf2, 0x55, 0x85, 0x3d, - 0x2a, 0x27, 0x41, 0xc6, 0x6c, 0x6d, 0x5a, 0xcc, 0x4d, 0xee, 0xaa, 0x10, 0xda, 0xb8, 0xde, 0x1a, - 0xf9, 0x30, 0x66, 0x44, 0xc7, 0x68, 0xb6, 0x46, 0x72, 0x39, 0x5a, 0x06, 0x97, 0x0e, 0xff, 0x75, - 0x5f, 0x61, 0xf7, 0xbc, 0x16, 0x7f, 0x16, 0x4c, 0xee, 0xb6, 0x8c, 0x96, 0xd5, 0xba, 0xb4, 0x63, - 0xbe, 0xca, 0xbb, 0x83, 0x95, 0x4b, 0xc3, 0x9c, 0x6f, 0xa1, 0x16, 0xb2, 0x0d, 0x07, 0xd5, 0xf6, - 0xb6, 0xc8, 0x3a, 0x62, 0x4c, 0x0b, 0x26, 0xc1, 0x47, 0x82, 0x30, 0xde, 0xcb, 0xc3, 0x78, 0x63, - 0x88, 0xbc, 0x42, 0x10, 0x84, 0x34, 0x88, 0x20, 0x09, 0xdd, 0xc4, 0x8e, 0x2f, 0xbb, 0xcf, 0xf0, - 0x1d, 0x1e, 0x24, 0x0f, 0x70, 0x90, 0xdc, 0x1a, 0xaf, 0x88, 0xe4, 0xd1, 0x78, 0x36, 0x0d, 0x26, - 0x6b, 0x58, 0xe1, 0x6a, 0xbb, 0x3b, 0x3b, 0x86, 0x7d, 0x09, 0x8e, 0x7b, 0xa8, 0xc0, 0xdf, 0x8e, - 0x7d, 0xc9, 0x30, 0xad, 0x40, 0x90, 0x8e, 0xb0, 0xb6, 0xdf, 0x01, 0xb2, 0x58, 0x89, 0x5d, 0xf7, - 0xc0, 0x48, 0x75, 0xa7, 0x5f, 0xc6, 0x0c, 0x64, 0xd5, 0x97, 0xb7, 0xe4, 0x85, 0xfc, 0x26, 0x09, - 0xc8, 0xea, 0xc5, 0xb6, 0x65, 0x3b, 0xcb, 0x56, 0xdd, 0x68, 0x76, 0x1c, 0xcb, 0x46, 0xf0, 0x65, - 0xbe, 0xfa, 0xbb, 0x6a, 0x9e, 0x0a, 0xa8, 0xf9, 0x71, 0x90, 0x6b, 0x58, 0x75, 0xbf, 0xc7, 0x62, - 0x4f, 0xbc, 0xdb, 0x63, 0xe4, 0xee, 0x0e, 0xad, 0x78, 0x77, 0xb9, 0x21, 0xc0, 0xf4, 0x6a, 0x69, - 0x62, 0x07, 0x0a, 0xe2, 0xed, 0xf8, 0xc4, 0x62, 0x6a, 0x04, 0x71, 0xd9, 0xd3, 0x20, 0xb3, 0x6a, - 0xb6, 0xb6, 0x82, 0x7e, 0x49, 0xc7, 0xb0, 0x06, 0x36, 0xd0, 0x45, 0xc2, 0x77, 0x56, 0xa3, 0x0f, - 0xca, 0x29, 0x70, 0xac, 0xb5, 0xbb, 0xb3, 0x81, 0xec, 0xea, 0x26, 0xa9, 0x6e, 0x47, 0xb7, 0x6a, - 0xa8, 0x45, 0xd5, 0x37, 0xab, 0xf5, 0x7c, 0x07, 0xff, 0x39, 0x25, 0xd6, 0xb9, 0x60, 0x4e, 0x42, - 0x70, 0xf1, 0x98, 0x4a, 0x07, 0x98, 0x12, 0xea, 0x56, 0x7a, 0x10, 0x4f, 0x5e, 0xbe, 0x9f, 0x4b, - 0x83, 0xfc, 0x0a, 0x72, 0x6c, 0xb3, 0xde, 0xc1, 0x23, 0xe6, 0x54, 0x0d, 0x39, 0xab, 0x86, 0x6d, - 0xec, 0x20, 0x07, 0xd9, 0x1d, 0x78, 0xab, 0x2f, 0x74, 0x08, 0xc6, 0xda, 0x4d, 0xc3, 0xd9, 0xb4, - 0xec, 0x1d, 0xa6, 0xfe, 0xde, 0xf3, 0xdd, 0x99, 0xd7, 0xff, 0xa5, 0x94, 0xe2, 0x85, 0x19, 0x39, - 0x33, 0x62, 0x05, 0xce, 0x71, 0x85, 0x85, 0x44, 0x68, 0x8b, 0x37, 0xd7, 0x89, 0x43, 0x31, 0x79, - 0x61, 0xfe, 0xba, 0x04, 0xa4, 0x65, 0x6b, 0x0b, 0x7e, 0x52, 0x02, 0x19, 0xa2, 0x5f, 0xbf, 0x18, - 0x58, 0xe1, 0xcd, 0x80, 0xfc, 0x0e, 0xea, 0x74, 0x8c, 0x2d, 0xc4, 0xe4, 0xe7, 0x3e, 0x2a, 0x77, - 0x81, 0x6c, 0x13, 0xed, 0xa1, 0x26, 0x61, 0x63, 0xfa, 0xd4, 0x75, 0x5c, 0xcd, 0x96, 0xad, 0xad, - 0x39, 0x4c, 0x6b, 0x8e, 0xd1, 0x99, 0x5b, 0xc6, 0x9f, 0x6a, 0x34, 0xc7, 0xec, 0x43, 0x20, 0x4b, - 0x9e, 0x95, 0x71, 0x90, 0x2d, 0xa9, 0xf3, 0x6b, 0x8b, 0xf2, 0x11, 0xfc, 0xd7, 0xe5, 0x6f, 0x1c, - 0x64, 0x17, 0x0a, 0x7a, 0x61, 0x59, 0x4e, 0xe3, 0x7a, 0x94, 0x2b, 0x0b, 0x55, 0x59, 0xc2, 0x89, - 0xab, 0x85, 0x4a, 0xb9, 0x28, 0x67, 0x94, 0x09, 0x90, 0x3f, 0x5b, 0xd0, 0x2a, 0xe5, 0xca, 0xa2, - 0x9c, 0x85, 0xaf, 0x0e, 0x76, 0x58, 0x77, 0xf3, 0xf8, 0x5d, 0x1f, 0xc6, 0x53, 0x2f, 0xc8, 0x7e, - 0xc5, 0x83, 0xec, 0x3e, 0x0e, 0xb2, 0x17, 0xc7, 0x21, 0x22, 0x86, 0x52, 0x65, 0x80, 0x03, 0x2f, - 0x53, 0x60, 0xbc, 0x52, 0xd5, 0xd7, 0x17, 0xaa, 0x6b, 0x95, 0x92, 0x8c, 0xb0, 0x0c, 0xf4, 0xf2, - 0x8a, 0x5a, 0x5d, 0xd3, 0xe5, 0x4d, 0xf8, 0x9e, 0x34, 0xc8, 0xaf, 0xda, 0x56, 0x1d, 0x75, 0x3a, - 0xf0, 0x2d, 0x69, 0x90, 0x2b, 0x1a, 0xad, 0x3a, 0x6a, 0xc2, 0x17, 0xf8, 0x30, 0xd2, 0xad, 0xc6, - 0x94, 0xe7, 0x6d, 0xf8, 0xed, 0xa0, 0xd6, 0x3f, 0xc8, 0x4b, 0xed, 0x16, 0xae, 0xc2, 0x8c, 0xee, - 0x1c, 0xa5, 0x19, 0x22, 0xbb, 0x77, 0x7b, 0xb2, 0x2b, 0x72, 0xb2, 0x3b, 0x19, 0x9f, 0x54, 0xf2, - 0x7a, 0xfe, 0xf7, 0x29, 0x70, 0x6c, 0x11, 0xcf, 0xd1, 0xcc, 0x3a, 0x65, 0xde, 0xad, 0xff, 0x7d, - 0x7c, 0xfd, 0x6f, 0xe2, 0x98, 0xee, 0x95, 0x83, 0xaf, 0xfc, 0xe3, 0x5e, 0xe5, 0x1f, 0xe4, 0x2a, - 0x7f, 0x5b, 0x4c, 0x3a, 0xc9, 0xd7, 0xfc, 0xe7, 0xd3, 0x60, 0x6c, 0xad, 0x83, 0xec, 0x92, 0xe1, - 0x18, 0x58, 0x41, 0x32, 0xa5, 0xdd, 0x9d, 0x36, 0xbc, 0x26, 0x72, 0x86, 0x00, 0x9f, 0x0b, 0xaa, - 0xc8, 0x03, 0xbc, 0x88, 0xf8, 0x36, 0xe1, 0x92, 0x9e, 0xc3, 0x64, 0x43, 0x34, 0xe4, 0x5d, 0x9e, - 0x90, 0xe6, 0x39, 0x21, 0xcd, 0xc5, 0xa6, 0x94, 0xb8, 0x98, 0x66, 0xf3, 0x20, 0xab, 0xee, 0xb4, - 0x9d, 0x4b, 0xb3, 0x37, 0x80, 0xa9, 0x9a, 0x63, 0x23, 0x63, 0x27, 0x30, 0x76, 0x3b, 0xd6, 0x79, - 0xd4, 0x62, 0x02, 0xa2, 0x0f, 0x77, 0xdf, 0x05, 0xf2, 0x2d, 0x6b, 0xdd, 0xd8, 0x75, 0xb6, 0x95, - 0x17, 0xee, 0x8b, 0xce, 0xb8, 0x42, 0xbb, 0xc9, 0x6a, 0x9b, 0x1e, 0xca, 0xfb, 0xf3, 0x7b, 0xc9, - 0x22, 0x21, 0xd7, 0xb2, 0x0a, 0xbb, 0xce, 0xf6, 0xfc, 0xd5, 0x9f, 0x7d, 0xf6, 0x44, 0xea, 0x0b, - 0xcf, 0x9e, 0x48, 0xfd, 0xd9, 0xb3, 0x27, 0x52, 0x3f, 0xf9, 0x8d, 0x13, 0x47, 0xbe, 0xf0, 0x8d, - 0x13, 0x47, 0xbe, 0xfa, 0x8d, 0x13, 0x47, 0x5e, 0x99, 0x6e, 0x6f, 0x6c, 0xe4, 0x08, 0x95, 0x3b, - 0xff, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x39, 0x4b, 0x17, 0x52, 0x69, 0x01, 0x00, + // 13319 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0x7b, 0x78, 0x24, 0xd7, + 0x55, 0xe7, 0x74, 0x57, 0x3f, 0xa4, 0xab, 0xc7, 0x94, 0xcb, 0xe3, 0xb1, 0x72, 0x6d, 0x4f, 0x1c, + 0xf9, 0x19, 0xdb, 0xd1, 0xd8, 0xe3, 0x84, 0xc4, 0x6f, 0xb7, 0xba, 0x4b, 0x52, 0x7b, 0xa4, 0x6e, + 0x51, 0x5d, 0x9a, 0x61, 0xc2, 0xb2, 0xda, 0x52, 0xf7, 0x95, 0x54, 0x9e, 0x56, 0x57, 0x53, 0x5d, + 0xd2, 0xcc, 0x64, 0x3f, 0x16, 0xb2, 0xc4, 0x79, 0xc0, 0x86, 0xb0, 0x10, 0x48, 0x4c, 0xe2, 0x38, + 0x0f, 0x9c, 0x10, 0x92, 0x10, 0xf2, 0x70, 0x82, 0xd9, 0x10, 0x36, 0x40, 0x20, 0xe4, 0x83, 0x38, + 0x24, 0x1b, 0x62, 0xd8, 0x84, 0x87, 0xc3, 0xb2, 0x61, 0x97, 0xac, 0x37, 0x7c, 0x2c, 0x2c, 0x1b, + 0x58, 0xf6, 0xbb, 0x8f, 0x7a, 0xdc, 0x56, 0x57, 0x75, 0xdd, 0x56, 0x57, 0xcb, 0x2c, 0x7f, 0x75, + 0xd7, 0xad, 0xba, 0xe7, 0x9e, 0x7b, 0x7e, 0xe7, 0xbe, 0xce, 0x3d, 0xf7, 0x5c, 0x30, 0xd3, 0xde, + 0x38, 0xd9, 0xb6, 0x2d, 0xc7, 0xea, 0x9c, 0xac, 0x5b, 0x3b, 0x3b, 0x46, 0xab, 0xd1, 0x99, 0x23, + 0xcf, 0x4a, 0xde, 0x68, 0x5d, 0x72, 0x2e, 0xb5, 0x11, 0xbc, 0xbe, 0x7d, 0x7e, 0xeb, 0x64, 0xd3, + 0xdc, 0x38, 0xd9, 0xde, 0x38, 0xb9, 0x63, 0x35, 0x50, 0xd3, 0xcd, 0x40, 0x1e, 0xd8, 0xe7, 0xf0, + 0xe6, 0xb0, 0xaf, 0x9a, 0x56, 0xdd, 0x68, 0x76, 0x1c, 0xcb, 0x46, 0xec, 0xcb, 0xe3, 0x7e, 0x91, + 0x68, 0x0f, 0xb5, 0x1c, 0x97, 0xc2, 0xd5, 0x5b, 0x96, 0xb5, 0xd5, 0x44, 0xf4, 0xdd, 0xc6, 0xee, + 0xe6, 0xc9, 0x8e, 0x63, 0xef, 0xd6, 0x1d, 0xf6, 0xf6, 0xda, 0xee, 0xb7, 0x0d, 0xd4, 0xa9, 0xdb, + 0x66, 0xdb, 0xb1, 0x6c, 0xfa, 0xc5, 0xec, 0xbf, 0xfb, 0x62, 0x16, 0x48, 0x5a, 0xbb, 0x0e, 0xbf, + 0x30, 0x06, 0xa4, 0x42, 0xbb, 0x0d, 0xbf, 0x9d, 0x06, 0x60, 0x11, 0x39, 0x67, 0x90, 0xdd, 0x31, + 0xad, 0x16, 0x1c, 0x07, 0x79, 0x0d, 0x7d, 0xff, 0x2e, 0xea, 0x38, 0xf0, 0xab, 0x69, 0x30, 0xa6, + 0xa1, 0x4e, 0xdb, 0x6a, 0x75, 0x90, 0xf2, 0x20, 0xc8, 0x22, 0xdb, 0xb6, 0xec, 0x99, 0xd4, 0xb5, + 0xa9, 0x9b, 0x27, 0x4e, 0xdd, 0x32, 0xc7, 0x2a, 0x3e, 0xa7, 0xb5, 0xeb, 0x73, 0x85, 0x76, 0x7b, + 0xce, 0xa7, 0x31, 0xe7, 0x66, 0x9a, 0x53, 0x71, 0x0e, 0x8d, 0x66, 0x54, 0x66, 0x40, 0x7e, 0x8f, + 0x7e, 0x30, 0x93, 0xbe, 0x36, 0x75, 0xf3, 0xb8, 0xe6, 0x3e, 0xe2, 0x37, 0x0d, 0xe4, 0x18, 0x66, + 0xb3, 0x33, 0x23, 0xd1, 0x37, 0xec, 0x11, 0xfe, 0xa7, 0x14, 0xc8, 0x12, 0x22, 0x4a, 0x11, 0x64, + 0xea, 0x56, 0x03, 0x91, 0xe2, 0xa7, 0x4f, 0x9d, 0x8c, 0x5f, 0xfc, 0x5c, 0xd1, 0x6a, 0x20, 0x8d, + 0x64, 0x56, 0xae, 0x05, 0x13, 0xae, 0x40, 0x7c, 0x36, 0x82, 0x49, 0xb3, 0x0d, 0x90, 0xc1, 0xdf, + 0x2b, 0x63, 0x20, 0x53, 0x59, 0x5b, 0x5e, 0x96, 0x8f, 0x28, 0x97, 0x81, 0xa9, 0xb5, 0xca, 0xe9, + 0x4a, 0xf5, 0x6c, 0x65, 0x5d, 0xd5, 0xb4, 0xaa, 0x26, 0xa7, 0x94, 0x29, 0x30, 0x3e, 0x5f, 0x28, + 0xad, 0x97, 0x2b, 0xab, 0x6b, 0xba, 0x9c, 0x56, 0x8e, 0x01, 0xf9, 0x8c, 0xaa, 0xd5, 0xca, 0xd5, + 0xca, 0x7a, 0xb9, 0xb6, 0xae, 0xae, 0xac, 0xea, 0xe7, 0x64, 0x09, 0x7f, 0x54, 0xa9, 0xea, 0xeb, + 0x0b, 0xd5, 0xb5, 0x4a, 0x49, 0x46, 0xca, 0x04, 0xc8, 0xeb, 0xe5, 0x15, 0xb5, 0xba, 0xa6, 0xcb, + 0x9b, 0xf0, 0xe3, 0x12, 0x98, 0xae, 0x21, 0xa7, 0x84, 0xf6, 0xcc, 0x3a, 0xaa, 0x39, 0x86, 0x83, + 0xe0, 0x9b, 0x52, 0x9e, 0xe0, 0x95, 0x35, 0xcc, 0xa6, 0xf7, 0x8a, 0x55, 0xf9, 0xce, 0x7d, 0x55, + 0xe6, 0x29, 0xcc, 0xb1, 0xdc, 0x73, 0x81, 0x34, 0x2d, 0x48, 0x67, 0xf6, 0x25, 0x60, 0x22, 0xf0, + 0x4e, 0x99, 0x06, 0x60, 0xbe, 0x50, 0x3c, 0xbd, 0xa8, 0x11, 0x0e, 0x8f, 0xe0, 0xe7, 0x85, 0xaa, + 0xa6, 0xb2, 0xe7, 0x14, 0x7c, 0x53, 0x10, 0xfe, 0x12, 0x0f, 0xff, 0x5c, 0x7f, 0x66, 0x7a, 0xa8, + 0x00, 0xfc, 0x94, 0x07, 0xe7, 0x22, 0x07, 0xe7, 0x9d, 0x62, 0xe4, 0xc4, 0x20, 0x5d, 0x1a, 0x0c, + 0xd2, 0x4a, 0xb5, 0xa4, 0xae, 0x63, 0x04, 0x6b, 0x7a, 0x41, 0xd3, 0xd5, 0x92, 0x8c, 0xe0, 0xdb, + 0xd2, 0x60, 0xac, 0xb6, 0xbd, 0xeb, 0x34, 0xac, 0x0b, 0x5c, 0x43, 0xf9, 0xe1, 0xa0, 0xa4, 0xee, + 0xe7, 0x25, 0x75, 0xf3, 0xfe, 0xaa, 0x31, 0x0a, 0x21, 0x32, 0xfa, 0x84, 0x27, 0xa3, 0x02, 0x27, + 0xa3, 0x97, 0xc4, 0x25, 0x74, 0x58, 0xd2, 0xf9, 0xca, 0x14, 0xc8, 0x9d, 0x35, 0x9a, 0x4d, 0xe4, + 0xc0, 0x3f, 0x4b, 0x83, 0x5c, 0xd1, 0x46, 0x58, 0xaf, 0x6f, 0xf5, 0xd5, 0x1a, 0x82, 0x31, 0xdb, + 0xb2, 0x9c, 0x55, 0xc3, 0xd9, 0x26, 0x75, 0x1a, 0xd7, 0xbc, 0xe7, 0xbb, 0x33, 0xaf, 0xff, 0x73, + 0x29, 0x05, 0x3f, 0x18, 0x14, 0xe4, 0x03, 0xbc, 0x20, 0x5f, 0xcc, 0xd5, 0x9f, 0x16, 0x34, 0x47, + 0x0b, 0x09, 0xe9, 0x70, 0x20, 0x18, 0xdb, 0x69, 0xa1, 0x1d, 0xab, 0x65, 0xd6, 0x59, 0xcd, 0xbd, + 0x67, 0xf8, 0x6b, 0x9e, 0x94, 0xe7, 0x39, 0x29, 0xcf, 0xc5, 0x2e, 0x45, 0x4c, 0xcc, 0xb5, 0x01, + 0xc4, 0xfc, 0x42, 0x70, 0xd5, 0x42, 0xa1, 0xbc, 0xac, 0x96, 0xd6, 0xf5, 0xea, 0x7a, 0x51, 0x53, + 0x0b, 0xba, 0xba, 0xbe, 0x5c, 0x2d, 0x16, 0x96, 0xd7, 0x35, 0x75, 0xb5, 0x2a, 0x23, 0xf8, 0x5f, + 0xd3, 0x58, 0xb8, 0x75, 0x6b, 0x0f, 0xd9, 0x70, 0x31, 0x96, 0x9c, 0xa3, 0x64, 0xc2, 0x30, 0xf8, + 0x89, 0xd8, 0xbd, 0x3e, 0x93, 0x0e, 0xe3, 0x20, 0x44, 0x9d, 0x7f, 0x3d, 0x56, 0x0f, 0x1e, 0x49, + 0xea, 0x79, 0x20, 0xe9, 0xbf, 0x4e, 0x83, 0x7c, 0xd1, 0x6a, 0xed, 0x21, 0xdb, 0x81, 0x0f, 0x70, + 0x92, 0xf6, 0xa4, 0x99, 0xe2, 0xa5, 0x89, 0x07, 0x35, 0xd4, 0x72, 0x6c, 0xab, 0x7d, 0xc9, 0x1d, + 0xee, 0xd8, 0x23, 0x7c, 0x9f, 0xa8, 0x84, 0x59, 0xc9, 0xe1, 0xe3, 0x6a, 0xef, 0x82, 0x38, 0xf6, + 0xa4, 0xae, 0x06, 0xf0, 0x6e, 0x11, 0x5c, 0x7a, 0x33, 0x20, 0x86, 0xcb, 0x29, 0x71, 0x5c, 0xe0, + 0x97, 0xd2, 0x60, 0x8a, 0x36, 0xbe, 0x1a, 0xea, 0x90, 0xe9, 0xc9, 0xad, 0xb1, 0x84, 0xcf, 0x54, + 0xf9, 0x27, 0x83, 0x82, 0x5e, 0xe0, 0x05, 0x7d, 0x7b, 0x78, 0x43, 0x67, 0x65, 0x85, 0x88, 0xfb, + 0x18, 0xc8, 0x3a, 0xd6, 0x79, 0xe4, 0xd6, 0x91, 0x3e, 0xc0, 0x9f, 0xf3, 0xc4, 0x59, 0xe6, 0xc4, + 0xf9, 0x32, 0xd1, 0x62, 0x92, 0x17, 0xea, 0x87, 0xd2, 0x60, 0xb2, 0xd8, 0xb4, 0x3a, 0x9e, 0x4c, + 0x5f, 0xe8, 0xcb, 0xd4, 0xab, 0x5c, 0x2a, 0x58, 0xb9, 0xef, 0xa4, 0x02, 0x72, 0x54, 0x79, 0x39, + 0xf6, 0xd6, 0x97, 0x00, 0xf9, 0x90, 0x7e, 0xe1, 0x7d, 0x9e, 0xc0, 0x96, 0x38, 0x81, 0xbd, 0x54, + 0x90, 0x5e, 0xf2, 0xf2, 0xfa, 0x9f, 0x37, 0x80, 0x7c, 0xa1, 0x5e, 0xb7, 0x76, 0x5b, 0x0e, 0xfc, + 0xe3, 0x14, 0xc8, 0x15, 0xad, 0xd6, 0xa6, 0xb9, 0xa5, 0xdc, 0x08, 0xa6, 0x51, 0xcb, 0xd8, 0x68, + 0xa2, 0x92, 0xe1, 0x18, 0x7b, 0x26, 0xba, 0x40, 0x2a, 0x30, 0xa6, 0x75, 0xa5, 0x62, 0xa6, 0x58, + 0x0a, 0xda, 0xd8, 0xdd, 0x22, 0x4c, 0x8d, 0x69, 0xc1, 0x24, 0xe5, 0x15, 0xe0, 0x4a, 0xfa, 0xb8, + 0x6a, 0x23, 0x1b, 0x35, 0x91, 0xd1, 0x41, 0xc5, 0x6d, 0xa3, 0xd5, 0x42, 0x4d, 0xd2, 0x6a, 0xc7, + 0xb4, 0xb0, 0xd7, 0xca, 0x2c, 0x98, 0xa4, 0xaf, 0x6a, 0x6d, 0xa3, 0x8e, 0x3a, 0x33, 0x19, 0xf2, + 0x39, 0x97, 0xa6, 0xbc, 0x04, 0x64, 0xd1, 0x45, 0xc7, 0x36, 0x66, 0x1a, 0x04, 0xaf, 0x2b, 0xe7, + 0xe8, 0x12, 0x61, 0xce, 0x5d, 0x22, 0xcc, 0xd5, 0xc8, 0x02, 0x42, 0xa3, 0x5f, 0xc1, 0xaf, 0xe6, + 0xbc, 0xa1, 0xfb, 0xc9, 0xc0, 0x94, 0x54, 0x01, 0x99, 0x96, 0xb1, 0x83, 0x98, 0x5e, 0x90, 0xff, + 0xca, 0x2d, 0xe0, 0xa8, 0xb1, 0x67, 0x38, 0x86, 0xbd, 0x8c, 0x17, 0x2f, 0x64, 0xb8, 0x21, 0x22, + 0x5f, 0x3a, 0xa2, 0x75, 0xbf, 0x50, 0xae, 0x06, 0xe3, 0x64, 0x75, 0x43, 0xbe, 0xa2, 0x7d, 0x91, + 0x9f, 0x80, 0xa9, 0x9b, 0x75, 0xab, 0x45, 0xf8, 0x97, 0x34, 0xf2, 0x5f, 0xb9, 0x19, 0x1c, 0x35, + 0x9a, 0xed, 0x6d, 0xa3, 0xdc, 0xda, 0x33, 0x1d, 0x84, 0x51, 0x9b, 0x39, 0x46, 0xf2, 0x75, 0x27, + 0xd3, 0xc6, 0x3e, 0x3f, 0x06, 0x72, 0xb4, 0x50, 0xf8, 0xe6, 0x6c, 0xec, 0x75, 0x0b, 0x85, 0x35, + 0x7a, 0x1a, 0x71, 0x3b, 0xc8, 0x1b, 0xf4, 0x3b, 0x52, 0xbd, 0x89, 0x53, 0xc7, 0x3d, 0x1a, 0x64, + 0x09, 0xe7, 0x52, 0xd1, 0xdc, 0xcf, 0x94, 0x3b, 0x41, 0xae, 0x4e, 0x94, 0x84, 0xd4, 0x74, 0xe2, + 0xd4, 0x55, 0xbd, 0x0b, 0x25, 0x9f, 0x68, 0xec, 0x53, 0xf8, 0x47, 0x52, 0xac, 0xa5, 0x4e, 0x14, + 0xc7, 0x62, 0x6d, 0xe1, 0x5b, 0xe9, 0x01, 0x46, 0xca, 0xdb, 0xc0, 0xcd, 0x85, 0x62, 0xb1, 0xba, + 0x56, 0xd1, 0xd9, 0x38, 0x59, 0x5a, 0x9f, 0x5f, 0xd3, 0xd7, 0xfd, 0xd1, 0x93, 0xcc, 0x07, 0xd7, + 0xf1, 0xf4, 0x50, 0xc6, 0x1a, 0x72, 0x63, 0x9f, 0xaf, 0x55, 0x7d, 0xbd, 0x52, 0x58, 0x51, 0xe5, + 0xcd, 0x18, 0x94, 0x55, 0x7d, 0xbd, 0x70, 0xa6, 0xa0, 0x17, 0x34, 0x79, 0x8b, 0x1f, 0xb1, 0x6b, + 0x7a, 0x75, 0x75, 0x5d, 0x5b, 0xab, 0x54, 0xca, 0x95, 0x45, 0x5a, 0x34, 0x9e, 0xe8, 0x1c, 0xf7, + 0x3f, 0x38, 0xab, 0x95, 0x75, 0x75, 0xbd, 0x58, 0xad, 0x2c, 0x94, 0x17, 0x65, 0xb3, 0xdf, 0x70, + 0xff, 0xb0, 0x72, 0x0c, 0x1c, 0xa5, 0x95, 0x3e, 0x43, 0xf3, 0x95, 0x54, 0xf9, 0x35, 0x79, 0x65, + 0x1a, 0x8c, 0x57, 0x54, 0x9d, 0x49, 0xe6, 0x91, 0xbc, 0x72, 0x15, 0x38, 0x8e, 0x9f, 0x8b, 0xd5, + 0x4a, 0x45, 0x2d, 0xea, 0x78, 0xf9, 0xa7, 0xa9, 0x0b, 0x6b, 0x35, 0xb5, 0x24, 0xbf, 0x36, 0xaf, + 0xc8, 0x60, 0x02, 0xbf, 0xac, 0x2e, 0x2c, 0x2c, 0x97, 0x2b, 0xaa, 0xfc, 0xba, 0x3c, 0x7c, 0x63, + 0xc6, 0x9f, 0xad, 0x05, 0x16, 0x0f, 0x7f, 0x23, 0x05, 0xb4, 0xb5, 0xc0, 0x6b, 0xeb, 0xad, 0x3d, + 0xb1, 0x8f, 0x9e, 0x70, 0xbd, 0xd7, 0xd3, 0xa3, 0x12, 0xa7, 0x47, 0xb7, 0x0b, 0xd0, 0x12, 0x53, + 0xa4, 0x8f, 0x0f, 0xa2, 0x48, 0x57, 0x80, 0xcb, 0x2a, 0xd5, 0x75, 0x86, 0x78, 0xcd, 0x5b, 0x26, + 0x5f, 0x0b, 0xae, 0xae, 0xa8, 0x14, 0x18, 0x4d, 0x2d, 0x56, 0xcf, 0xa8, 0xda, 0xfa, 0xd9, 0xc2, + 0xf2, 0xb2, 0xaa, 0xaf, 0x2f, 0x94, 0xb5, 0x9a, 0x2e, 0x6f, 0xf6, 0x03, 0x6f, 0x4b, 0xb9, 0x0e, + 0xbc, 0xd0, 0x7f, 0x5e, 0x57, 0xbf, 0xa7, 0x5c, 0xd3, 0x6b, 0x44, 0x95, 0x8a, 0x55, 0x4d, 0x5b, + 0x5b, 0xc5, 0x8b, 0x95, 0x6d, 0xe5, 0x38, 0x50, 0x7c, 0x2a, 0xda, 0x5a, 0x85, 0xaa, 0x8d, 0x89, + 0xcb, 0x67, 0xe5, 0xb9, 0xc5, 0xe3, 0x45, 0xce, 0xaa, 0xaa, 0x2d, 0x54, 0xb5, 0x15, 0xb5, 0x24, + 0x3f, 0xdc, 0x4f, 0xf3, 0xce, 0x2b, 0x37, 0x82, 0xd9, 0x42, 0xa5, 0xaa, 0x2f, 0xa9, 0xda, 0x7a, + 0xa1, 0x72, 0x4e, 0x3f, 0xb7, 0xaa, 0xae, 0xaf, 0x6a, 0xd5, 0xa2, 0x5a, 0xab, 0xad, 0x97, 0x6b, + 0xee, 0xc7, 0x72, 0x13, 0xbe, 0x51, 0x02, 0xb9, 0x12, 0x6a, 0x22, 0x07, 0xc1, 0x17, 0xf9, 0x1d, + 0xed, 0x71, 0x90, 0xb3, 0x11, 0x9e, 0x6c, 0xb1, 0xe1, 0x84, 0x3d, 0xc1, 0x3f, 0x4e, 0x8b, 0x76, + 0x6a, 0x94, 0x76, 0x48, 0xa7, 0xf6, 0x32, 0x90, 0xeb, 0x38, 0x86, 0xb3, 0xdb, 0x61, 0x7d, 0xda, + 0x35, 0xbd, 0xfb, 0xb4, 0xb9, 0x1a, 0xf9, 0x48, 0x63, 0x1f, 0xc3, 0x3f, 0x48, 0x89, 0x74, 0x52, + 0x3d, 0x39, 0x10, 0xd3, 0x2d, 0x73, 0x00, 0xd5, 0x3a, 0x01, 0xa0, 0xdb, 0x93, 0x94, 0x6b, 0xeb, + 0x85, 0x65, 0x4d, 0x2d, 0x94, 0xce, 0xad, 0x97, 0xd4, 0x65, 0x95, 0x2c, 0x54, 0xb1, 0xea, 0x05, + 0xdf, 0x17, 0xf5, 0xf2, 0x19, 0x55, 0xde, 0x84, 0x6f, 0xcb, 0x81, 0x5c, 0x0d, 0x35, 0x51, 0xdd, + 0x81, 0xf7, 0xf8, 0x78, 0x4c, 0x83, 0xb4, 0xd9, 0x60, 0xc3, 0x5e, 0xda, 0x6c, 0x70, 0x8b, 0xab, + 0x74, 0xcf, 0x45, 0xec, 0x97, 0x85, 0x87, 0x1f, 0x5a, 0xea, 0xe1, 0x0e, 0x3f, 0x8f, 0x65, 0x44, + 0x90, 0xed, 0xc9, 0xb1, 0x18, 0xb2, 0x1f, 0x94, 0x12, 0x58, 0xa8, 0xc5, 0x69, 0xfc, 0x9b, 0x21, + 0x8d, 0xbf, 0x6b, 0x50, 0x59, 0x28, 0x57, 0x4a, 0xeb, 0x9e, 0x9e, 0x54, 0x16, 0xaa, 0xf2, 0xb6, + 0x32, 0x07, 0x6e, 0x09, 0x50, 0xc7, 0x3d, 0x03, 0x2b, 0xa1, 0x50, 0x29, 0xad, 0xaf, 0x54, 0xd4, + 0x95, 0x6a, 0xa5, 0x5c, 0xa4, 0x66, 0x11, 0x55, 0xa7, 0xbd, 0x49, 0x57, 0x5f, 0x51, 0x53, 0x0b, + 0x5a, 0x71, 0x89, 0x74, 0x2b, 0x25, 0x55, 0x7e, 0x58, 0xb9, 0x09, 0x5c, 0x17, 0x60, 0x85, 0x75, + 0x39, 0xab, 0x9a, 0x5a, 0x52, 0x17, 0xca, 0x15, 0x3c, 0x04, 0x2e, 0x57, 0x8b, 0xa7, 0x6b, 0xf1, + 0x7b, 0x15, 0x5c, 0xb7, 0x80, 0x72, 0xbb, 0x4a, 0xbf, 0xa3, 0xdc, 0x0f, 0xee, 0x0e, 0xd4, 0x4d, + 0xd5, 0x8b, 0x4b, 0xeb, 0x9a, 0xba, 0x52, 0xd5, 0x55, 0xc2, 0xc9, 0xfa, 0x52, 0xa1, 0xb6, 0x5e, + 0xae, 0x14, 0xab, 0x2b, 0xab, 0x05, 0xbd, 0x3c, 0xbf, 0x4c, 0x88, 0xeb, 0xd5, 0x75, 0x66, 0xd7, + 0x94, 0x5b, 0xf0, 0xff, 0xa4, 0x41, 0xa6, 0xe6, 0x58, 0x6d, 0xf8, 0x62, 0xbf, 0x6d, 0x9c, 0x00, + 0xc0, 0x46, 0x3b, 0xd6, 0x1e, 0x99, 0xec, 0xb2, 0xfe, 0x2a, 0x90, 0x02, 0x7f, 0x33, 0xbe, 0x5d, + 0xcc, 0xeb, 0x6e, 0xac, 0x76, 0xc8, 0xb8, 0xf6, 0x77, 0xf1, 0xec, 0x62, 0xe1, 0x84, 0xc4, 0xd4, + 0xf3, 0x47, 0x52, 0x03, 0xa8, 0x27, 0x04, 0xc7, 0x03, 0xc2, 0xc7, 0x7a, 0xe0, 0x02, 0x83, 0x94, + 0x2b, 0xc1, 0xe5, 0x5d, 0xba, 0x40, 0x54, 0x60, 0x53, 0x79, 0x11, 0xb8, 0x26, 0xa8, 0x02, 0x2b, + 0xd5, 0x33, 0xaa, 0xa7, 0x77, 0xa5, 0x82, 0x5e, 0x90, 0xb7, 0xe0, 0x97, 0x25, 0x90, 0x59, 0xb1, + 0xf6, 0x10, 0xbc, 0xce, 0x17, 0xfe, 0x0c, 0xc8, 0xb7, 0xd0, 0x85, 0x80, 0x91, 0xc7, 0x7d, 0x84, + 0x4f, 0x48, 0xa2, 0x62, 0xc7, 0xb4, 0x43, 0xc4, 0xfe, 0x4c, 0x5a, 0x44, 0xec, 0x3d, 0x08, 0x89, + 0x89, 0xfd, 0x2f, 0x06, 0x11, 0x7b, 0x88, 0x68, 0x91, 0x32, 0x0b, 0x4e, 0xf8, 0x2f, 0xca, 0x25, + 0xb5, 0xa2, 0x97, 0x17, 0xce, 0xf9, 0xc2, 0x2d, 0x6b, 0xb1, 0xc4, 0xdf, 0xaf, 0xd7, 0x89, 0x9e, + 0x6c, 0xce, 0x80, 0x63, 0xfe, 0xbb, 0x45, 0x3a, 0x5f, 0xc4, 0x6f, 0x1e, 0x86, 0x9f, 0xca, 0x82, + 0x49, 0xda, 0x0b, 0xaf, 0xb5, 0x1b, 0x78, 0xc1, 0x55, 0xe5, 0x8c, 0x1b, 0x8e, 0xb9, 0x83, 0x5e, + 0x69, 0xb5, 0xdc, 0x35, 0x97, 0xf7, 0x8c, 0x57, 0x46, 0xe5, 0xd5, 0x85, 0x5a, 0xcd, 0xb1, 0x6c, + 0x63, 0x0b, 0x15, 0x1a, 0x0d, 0x9b, 0x49, 0xb2, 0x3b, 0x19, 0x7e, 0x31, 0xb6, 0x01, 0x84, 0x1f, + 0x15, 0x28, 0x3f, 0x21, 0x1a, 0xf1, 0x9d, 0x58, 0xa6, 0x8e, 0x18, 0x04, 0xc5, 0x34, 0xe3, 0x35, + 0xc3, 0x6e, 0x90, 0xe1, 0xa0, 0x6d, 0x86, 0x82, 0xb6, 0x35, 0xfb, 0xba, 0x34, 0x18, 0xd7, 0xcd, + 0x1d, 0xf4, 0x2a, 0xab, 0x85, 0x3a, 0x4a, 0x1e, 0x48, 0x8b, 0x2b, 0xba, 0x7c, 0x04, 0xff, 0x51, + 0x8b, 0xba, 0x9c, 0x22, 0x7f, 0x54, 0x5c, 0x34, 0xfe, 0x53, 0xd0, 0x65, 0x09, 0xff, 0x59, 0x51, + 0x75, 0x39, 0x83, 0xff, 0x54, 0x54, 0x5d, 0xce, 0xe2, 0x3f, 0xab, 0xcb, 0xba, 0x9c, 0xc3, 0x7f, + 0xca, 0x35, 0x5d, 0xce, 0xe3, 0x3f, 0xf3, 0x35, 0x5d, 0x1e, 0xc3, 0x7f, 0xce, 0xd4, 0x74, 0x79, + 0x1c, 0xff, 0x29, 0xea, 0xba, 0x0c, 0xf0, 0x9f, 0x87, 0x6a, 0xba, 0x3c, 0x81, 0xff, 0x14, 0x8a, + 0xba, 0x3c, 0x49, 0xfe, 0xa8, 0xba, 0x3c, 0x85, 0xff, 0xd4, 0x6a, 0xba, 0x3c, 0x4d, 0x28, 0xd7, + 0x74, 0xf9, 0x28, 0x29, 0xab, 0xac, 0xcb, 0x32, 0xfe, 0xb3, 0x54, 0xd3, 0xe5, 0xcb, 0xc8, 0xc7, + 0x35, 0x5d, 0x56, 0x48, 0xa1, 0x35, 0x5d, 0xbe, 0x9c, 0x7c, 0x53, 0xd3, 0xe5, 0x63, 0xa4, 0x88, + 0x9a, 0x2e, 0x5f, 0x41, 0xd8, 0x50, 0x75, 0xf9, 0x38, 0xf9, 0x46, 0xd3, 0xe5, 0x2b, 0xc9, 0xab, + 0x8a, 0x2e, 0xcf, 0x10, 0xc6, 0x54, 0x5d, 0x7e, 0x01, 0xf9, 0xa3, 0xe9, 0x32, 0x24, 0xaf, 0x0a, + 0xba, 0x7c, 0x15, 0xbc, 0x06, 0x8c, 0x2f, 0x22, 0x87, 0xe2, 0x0b, 0x65, 0x20, 0x2d, 0x22, 0x27, + 0xb8, 0xae, 0x79, 0x4a, 0x02, 0x57, 0xb2, 0xd5, 0xc5, 0x82, 0x6d, 0xed, 0x2c, 0xa3, 0x2d, 0xa3, + 0x7e, 0x49, 0xbd, 0xd8, 0xb6, 0x6c, 0x07, 0xd6, 0x38, 0xc3, 0x42, 0xdb, 0xef, 0xc3, 0xc8, 0xff, + 0xa8, 0x39, 0x96, 0x67, 0x2a, 0x90, 0x7c, 0x53, 0x01, 0x9b, 0x77, 0x7d, 0x2e, 0xa8, 0xec, 0x57, + 0x83, 0x71, 0x36, 0x1d, 0x2a, 0xbb, 0xb3, 0x37, 0x3f, 0x41, 0xf9, 0x6e, 0xb7, 0x29, 0xd0, 0x19, + 0xd5, 0x3d, 0x51, 0x4b, 0xa3, 0x6e, 0xe6, 0x43, 0x5a, 0xc5, 0xe7, 0xbd, 0x56, 0xa1, 0x73, 0xad, + 0xe2, 0xc1, 0x03, 0xd0, 0x16, 0x6b, 0x20, 0xe5, 0xc1, 0x56, 0x61, 0xa5, 0xf2, 0xc2, 0x82, 0xaa, + 0xa9, 0x15, 0xdd, 0xed, 0xf5, 0x64, 0x09, 0x3e, 0x36, 0x03, 0xc6, 0xcf, 0x5a, 0xf6, 0xf9, 0x4e, + 0xdb, 0xa8, 0x23, 0xf8, 0x14, 0xdd, 0x21, 0x2e, 0xee, 0xda, 0x36, 0x6a, 0x71, 0x18, 0x3f, 0x1e, + 0xdf, 0xc0, 0xea, 0x52, 0x9b, 0xf3, 0x29, 0x85, 0x4c, 0x78, 0xaf, 0x05, 0x13, 0x17, 0xdc, 0xaf, + 0xcb, 0x0d, 0xb7, 0xa6, 0x81, 0xa4, 0xb8, 0xc6, 0xd6, 0xfe, 0x45, 0x26, 0x6f, 0x3c, 0xfc, 0x70, + 0x1a, 0xe4, 0x16, 0x91, 0x53, 0x68, 0x36, 0x83, 0x72, 0x7b, 0x34, 0x28, 0xb7, 0x79, 0x5e, 0x6e, + 0xb7, 0x85, 0x57, 0xa2, 0xd0, 0x6c, 0x86, 0xc8, 0x6c, 0x16, 0x4c, 0x06, 0x04, 0x84, 0x17, 0x75, + 0xd2, 0xcd, 0xe3, 0x1a, 0x97, 0x06, 0x7f, 0xd6, 0x93, 0x9a, 0xca, 0x49, 0xed, 0x0e, 0x91, 0x02, + 0x93, 0x97, 0xd8, 0x67, 0xfc, 0xbd, 0xc3, 0x6b, 0x22, 0xed, 0x8f, 0xf0, 0x2d, 0x03, 0x48, 0x31, + 0xd2, 0xd2, 0xd7, 0x5f, 0xf3, 0x44, 0x65, 0x38, 0x04, 0x33, 0xdd, 0x20, 0x32, 0x7c, 0x6a, 0x0c, + 0xe4, 0xaa, 0x1b, 0x0f, 0xe3, 0xa5, 0xec, 0x77, 0xd2, 0x40, 0x2a, 0x34, 0x1a, 0xf0, 0x06, 0x6e, + 0x6e, 0x61, 0x91, 0x97, 0x5e, 0xd7, 0xe8, 0x3d, 0xc3, 0xdf, 0x19, 0xa0, 0x45, 0xd3, 0x92, 0xe6, + 0x0a, 0x8d, 0x46, 0xf8, 0x46, 0xac, 0x57, 0x60, 0x9a, 0x2f, 0x50, 0xb9, 0x83, 0xf7, 0xfd, 0x88, + 0x30, 0x50, 0x7b, 0x4e, 0x21, 0xa2, 0xcd, 0x3f, 0x94, 0xbf, 0xe4, 0x81, 0x78, 0x26, 0x0d, 0xf2, + 0xcb, 0x66, 0xc7, 0xc1, 0x08, 0xdc, 0xe4, 0x23, 0x70, 0x35, 0x18, 0x77, 0x05, 0xd0, 0x99, 0x49, + 0x91, 0xb6, 0xea, 0x27, 0xc0, 0xf7, 0x04, 0x31, 0x78, 0x88, 0xc7, 0xe0, 0xa5, 0xd1, 0x75, 0x64, + 0x65, 0x85, 0xe0, 0xc0, 0x15, 0x9b, 0xee, 0x2e, 0xf6, 0x83, 0x9e, 0x58, 0x57, 0x38, 0xb1, 0xde, + 0x35, 0x48, 0x91, 0xc9, 0x8b, 0xf6, 0x2b, 0x69, 0x00, 0x70, 0xd9, 0x1a, 0x59, 0x6f, 0xc6, 0x97, + 0xee, 0x63, 0x41, 0xe9, 0xae, 0xf0, 0xd2, 0x7d, 0x79, 0xff, 0xaa, 0xd2, 0xe2, 0x42, 0x04, 0x2c, + 0x03, 0xc9, 0xf4, 0x44, 0x8b, 0xff, 0xc2, 0x0f, 0x7b, 0x42, 0x5d, 0xe5, 0x84, 0x7a, 0xef, 0x80, + 0x25, 0x25, 0x2f, 0xd7, 0xff, 0x9e, 0x06, 0x72, 0x0d, 0x39, 0xe5, 0xce, 0x92, 0xb9, 0xb5, 0xdd, + 0x34, 0xb7, 0xb6, 0x1d, 0xd4, 0x80, 0xa7, 0x63, 0xf5, 0x1e, 0xca, 0xf5, 0x60, 0xca, 0x0c, 0xe6, + 0x63, 0xbb, 0x5d, 0x7c, 0x22, 0x7c, 0x43, 0x10, 0x81, 0x65, 0x1e, 0x81, 0xef, 0x0a, 0x91, 0x4b, + 0x37, 0x47, 0x21, 0xb3, 0xb0, 0x5f, 0xf0, 0xc4, 0x5d, 0xe5, 0xc4, 0x7d, 0xcf, 0x60, 0x64, 0x47, + 0xb2, 0x19, 0xeb, 0x1a, 0x1d, 0x03, 0x5b, 0xdb, 0x5d, 0x03, 0x51, 0x6a, 0xff, 0x40, 0xf4, 0xbf, + 0x52, 0xe2, 0x63, 0x5f, 0x94, 0x99, 0x51, 0x78, 0x64, 0x1b, 0x82, 0x05, 0x70, 0x10, 0x79, 0xfd, + 0xb0, 0x04, 0x72, 0x6c, 0x11, 0xf1, 0x40, 0xf4, 0x22, 0xa2, 0xff, 0x60, 0xfe, 0xc9, 0x01, 0xe6, + 0x0f, 0x51, 0x6b, 0x00, 0x8f, 0x8d, 0x74, 0x80, 0x8d, 0xdb, 0x40, 0x96, 0xf8, 0x6f, 0xb2, 0xd1, + 0xcd, 0x37, 0xde, 0xba, 0x24, 0x54, 0xfc, 0x56, 0xa3, 0x1f, 0x09, 0xa3, 0x30, 0x84, 0x65, 0xc3, + 0x20, 0x28, 0xbc, 0xf3, 0x89, 0x94, 0x37, 0xc1, 0x78, 0x43, 0x06, 0x64, 0xaa, 0x6d, 0xd4, 0x82, + 0x1f, 0x4a, 0x71, 0x5d, 0x70, 0xdd, 0x6a, 0x39, 0xe8, 0x62, 0x60, 0xf9, 0xe5, 0x25, 0x44, 0xce, + 0x07, 0x66, 0x40, 0xde, 0xb1, 0x29, 0x64, 0xcc, 0x17, 0x94, 0x3d, 0x2a, 0x15, 0x30, 0x6b, 0xb6, + 0xea, 0xcd, 0xdd, 0x06, 0xd2, 0x50, 0xd3, 0xc0, 0xbc, 0x77, 0x0a, 0x9d, 0x12, 0x6a, 0xa3, 0x56, + 0x03, 0xb5, 0x1c, 0xca, 0x8d, 0xbb, 0x05, 0x1e, 0xe3, 0x4b, 0xde, 0x38, 0x72, 0x1f, 0x0f, 0xff, + 0x4d, 0x9c, 0xbc, 0x59, 0xa7, 0x8c, 0x6b, 0x19, 0x82, 0xfc, 0x5d, 0x00, 0xd0, 0x1a, 0x9c, 0x31, + 0xd1, 0x05, 0xb6, 0xaa, 0x7c, 0x41, 0x97, 0x9d, 0xbe, 0xea, 0x7d, 0xa0, 0x05, 0x3e, 0x86, 0xbf, + 0xed, 0x41, 0xfe, 0x20, 0x07, 0xf9, 0x6d, 0x31, 0x59, 0x10, 0x43, 0xfb, 0x5f, 0x0c, 0xb0, 0x48, + 0xe4, 0x3c, 0x59, 0x25, 0xe5, 0x05, 0xe0, 0x0a, 0xd7, 0x02, 0x5d, 0x51, 0xd5, 0x52, 0x6d, 0x7d, + 0x6d, 0x75, 0x51, 0x2b, 0x94, 0x54, 0x19, 0xc0, 0x4f, 0xa5, 0x41, 0x96, 0xf8, 0x6a, 0xc0, 0xe2, + 0x10, 0x74, 0x01, 0x7e, 0x2b, 0x15, 0xd7, 0x90, 0xc9, 0xc4, 0x43, 0xca, 0x0e, 0xe9, 0xe0, 0xde, + 0x19, 0xcb, 0x7e, 0x1c, 0x41, 0x28, 0xf9, 0x66, 0x85, 0x9b, 0x52, 0x6d, 0xdb, 0xba, 0xf0, 0xff, + 0x7f, 0x53, 0xc2, 0xb5, 0x3c, 0xe4, 0xa6, 0xd4, 0x83, 0x85, 0xe7, 0x53, 0x53, 0x7a, 0x34, 0xe3, + 0x2d, 0x83, 0x1f, 0x0f, 0x68, 0x43, 0x60, 0xb9, 0x94, 0x8a, 0xb7, 0x5c, 0x52, 0x0a, 0x60, 0xca, + 0x6c, 0x39, 0xc8, 0x6e, 0x19, 0xcd, 0x85, 0xa6, 0xb1, 0x45, 0xa7, 0xa7, 0xc1, 0x5d, 0x41, 0x2a, + 0xd3, 0x72, 0xe0, 0x1b, 0x8d, 0xcf, 0xa1, 0x9c, 0x00, 0xc0, 0x41, 0x3b, 0xed, 0xa6, 0xe1, 0xf8, + 0xca, 0x14, 0x48, 0x81, 0x7f, 0x19, 0xdb, 0x6f, 0xd7, 0x6d, 0x5f, 0x7d, 0xfc, 0x76, 0x3d, 0x9d, + 0x96, 0xba, 0x74, 0xda, 0x1b, 0x4e, 0x33, 0x31, 0x86, 0xd3, 0xa0, 0xb4, 0xb2, 0x31, 0x17, 0x97, + 0xef, 0x8a, 0xe5, 0x18, 0x1c, 0x55, 0x8d, 0xe4, 0xfb, 0x89, 0xc7, 0x25, 0x30, 0x4d, 0x8b, 0x9e, + 0xb7, 0xac, 0xf3, 0x3b, 0x86, 0x7d, 0x1e, 0xde, 0x7b, 0x10, 0x15, 0x81, 0x5f, 0x08, 0xe2, 0xb7, + 0xc8, 0xe3, 0x77, 0x47, 0x78, 0xc5, 0xdd, 0xd2, 0x47, 0xb3, 0xec, 0x7f, 0xbf, 0x87, 0xcc, 0x43, + 0x1c, 0x32, 0xdf, 0x25, 0xcc, 0x60, 0xf2, 0x08, 0x7d, 0xc4, 0x43, 0xc8, 0xed, 0x36, 0x0f, 0x88, + 0xd0, 0x9f, 0x0c, 0x86, 0x90, 0x5b, 0xfa, 0x00, 0x08, 0xc9, 0x40, 0x3a, 0x8f, 0x2e, 0xb1, 0x06, + 0x88, 0xff, 0x06, 0xd9, 0xce, 0x24, 0x87, 0x59, 0x08, 0xcb, 0x23, 0xc1, 0xec, 0x18, 0xcf, 0x42, + 0xb5, 0x3d, 0x04, 0xe4, 0xfe, 0x30, 0xb6, 0xbd, 0xa1, 0xa7, 0x18, 0x28, 0x0f, 0xa3, 0x69, 0x61, + 0xf1, 0x8c, 0x15, 0xf1, 0xd9, 0x4c, 0x1e, 0xb3, 0xaf, 0x66, 0xc0, 0xb8, 0xeb, 0x4d, 0xed, 0xc0, + 0x4f, 0xa6, 0x38, 0x3f, 0xaa, 0x8e, 0xb5, 0x6b, 0xd7, 0x11, 0xb3, 0x00, 0xb1, 0xa7, 0xa0, 0x58, + 0xd2, 0x31, 0x07, 0xd0, 0x3e, 0xa3, 0xdf, 0xfe, 0x01, 0x36, 0x23, 0x3a, 0xc0, 0xc2, 0x37, 0x49, + 0x71, 0x97, 0xa2, 0x9c, 0xf4, 0x6b, 0xc8, 0x79, 0x3e, 0x8e, 0xa1, 0x9f, 0x89, 0xb5, 0x8a, 0xed, + 0x53, 0x13, 0x31, 0xe5, 0xa9, 0x0e, 0x30, 0x19, 0xbb, 0x0a, 0x5c, 0xe9, 0x7e, 0x51, 0x9d, 0x7f, + 0x48, 0x2d, 0xea, 0xeb, 0x64, 0x26, 0xb6, 0xa6, 0x2d, 0xcb, 0x12, 0x7c, 0x24, 0x03, 0x64, 0xca, + 0x1a, 0xe5, 0x53, 0xbf, 0xd4, 0x46, 0xf0, 0x07, 0x0f, 0x79, 0x22, 0x06, 0x9f, 0x0b, 0x76, 0x26, + 0x65, 0x5e, 0x4f, 0xee, 0x0c, 0x97, 0xae, 0x5f, 0x85, 0x10, 0x75, 0x19, 0xa0, 0x55, 0x44, 0x68, + 0x18, 0xfc, 0x9c, 0xa7, 0x00, 0xcb, 0x9c, 0x02, 0xbc, 0x62, 0x00, 0x16, 0x0f, 0x59, 0x0f, 0x3e, + 0x9f, 0x06, 0x53, 0xee, 0x34, 0x62, 0x01, 0x39, 0xf5, 0x6d, 0x78, 0x57, 0xdc, 0xb5, 0x99, 0x0c, + 0xa4, 0x5d, 0xbb, 0xc9, 0xb8, 0xc4, 0x7f, 0xe1, 0x3f, 0xa4, 0xe2, 0xee, 0xae, 0x30, 0xd9, 0x70, + 0x25, 0x87, 0x2c, 0x6c, 0xe3, 0x6d, 0x87, 0xc4, 0x20, 0x98, 0x7c, 0x77, 0xfd, 0xf5, 0x34, 0x00, + 0xba, 0xe5, 0x4d, 0x5a, 0x0f, 0x20, 0x49, 0xee, 0x68, 0x4f, 0x91, 0x97, 0x64, 0xcf, 0x15, 0xbd, + 0x5f, 0xac, 0xf8, 0x58, 0x0a, 0x9f, 0xf0, 0x44, 0xbc, 0xc0, 0x89, 0xf8, 0x94, 0x50, 0x49, 0xc9, + 0xcb, 0xf7, 0x53, 0x69, 0x30, 0x5e, 0xda, 0x6d, 0x37, 0xcd, 0x3a, 0x5e, 0x37, 0xde, 0x14, 0x53, + 0xbc, 0xf0, 0x91, 0xb4, 0xe0, 0xe8, 0xe3, 0x95, 0x11, 0x22, 0x4b, 0xea, 0x34, 0x9b, 0x76, 0x9d, + 0x66, 0x63, 0x9a, 0x35, 0xfb, 0x10, 0x1f, 0x81, 0x7a, 0x4a, 0xe0, 0x68, 0xb5, 0x8d, 0x5a, 0xf3, + 0x36, 0x32, 0x1a, 0x75, 0x7b, 0x77, 0x67, 0xa3, 0x03, 0x0b, 0x71, 0x75, 0x34, 0x60, 0x6d, 0x49, + 0x73, 0xd6, 0x16, 0xf8, 0xda, 0xe0, 0xe0, 0xbe, 0xc4, 0x8b, 0xf7, 0x54, 0x98, 0x95, 0x2f, 0xc0, + 0xc3, 0x00, 0x93, 0x3f, 0x21, 0xab, 0x73, 0x97, 0xc9, 0x25, 0x23, 0x62, 0x72, 0xf9, 0x79, 0x0f, + 0xd9, 0xd3, 0x1c, 0xb2, 0x2f, 0x17, 0xaf, 0xd7, 0x48, 0x36, 0x0f, 0xa6, 0x6b, 0xc8, 0x09, 0x81, + 0xf7, 0x7a, 0x30, 0xb5, 0xe1, 0xbf, 0xf1, 0x20, 0xe6, 0x13, 0x7b, 0x6c, 0xf1, 0x7d, 0x48, 0x74, + 0x69, 0xc6, 0xb3, 0x10, 0x82, 0xae, 0x87, 0x60, 0x3a, 0xce, 0xbe, 0x81, 0xd0, 0x3a, 0x2b, 0xb2, + 0xfc, 0xe4, 0x51, 0xf8, 0x8d, 0x34, 0x98, 0xa8, 0x6d, 0x1b, 0x36, 0x9a, 0xbf, 0xb4, 0x6c, 0xb6, + 0xce, 0xc7, 0xf5, 0x4c, 0x78, 0x63, 0x50, 0xcc, 0x0a, 0xc8, 0x34, 0xcd, 0xd6, 0x79, 0x77, 0xc3, + 0x07, 0xff, 0xf7, 0x43, 0x14, 0xa4, 0x7b, 0x84, 0x28, 0xf0, 0x8c, 0x7e, 0x5e, 0xb9, 0x61, 0xc7, + 0x67, 0x62, 0x85, 0x28, 0xe8, 0x4b, 0x2e, 0x79, 0x31, 0xfe, 0x6e, 0x06, 0xe4, 0x6a, 0xc8, 0xb0, + 0xeb, 0xdb, 0xf0, 0xb1, 0xb4, 0x2f, 0xc2, 0x05, 0x90, 0xdf, 0x34, 0x9b, 0x0e, 0xb2, 0xe9, 0xd6, + 0x77, 0xb0, 0x03, 0xa7, 0x0d, 0x79, 0xbe, 0x69, 0xd5, 0xcf, 0xcf, 0x15, 0x71, 0xbf, 0xd5, 0x72, + 0xe6, 0xdc, 0x63, 0x8a, 0x73, 0x0b, 0x24, 0x93, 0xe6, 0x66, 0x56, 0x1e, 0x04, 0xd9, 0x8e, 0x65, + 0x3b, 0xee, 0x24, 0xf5, 0x96, 0x78, 0x54, 0x6a, 0x96, 0xed, 0x68, 0x34, 0x23, 0x06, 0x73, 0x73, + 0xb7, 0xd9, 0xd4, 0xd1, 0x45, 0xc7, 0x9d, 0x20, 0xba, 0xcf, 0x78, 0x75, 0x66, 0x6d, 0x6e, 0x76, + 0x10, 0x5d, 0x83, 0x64, 0x35, 0xf6, 0xa4, 0x1c, 0x03, 0xd9, 0xa6, 0xb9, 0x63, 0x3a, 0x64, 0xa9, + 0x91, 0xd5, 0xe8, 0x83, 0x72, 0x0b, 0x90, 0x2d, 0x6f, 0x7a, 0x48, 0x19, 0x9d, 0xc9, 0x91, 0x06, + 0xb8, 0x2f, 0x1d, 0x6b, 0xc6, 0x79, 0x74, 0xa9, 0x33, 0x93, 0x27, 0xef, 0xc9, 0x7f, 0xf8, 0x6e, + 0x51, 0xf3, 0x24, 0x95, 0x6b, 0xf8, 0x5c, 0xd9, 0x46, 0x75, 0xcb, 0x6e, 0xb8, 0xb2, 0x09, 0x9f, + 0x2b, 0xb3, 0xef, 0xc4, 0x8c, 0x8a, 0x3d, 0x0b, 0x4f, 0x5e, 0x9f, 0xde, 0x9d, 0x03, 0xd9, 0x45, + 0xdb, 0x68, 0x6f, 0xc3, 0xf7, 0xa5, 0x86, 0xaf, 0x4e, 0x1e, 0xb0, 0xe9, 0x7e, 0xc0, 0x4a, 0x7d, + 0x80, 0xcd, 0x04, 0x80, 0x7d, 0x34, 0x0d, 0x32, 0x6a, 0x63, 0x0b, 0x71, 0xab, 0xfd, 0x54, 0x60, + 0xb5, 0x7f, 0x1c, 0xe4, 0x1c, 0xc3, 0xde, 0x42, 0x0e, 0x93, 0x12, 0x7b, 0xf2, 0xdc, 0xc9, 0xa4, + 0xc0, 0x71, 0xd6, 0x97, 0x83, 0x0c, 0xae, 0x17, 0xd1, 0xc8, 0xe9, 0x53, 0xd7, 0xf5, 0x82, 0x86, + 0xc8, 0x67, 0x0e, 0x97, 0x38, 0x87, 0x39, 0xd3, 0x48, 0x86, 0x6e, 0x3c, 0xb2, 0xfb, 0xf0, 0xc0, + 0x33, 0x07, 0xb3, 0x6e, 0xb5, 0xca, 0x3b, 0xc6, 0x16, 0x9a, 0xc9, 0xd1, 0x99, 0x83, 0x97, 0xe0, + 0xbe, 0x55, 0x77, 0xac, 0x87, 0xcd, 0x99, 0xbc, 0xff, 0x96, 0x24, 0xe0, 0x2a, 0x6c, 0x9b, 0x8d, + 0x06, 0x6a, 0xcd, 0x8c, 0xd1, 0x03, 0x61, 0xf4, 0x69, 0xf6, 0x04, 0xc8, 0x60, 0x1e, 0x30, 0xc6, + 0xb8, 0xff, 0x91, 0x8f, 0x28, 0x93, 0x58, 0xcb, 0xa9, 0x39, 0x46, 0x4e, 0xc1, 0x2f, 0xa5, 0x05, + 0x37, 0xcf, 0x68, 0xe5, 0x7a, 0xeb, 0xfc, 0x4b, 0x40, 0xb6, 0x65, 0x35, 0x50, 0x5f, 0x8d, 0xa7, + 0x5f, 0x29, 0x2f, 0x05, 0x59, 0xd4, 0xd8, 0x42, 0x1d, 0x02, 0xe6, 0xc4, 0xa9, 0x13, 0xd1, 0xb2, + 0xd4, 0xe8, 0xc7, 0x62, 0x3b, 0x74, 0xbd, 0xb8, 0x4d, 0xbe, 0x91, 0xbc, 0x3d, 0x0f, 0x8e, 0xd2, + 0xf6, 0x59, 0xdb, 0xdd, 0xc0, 0xa4, 0x36, 0x10, 0x7c, 0x52, 0xe2, 0xce, 0xcf, 0x77, 0x76, 0x37, + 0xbc, 0xd1, 0x8b, 0x3e, 0x04, 0x1b, 0x51, 0x7a, 0x28, 0x7d, 0xb2, 0x34, 0x68, 0x9f, 0xcc, 0xf5, + 0xaf, 0x92, 0xdb, 0x0c, 0xfd, 0xde, 0x38, 0x47, 0x92, 0xdd, 0xde, 0xb8, 0x47, 0x5f, 0x8a, 0xa7, + 0xb9, 0xc6, 0xa6, 0x83, 0xec, 0x72, 0x83, 0xe8, 0xe3, 0xb8, 0xe6, 0x3e, 0xe2, 0xfe, 0x7e, 0x03, + 0x6d, 0x5a, 0x36, 0x9e, 0x01, 0x8f, 0xd3, 0xfe, 0xde, 0x7d, 0x0e, 0xb4, 0x4f, 0xc0, 0x59, 0xe3, + 0x6e, 0x06, 0x47, 0xcd, 0xad, 0x96, 0x65, 0x23, 0xcf, 0xa5, 0x61, 0x66, 0x92, 0x1e, 0x65, 0xe8, + 0x4a, 0x56, 0x6e, 0x03, 0x97, 0xb5, 0xac, 0x12, 0x6a, 0x33, 0xb9, 0x53, 0x54, 0xa7, 0x48, 0x8b, + 0xd8, 0xff, 0x42, 0x99, 0x05, 0x93, 0x75, 0xab, 0xd9, 0x44, 0x75, 0xfc, 0x54, 0x6e, 0xcc, 0x4c, + 0x13, 0xa2, 0x5c, 0x1a, 0xfc, 0xa2, 0xe8, 0xb4, 0xbc, 0x0b, 0xf8, 0xa1, 0x0d, 0x0f, 0xca, 0x3d, + 0x60, 0xb2, 0xc1, 0xb6, 0x54, 0xeb, 0xa6, 0xd7, 0x6a, 0x42, 0xf3, 0x71, 0x1f, 0xfb, 0x2a, 0x97, + 0x09, 0xaa, 0xdc, 0x22, 0x18, 0x23, 0x9e, 0xe6, 0x58, 0xe7, 0xb2, 0x5d, 0x67, 0x89, 0xc9, 0xcc, + 0xd1, 0xab, 0x54, 0x40, 0x6c, 0x73, 0x45, 0x96, 0x45, 0xf3, 0x32, 0x8b, 0x4d, 0xf0, 0xa3, 0x25, + 0x94, 0x7c, 0xf3, 0xfc, 0xa5, 0x0c, 0x38, 0xba, 0x68, 0x5b, 0xbb, 0xed, 0x8e, 0xdf, 0x3c, 0x3f, + 0x9b, 0xea, 0xd7, 0x3c, 0xaf, 0x05, 0x13, 0x36, 0xeb, 0x37, 0x4f, 0x23, 0x37, 0x88, 0x4a, 0x30, + 0x29, 0xd8, 0x80, 0xa5, 0x83, 0x34, 0x60, 0xbf, 0x19, 0x64, 0xb8, 0x66, 0xd0, 0xad, 0xae, 0xd9, + 0x1e, 0xea, 0xfa, 0xb5, 0xb4, 0xa0, 0xba, 0x76, 0x09, 0x22, 0x44, 0x5d, 0x8b, 0x20, 0xb7, 0x45, + 0x3e, 0x64, 0xda, 0x7a, 0x6b, 0xbc, 0x9a, 0x11, 0xe2, 0x1a, 0xcb, 0xea, 0xcb, 0x55, 0x0a, 0xc8, + 0x55, 0x4c, 0x75, 0xa2, 0xb9, 0x4d, 0x5e, 0x75, 0x3e, 0x9a, 0x01, 0x93, 0x5e, 0xe9, 0xc4, 0x4f, + 0xb4, 0xaf, 0xde, 0xec, 0x5b, 0x0a, 0x7a, 0x1d, 0xa6, 0x14, 0xe8, 0x30, 0x7b, 0x74, 0x71, 0x13, + 0x02, 0x5d, 0xdc, 0x64, 0x48, 0x17, 0x07, 0x5f, 0x2d, 0xc5, 0x0d, 0xca, 0xc2, 0xb7, 0x74, 0x52, + 0xbb, 0xe7, 0x73, 0xdf, 0x15, 0x33, 0x34, 0x4c, 0xff, 0x5a, 0x25, 0xaf, 0x34, 0x9f, 0x4e, 0x83, + 0xcb, 0x68, 0x9f, 0xb7, 0xd6, 0xea, 0x78, 0x3d, 0x0e, 0x7f, 0x9a, 0x9f, 0xd4, 0xa9, 0xe3, 0xed, + 0x42, 0x91, 0x27, 0xde, 0xe2, 0x16, 0xe9, 0xe2, 0xcd, 0xf5, 0xac, 0x81, 0x52, 0x42, 0x96, 0xaf, + 0xf1, 0x9c, 0xb8, 0x63, 0x12, 0x4d, 0x5e, 0x80, 0x6f, 0x96, 0xc0, 0x78, 0x0d, 0x39, 0xcb, 0xc6, + 0x25, 0x6b, 0xd7, 0x81, 0x46, 0x5c, 0x5b, 0xdb, 0x2b, 0x40, 0xae, 0x49, 0xb2, 0x90, 0x0e, 0x67, + 0xfa, 0xd4, 0xb5, 0x3d, 0x8d, 0x55, 0x64, 0x33, 0x81, 0x92, 0xd6, 0xd8, 0xf7, 0xbc, 0x6f, 0x7d, + 0x1c, 0x53, 0xa7, 0xc7, 0xdd, 0x50, 0xec, 0x34, 0x42, 0x86, 0xd0, 0xb0, 0xa2, 0x93, 0x87, 0xe5, + 0xb5, 0x12, 0x98, 0x22, 0xae, 0xd1, 0x0b, 0xc6, 0x9e, 0x65, 0x9b, 0x0e, 0x0a, 0x86, 0x97, 0x8b, + 0x86, 0xe6, 0x04, 0x00, 0xa6, 0x97, 0x8d, 0xf9, 0x7f, 0x07, 0x52, 0xe0, 0x07, 0xd2, 0x82, 0x5b, + 0x20, 0x1c, 0x1f, 0x43, 0x01, 0x41, 0x68, 0xc3, 0x24, 0xaa, 0xf8, 0x11, 0x02, 0x51, 0xb0, 0xeb, + 0xdb, 0xe6, 0x1e, 0x6a, 0x08, 0x02, 0xe1, 0x66, 0xf3, 0x81, 0xf0, 0x08, 0x0d, 0x06, 0x84, 0x9b, + 0xfd, 0x90, 0x80, 0x08, 0x29, 0x3e, 0x79, 0x20, 0xfe, 0x2a, 0x4d, 0x3a, 0xaa, 0x1a, 0x99, 0xaf, + 0x05, 0x5d, 0xcf, 0xa3, 0x41, 0xf0, 0x27, 0x7c, 0xe9, 0xe0, 0x84, 0x6f, 0xa0, 0x6e, 0x88, 0x96, + 0xdd, 0x4f, 0xf0, 0x99, 0x24, 0xba, 0xa1, 0x9e, 0x45, 0x27, 0x2f, 0xf4, 0x4f, 0x48, 0xe0, 0x0a, + 0x6f, 0x7a, 0x54, 0x43, 0x4e, 0xc9, 0xe8, 0x6c, 0x6f, 0x58, 0x86, 0xdd, 0x18, 0x8e, 0x7b, 0x31, + 0x17, 0xdf, 0xb8, 0xc2, 0x83, 0xd0, 0x73, 0xa7, 0xba, 0x27, 0x2f, 0xc3, 0x68, 0x09, 0x91, 0x9b, + 0xe9, 0xbf, 0xe8, 0x81, 0xf5, 0xdd, 0x1c, 0x58, 0xf7, 0x0d, 0xca, 0x62, 0xf2, 0xc0, 0xbd, 0x9f, + 0x76, 0x5b, 0x01, 0xcf, 0x89, 0x95, 0xb8, 0x80, 0x5d, 0x0f, 0xa6, 0x7c, 0xd3, 0xdf, 0x9a, 0xdd, + 0x64, 0xe2, 0xe0, 0x13, 0xf9, 0xb3, 0xde, 0x31, 0x3b, 0xaf, 0xbe, 0x4e, 0x10, 0x62, 0x9d, 0xd7, + 0x67, 0x05, 0x3b, 0xaf, 0xe7, 0xab, 0x83, 0xc3, 0xd3, 0x12, 0x3d, 0xef, 0xc5, 0xf9, 0x99, 0x3c, + 0x1c, 0x17, 0xae, 0x7d, 0x3e, 0x2d, 0x79, 0x61, 0x9f, 0x96, 0x2f, 0x88, 0xfa, 0xb4, 0x74, 0x73, + 0x3b, 0x14, 0x38, 0x85, 0x5c, 0x56, 0xfa, 0x70, 0x70, 0xc8, 0x88, 0x7e, 0x53, 0x02, 0x80, 0xc4, + 0xcf, 0xa6, 0xde, 0x58, 0x4b, 0x20, 0x47, 0xff, 0xba, 0x2e, 0x9d, 0x29, 0xdf, 0xa5, 0xf3, 0x36, + 0x90, 0xdd, 0x33, 0x9a, 0xbb, 0xc8, 0x93, 0x51, 0xf7, 0xb2, 0xed, 0x0c, 0x7e, 0xab, 0xd1, 0x8f, + 0xe0, 0x76, 0x5c, 0xad, 0x78, 0x20, 0xe8, 0x4e, 0x84, 0xf5, 0xe1, 0x86, 0x10, 0x29, 0x32, 0x1e, + 0xe7, 0xe8, 0xaf, 0xef, 0x41, 0xf6, 0x84, 0xa8, 0x7b, 0x47, 0x80, 0xd6, 0x30, 0xb4, 0x41, 0xc8, + 0xe1, 0x23, 0xb4, 0xec, 0x11, 0x18, 0xbc, 0xd2, 0x20, 0xab, 0x5b, 0x35, 0xe4, 0x1c, 0x7c, 0x4a, + 0x22, 0x7c, 0xd8, 0x86, 0x94, 0x3b, 0x8c, 0xc3, 0x36, 0xbd, 0x08, 0x25, 0x2f, 0xba, 0x27, 0xd3, + 0x60, 0x52, 0xb7, 0x8a, 0x9e, 0x89, 0x2d, 0xbe, 0xbb, 0x4c, 0xfc, 0x70, 0xb8, 0x5e, 0x05, 0xfd, + 0x62, 0x0e, 0x14, 0x0e, 0xb7, 0x3f, 0xbd, 0xe4, 0xe5, 0x76, 0x17, 0x38, 0xba, 0xd6, 0x6a, 0x58, + 0x1a, 0x6a, 0x58, 0xcc, 0x5c, 0xac, 0x28, 0x20, 0xb3, 0xdb, 0x6a, 0x58, 0x84, 0xe5, 0xac, 0x46, + 0xfe, 0xe3, 0x34, 0x1b, 0x35, 0x2c, 0xb6, 0xdf, 0x47, 0xfe, 0xc3, 0x77, 0x48, 0x20, 0x83, 0xf3, + 0xc6, 0x17, 0xf5, 0x5f, 0x8a, 0x1e, 0x2c, 0xc2, 0xe4, 0x87, 0x32, 0x23, 0x7b, 0x20, 0x60, 0x40, + 0xa7, 0x4e, 0x34, 0xd7, 0x85, 0x95, 0x17, 0x10, 0x45, 0xc0, 0x70, 0xfe, 0x11, 0x91, 0xc3, 0x48, + 0x3d, 0xd8, 0x16, 0x43, 0xb2, 0x34, 0xc0, 0x20, 0x22, 0x83, 0xc9, 0x62, 0xa1, 0x42, 0xa2, 0x22, + 0xad, 0x54, 0xcf, 0xa8, 0xb2, 0x44, 0x00, 0xc2, 0xb5, 0x49, 0x10, 0x20, 0x4c, 0xfe, 0x9f, 0x20, + 0x40, 0x3d, 0xd8, 0x3e, 0x0c, 0x80, 0x3e, 0x9f, 0x06, 0x53, 0xcb, 0x66, 0xc7, 0x09, 0x73, 0xf2, + 0x8b, 0x88, 0x7b, 0xf0, 0x26, 0xd1, 0x29, 0x33, 0x57, 0x4e, 0xec, 0x80, 0x07, 0x42, 0x6b, 0xfa, + 0xa8, 0x22, 0x46, 0xe3, 0x8d, 0x4a, 0x38, 0xa0, 0x41, 0x58, 0x63, 0x4b, 0x52, 0x78, 0x72, 0xe2, + 0x17, 0x32, 0xfa, 0xc9, 0x49, 0x68, 0xd9, 0xc9, 0xcb, 0xf7, 0xcf, 0xd2, 0xe0, 0x32, 0x5c, 0x7c, + 0x94, 0x01, 0x2b, 0x5c, 0xcc, 0x7d, 0x0d, 0x58, 0xc2, 0x36, 0xf4, 0x7d, 0xbc, 0x0c, 0xc3, 0x86, + 0xde, 0x8f, 0xe8, 0x88, 0xc5, 0x1c, 0x62, 0xb0, 0xed, 0x27, 0xe6, 0x08, 0x83, 0xed, 0xe0, 0x62, + 0x8e, 0x36, 0xda, 0x0e, 0x28, 0xe6, 0x43, 0x33, 0xc5, 0x3e, 0x93, 0x06, 0x53, 0x85, 0x76, 0xbb, + 0x79, 0x49, 0x67, 0x27, 0x7f, 0x84, 0x4c, 0xb1, 0x81, 0x03, 0x44, 0xe9, 0x7d, 0xc7, 0x67, 0x85, + 0x8f, 0x05, 0x70, 0x7c, 0x0c, 0xe3, 0x58, 0x40, 0x14, 0xc1, 0xe4, 0x45, 0xfb, 0x74, 0x96, 0x76, + 0xc4, 0x2c, 0xb0, 0xc7, 0x5b, 0xd3, 0xd1, 0x91, 0x3d, 0x22, 0xc3, 0x18, 0x29, 0xf7, 0x81, 0xdc, + 0xa6, 0x65, 0xef, 0x18, 0xee, 0xde, 0xd0, 0x0d, 0x61, 0xea, 0xc4, 0x62, 0x67, 0x2c, 0x90, 0x8f, + 0x35, 0x96, 0x09, 0x8f, 0x68, 0xaf, 0x32, 0xdb, 0xec, 0xec, 0x3b, 0xfe, 0x4b, 0x82, 0xda, 0xd0, + 0x23, 0xf0, 0x15, 0xd4, 0x71, 0x10, 0xdd, 0x9d, 0x1f, 0xd3, 0xf8, 0x44, 0x65, 0x16, 0x4c, 0xb2, + 0x84, 0x05, 0xb3, 0x89, 0x3a, 0xc4, 0x93, 0x66, 0x4c, 0xe3, 0xd2, 0xf0, 0xd2, 0xcb, 0xec, 0x3c, + 0xd4, 0xb1, 0x5a, 0xc4, 0xcb, 0x6b, 0x4c, 0x63, 0x4f, 0x64, 0x8b, 0x98, 0x7e, 0xe7, 0x75, 0x77, + 0xe3, 0xe4, 0x83, 0xee, 0x64, 0xf8, 0xe5, 0x41, 0x86, 0x1e, 0xe1, 0x98, 0x25, 0x33, 0x20, 0xdf, + 0xd9, 0xad, 0xd7, 0x11, 0x6a, 0x30, 0xf7, 0x4c, 0xf7, 0x51, 0x30, 0x9a, 0x89, 0xf0, 0x40, 0x75, + 0x38, 0xe1, 0x4c, 0x66, 0x57, 0x41, 0x8e, 0x6a, 0x81, 0x32, 0x09, 0xc6, 0x56, 0x0c, 0xfb, 0x7c, + 0xc3, 0xba, 0xd0, 0xa2, 0x0e, 0x75, 0xab, 0xcc, 0x10, 0x22, 0xa7, 0x30, 0xc5, 0x87, 0x6a, 0xd5, + 0x0a, 0x0d, 0xed, 0x59, 0xaa, 0xb2, 0xd0, 0x9e, 0xb5, 0x33, 0x8b, 0x72, 0x46, 0x99, 0x06, 0x60, + 0x51, 0x2b, 0xac, 0x2e, 0xad, 0x93, 0x2f, 0xb2, 0xf0, 0x33, 0x97, 0x83, 0x5c, 0x79, 0x87, 0x68, + 0xf3, 0xdb, 0xa7, 0x82, 0x17, 0xbb, 0x4d, 0xb6, 0x2c, 0xcc, 0xe6, 0xaa, 0x61, 0x1b, 0x3b, 0x9d, + 0xa8, 0x35, 0x23, 0xcd, 0xed, 0x5d, 0xea, 0x56, 0x09, 0x64, 0x5b, 0x3a, 0xa2, 0x71, 0x64, 0x94, + 0x7f, 0x09, 0x8e, 0x6e, 0xb0, 0x23, 0x27, 0x1d, 0x46, 0x39, 0x1d, 0xee, 0x17, 0xd2, 0x45, 0x79, + 0x9e, 0xcf, 0xb9, 0x74, 0x44, 0xeb, 0x26, 0xa6, 0x7c, 0x2f, 0x98, 0xde, 0x61, 0x52, 0x61, 0xe4, + 0xa5, 0x70, 0xef, 0xf6, 0x2e, 0xf2, 0x2b, 0x5c, 0xc6, 0xa5, 0x23, 0x5a, 0x17, 0x29, 0xa5, 0x0a, + 0xc0, 0xb6, 0xb3, 0xd3, 0x64, 0x84, 0x33, 0xe1, 0xaa, 0xdc, 0x45, 0x78, 0xc9, 0xcb, 0xb4, 0x74, + 0x44, 0x0b, 0x90, 0x50, 0x96, 0xc1, 0xb8, 0x73, 0xd1, 0x61, 0xf4, 0xb2, 0xe1, 0x5b, 0x2a, 0x5d, + 0xf4, 0x74, 0x37, 0xcf, 0xd2, 0x11, 0xcd, 0x27, 0xa0, 0x94, 0xc1, 0x58, 0x7b, 0x83, 0x11, 0xcb, + 0xf5, 0xb8, 0x94, 0xa1, 0x37, 0xb1, 0xd5, 0x0d, 0x8f, 0x96, 0x97, 0x1d, 0x33, 0x56, 0xef, 0xec, + 0x31, 0x5a, 0xf9, 0xd8, 0x8c, 0x15, 0xdd, 0x3c, 0x98, 0x31, 0x8f, 0x80, 0x52, 0x06, 0xe3, 0x9d, + 0x96, 0xd1, 0xee, 0x6c, 0x5b, 0x4e, 0x67, 0x66, 0xac, 0xcb, 0x77, 0x27, 0x9c, 0x5a, 0x8d, 0xe5, + 0xd1, 0xfc, 0xdc, 0xca, 0x4b, 0xc1, 0x15, 0xbb, 0x24, 0x40, 0xaf, 0x7a, 0xd1, 0xec, 0x38, 0x66, + 0x6b, 0xcb, 0x8d, 0x00, 0x42, 0x7b, 0xa1, 0xde, 0x2f, 0x95, 0x7b, 0x98, 0xbf, 0x2c, 0x20, 0x6d, + 0xfa, 0xa6, 0x38, 0x22, 0xf6, 0x7d, 0x66, 0xef, 0x01, 0x99, 0x1d, 0xdc, 0x21, 0x4c, 0xc4, 0xce, + 0xbc, 0x42, 0x7a, 0x01, 0x9c, 0x09, 0x8f, 0xa7, 0x2d, 0x6b, 0xd5, 0xb6, 0xb6, 0x6c, 0xd4, 0xe9, + 0x30, 0x0f, 0x99, 0x40, 0x0a, 0xee, 0x25, 0xcc, 0xce, 0x8a, 0xb9, 0x65, 0x1b, 0x01, 0x2f, 0xc1, + 0x60, 0x12, 0xbc, 0x11, 0x4c, 0x06, 0x5b, 0x14, 0xee, 0x99, 0x8d, 0xb6, 0x79, 0xda, 0x33, 0x8e, + 0xb2, 0x27, 0x78, 0x3d, 0x98, 0xe6, 0x15, 0x38, 0x30, 0x20, 0x49, 0x6e, 0x7f, 0x09, 0xaf, 0x03, + 0x47, 0xbb, 0x5a, 0x91, 0x7b, 0x62, 0x2d, 0xe5, 0x9f, 0x58, 0xbb, 0x16, 0x00, 0x5f, 0x65, 0x7b, + 0x92, 0x79, 0x21, 0x18, 0xf7, 0x94, 0xb0, 0xe7, 0x07, 0xf3, 0x60, 0xcc, 0x55, 0xac, 0x5e, 0xef, + 0xf1, 0x18, 0xd4, 0x0a, 0x98, 0x86, 0xd8, 0x64, 0x8e, 0x4b, 0x83, 0x6f, 0x4b, 0x83, 0x71, 0x4f, + 0xa3, 0x7a, 0x52, 0x51, 0x19, 0x34, 0xe9, 0xf0, 0x2d, 0xc1, 0x30, 0x0d, 0x0d, 0x82, 0xf4, 0x0a, + 0x70, 0xe5, 0x6e, 0x07, 0x2d, 0x98, 0x76, 0xc7, 0xd1, 0xac, 0x0b, 0x0b, 0x96, 0xed, 0x05, 0x90, + 0x71, 0x6f, 0x35, 0x0a, 0x79, 0x8d, 0xc7, 0xf7, 0x06, 0x22, 0x9e, 0xa9, 0xc8, 0x66, 0x9e, 0x41, + 0x7e, 0x02, 0xa6, 0xeb, 0xd8, 0x46, 0xab, 0xd3, 0xb6, 0x3a, 0x48, 0xb3, 0x2e, 0x74, 0x0a, 0xad, + 0x46, 0xd1, 0x6a, 0xee, 0xee, 0xb4, 0x3a, 0x6c, 0x60, 0x0e, 0x7b, 0x3d, 0xfb, 0x22, 0x90, 0xc1, + 0xfc, 0xe1, 0xce, 0xba, 0x58, 0x5d, 0x5e, 0xa6, 0x77, 0xb6, 0xc8, 0x47, 0x94, 0x71, 0x90, 0xd5, + 0x0b, 0xf3, 0xcb, 0xaa, 0x9c, 0x82, 0xdf, 0x07, 0xc6, 0xdc, 0x06, 0xb2, 0xef, 0xe6, 0x87, 0x02, + 0x18, 0x73, 0x9b, 0x0c, 0xeb, 0x5e, 0x6f, 0xe8, 0xda, 0xe5, 0xa8, 0xed, 0x18, 0xb6, 0x43, 0x1c, + 0xe6, 0x5c, 0x22, 0xf3, 0x46, 0x07, 0x69, 0x5e, 0xb6, 0xd9, 0x97, 0x30, 0x0e, 0x14, 0x30, 0x5d, + 0x58, 0x5e, 0x5e, 0xaf, 0x92, 0xdb, 0x45, 0x96, 0xca, 0x95, 0x45, 0x3a, 0x4c, 0x95, 0x17, 0x2b, + 0x55, 0x4d, 0xa5, 0xa3, 0x54, 0x4d, 0x4e, 0xcd, 0x6a, 0xcc, 0xc5, 0x1b, 0x80, 0x1c, 0xd5, 0x56, + 0x3a, 0x26, 0x79, 0x23, 0x54, 0x0a, 0x3f, 0xa9, 0x17, 0xe9, 0x46, 0x84, 0x9c, 0x56, 0x72, 0x20, + 0xbd, 0xba, 0x21, 0x4b, 0x78, 0xa4, 0xc2, 0xaa, 0x46, 0x43, 0x4e, 0xeb, 0x17, 0x1d, 0x1a, 0x72, + 0xba, 0xd8, 0xd9, 0x93, 0x73, 0xfe, 0x65, 0x49, 0x6d, 0x82, 0x18, 0xef, 0x26, 0x1e, 0xe7, 0x6c, + 0x84, 0x87, 0x7d, 0xaf, 0x49, 0xe7, 0x6b, 0xd2, 0x02, 0x07, 0x1d, 0x7a, 0x52, 0x12, 0x1b, 0xed, + 0xdf, 0xbc, 0x3f, 0x28, 0xb8, 0x02, 0xa6, 0xcb, 0x15, 0x5d, 0xd5, 0x2a, 0x85, 0x65, 0x6f, 0xbc, + 0xdf, 0x37, 0x05, 0x48, 0xf3, 0x53, 0x00, 0x29, 0x22, 0x50, 0x78, 0x46, 0x99, 0x01, 0xc7, 0x2a, + 0x55, 0xb6, 0xcf, 0x52, 0x23, 0x91, 0xe4, 0x57, 0x56, 0xab, 0x9a, 0x2e, 0x67, 0x95, 0xe3, 0x40, + 0xa1, 0xff, 0x71, 0xa6, 0x62, 0xa1, 0x52, 0x54, 0x97, 0xd5, 0x92, 0x9c, 0x83, 0xbf, 0x26, 0xb9, + 0x88, 0xc1, 0x4f, 0x4a, 0x60, 0xea, 0x8c, 0xd1, 0x34, 0x71, 0x0f, 0xaa, 0x93, 0xdb, 0xd4, 0xfa, + 0x5e, 0xb7, 0xf6, 0x9a, 0xa0, 0x67, 0x9f, 0xce, 0x43, 0x72, 0x7f, 0x84, 0x20, 0x69, 0x89, 0x73, + 0x5c, 0x69, 0x21, 0x38, 0xbd, 0xcb, 0xc3, 0xe9, 0x2c, 0x87, 0x53, 0xf1, 0x60, 0xe4, 0xc5, 0xc0, + 0x7b, 0x7b, 0x3c, 0xf0, 0x64, 0x30, 0xb9, 0x56, 0x29, 0xac, 0xe9, 0x4b, 0x55, 0xad, 0xfc, 0x4a, + 0xb5, 0x24, 0xa7, 0xf7, 0xc3, 0x29, 0xf1, 0x70, 0x66, 0xf0, 0xe3, 0x42, 0x55, 0x9b, 0x2f, 0x97, + 0x4a, 0x6a, 0x45, 0xce, 0x2a, 0x57, 0x82, 0xcb, 0x6b, 0xaa, 0x76, 0xa6, 0x5c, 0x54, 0xd7, 0xd7, + 0x2a, 0x85, 0x33, 0x85, 0xf2, 0x32, 0x69, 0xef, 0xb9, 0x08, 0xd8, 0xf3, 0xf0, 0x87, 0x32, 0x00, + 0xd0, 0xaa, 0xe3, 0xa9, 0x69, 0x30, 0x7c, 0xf3, 0xef, 0x8b, 0xce, 0xc2, 0x7d, 0x32, 0x21, 0xb3, + 0xf0, 0x32, 0x18, 0xb3, 0xd9, 0x0b, 0xb6, 0x63, 0xd6, 0x8f, 0x0e, 0xfd, 0xeb, 0x52, 0xd3, 0xbc, + 0xec, 0xf0, 0x29, 0x91, 0x49, 0x77, 0x28, 0x63, 0x62, 0x48, 0x2e, 0x0c, 0xa7, 0x15, 0xc2, 0x37, + 0xa6, 0xc0, 0x34, 0x5f, 0x31, 0x5c, 0x09, 0x32, 0xcb, 0x88, 0x57, 0x09, 0x3e, 0x73, 0x60, 0xc2, + 0x31, 0x7b, 0x67, 0xdf, 0xbe, 0xd4, 0xed, 0x35, 0xd3, 0x6e, 0xaf, 0x29, 0xc1, 0xa7, 0x24, 0x30, + 0x45, 0x49, 0xae, 0x75, 0x50, 0xd1, 0xe8, 0x20, 0xee, 0x6c, 0xd4, 0x69, 0x90, 0xdf, 0xa5, 0xc9, + 0x51, 0xee, 0x33, 0x5c, 0x7e, 0x6f, 0xc8, 0x64, 0xcf, 0x9a, 0x4b, 0x61, 0xb6, 0x0a, 0xf2, 0x2c, + 0x0d, 0x33, 0x52, 0x3b, 0x5d, 0x5e, 0x95, 0x8f, 0x28, 0x57, 0x80, 0xcb, 0x56, 0x55, 0xad, 0x56, + 0xc5, 0x52, 0x5c, 0xd5, 0xaa, 0xa4, 0x03, 0x92, 0x53, 0x58, 0xb8, 0x58, 0x8c, 0xcb, 0x6a, 0x69, + 0x51, 0x5d, 0x9f, 0x2f, 0xd4, 0x54, 0x39, 0xad, 0x1c, 0x05, 0x13, 0x95, 0xaa, 0xae, 0xd6, 0xd6, + 0x4b, 0xe5, 0x82, 0x76, 0x4e, 0x96, 0xc4, 0x8d, 0x0a, 0xdd, 0x8c, 0x1e, 0xd8, 0xa8, 0x10, 0x45, + 0x70, 0x04, 0x91, 0xd7, 0xc7, 0x81, 0x4c, 0x19, 0x09, 0xcc, 0x7e, 0xde, 0x2c, 0xd1, 0x68, 0xd8, + 0xeb, 0x02, 0xa7, 0xba, 0xdd, 0xe3, 0x2e, 0x69, 0xfe, 0xb8, 0x0b, 0x67, 0x85, 0x90, 0xba, 0x6d, + 0xc4, 0xa2, 0xde, 0x75, 0x81, 0x0d, 0xbd, 0xf0, 0xf8, 0xcd, 0xc9, 0x79, 0xd7, 0x45, 0x16, 0x3f, + 0x9a, 0xa8, 0xae, 0x2c, 0x8e, 0xb3, 0x1a, 0x17, 0x99, 0xe8, 0x60, 0xd6, 0x1f, 0x11, 0x74, 0x2a, + 0xe1, 0x36, 0x54, 0x23, 0x22, 0x3c, 0x8b, 0x41, 0xf0, 0x01, 0x01, 0xa7, 0x92, 0x7e, 0x1c, 0x24, + 0x8f, 0xc2, 0x3f, 0xa4, 0x41, 0xa6, 0x66, 0xd9, 0xce, 0xb0, 0x30, 0x10, 0x3d, 0x18, 0x1f, 0x90, + 0x40, 0x2d, 0xdc, 0x60, 0x95, 0xdc, 0xc1, 0xf8, 0xe8, 0xf2, 0x47, 0x70, 0x30, 0xfe, 0x28, 0x98, + 0xa6, 0x9c, 0x78, 0x41, 0xe3, 0xfe, 0x9e, 0x45, 0xef, 0x3f, 0x1d, 0x17, 0x91, 0x59, 0x30, 0x19, + 0x38, 0xb8, 0xe4, 0x5d, 0x04, 0x11, 0x4c, 0xe3, 0xef, 0x9f, 0x8e, 0xbc, 0xd8, 0x9f, 0xe7, 0x66, + 0x68, 0x3d, 0x93, 0xc8, 0x19, 0xfb, 0x88, 0xc2, 0x93, 0x47, 0xe4, 0x11, 0xff, 0x8a, 0xc6, 0xa1, + 0x22, 0x20, 0xda, 0x32, 0x3c, 0x21, 0xc4, 0xdb, 0x45, 0x94, 0x86, 0xdd, 0x32, 0xa2, 0xcb, 0x4f, + 0x1e, 0x87, 0x7f, 0x64, 0xdb, 0xde, 0x85, 0x3d, 0xc3, 0x6c, 0x1a, 0x1b, 0x4d, 0x81, 0xd8, 0x36, + 0xbf, 0x21, 0xe8, 0xe4, 0xeb, 0x55, 0x95, 0x2b, 0x2f, 0xf4, 0x16, 0xcd, 0x71, 0xdb, 0xb3, 0x6a, + 0xb8, 0x27, 0xa6, 0x78, 0x9b, 0x80, 0x4b, 0x4f, 0xf3, 0xbf, 0x14, 0xf2, 0xe8, 0x8d, 0xc5, 0x4f, + 0xf2, 0x08, 0xfc, 0x98, 0x04, 0x26, 0x0a, 0x8d, 0xc6, 0x02, 0x32, 0x9c, 0x5d, 0x1b, 0x35, 0x84, + 0x86, 0x08, 0x5e, 0x44, 0xe3, 0x41, 0x49, 0x7c, 0x32, 0xf6, 0x55, 0x00, 0xfb, 0x7b, 0x03, 0x97, + 0x97, 0xa1, 0x74, 0x49, 0xf1, 0x2e, 0x0e, 0x88, 0xcd, 0x44, 0xf2, 0x80, 0xbc, 0x45, 0x02, 0xd3, + 0x74, 0x9e, 0x30, 0x6c, 0x4c, 0x7e, 0x25, 0x88, 0x49, 0x95, 0xc7, 0xe4, 0xae, 0x28, 0x71, 0xf0, + 0xec, 0x0c, 0x05, 0x16, 0xdf, 0x47, 0x47, 0xe3, 0x60, 0xb9, 0x7f, 0x60, 0x3e, 0x92, 0x47, 0xe6, + 0x5b, 0x00, 0x80, 0x80, 0xe7, 0xfb, 0x1f, 0x01, 0x3f, 0x2c, 0x03, 0xfc, 0x02, 0x5b, 0x7f, 0xd4, + 0xb8, 0xb0, 0x43, 0xbc, 0xc3, 0x7b, 0xaa, 0x87, 0xc3, 0x7b, 0xac, 0x51, 0xe5, 0xdb, 0x82, 0x73, + 0x5e, 0xe6, 0x8b, 0xde, 0x77, 0x70, 0x1f, 0xb0, 0x97, 0x7b, 0x56, 0x60, 0xf2, 0xdb, 0x8f, 0x95, + 0xe4, 0x2f, 0x0d, 0x8e, 0xf2, 0xa8, 0x56, 0x66, 0xc0, 0x31, 0x4d, 0x2d, 0x94, 0xaa, 0x95, 0xe5, + 0x73, 0xc1, 0xb7, 0x72, 0x06, 0xbe, 0xd3, 0x5f, 0xb9, 0x24, 0x82, 0xe9, 0x7f, 0x14, 0xec, 0x20, + 0x79, 0x41, 0x46, 0x2d, 0x65, 0xe0, 0x7f, 0x11, 0xe8, 0xf2, 0x62, 0x90, 0x7d, 0xde, 0x42, 0xf4, + 0x75, 0x09, 0x64, 0x88, 0x05, 0x6f, 0x57, 0x14, 0xa0, 0x12, 0xb8, 0xc6, 0x68, 0xb7, 0x51, 0xab, + 0xe1, 0xed, 0x4d, 0x2c, 0xd8, 0xd6, 0x4e, 0xd5, 0xd9, 0x46, 0x36, 0xfe, 0xa4, 0xc3, 0x36, 0x58, + 0xa2, 0x3f, 0x82, 0x5f, 0x17, 0x74, 0xa0, 0xe1, 0x65, 0x1d, 0x61, 0x34, 0xbc, 0x6b, 0x7f, 0xbb, + 0xbc, 0x2a, 0xa4, 0x5d, 0x2e, 0x9b, 0xad, 0xf3, 0xc1, 0xb6, 0xf9, 0xdb, 0x02, 0xbe, 0x37, 0x7d, + 0xf9, 0x39, 0xe4, 0xe3, 0x0e, 0xaf, 0xce, 0x05, 0x3a, 0xd8, 0x37, 0x48, 0x40, 0xf6, 0x2f, 0x4f, + 0x62, 0x01, 0x9c, 0xab, 0xbc, 0x2f, 0x54, 0x9b, 0x46, 0x54, 0xf0, 0x7d, 0xa1, 0xdc, 0x04, 0xe5, + 0x46, 0x30, 0x5d, 0xdf, 0x46, 0xf5, 0xf3, 0xe5, 0x96, 0xbb, 0x03, 0x4a, 0x11, 0xee, 0x4a, 0xe5, + 0x8f, 0xef, 0x9d, 0xe6, 0x21, 0xe5, 0xcd, 0x2b, 0x9c, 0xdc, 0x82, 0x4c, 0x85, 0x34, 0x4a, 0x1f, + 0x98, 0x0a, 0x07, 0xcc, 0xdd, 0x03, 0x51, 0x15, 0x43, 0xa6, 0x32, 0xd8, 0x05, 0xab, 0xd5, 0x55, + 0xbd, 0x5c, 0xad, 0xac, 0xaf, 0xd5, 0xd4, 0xd2, 0xfa, 0xbc, 0xdb, 0xf8, 0x6a, 0xb2, 0x04, 0xbf, + 0x99, 0x06, 0x79, 0xca, 0x56, 0xa7, 0xeb, 0x72, 0xa3, 0x60, 0xb8, 0x8d, 0xd4, 0xbe, 0x70, 0x1b, + 0xf0, 0xc3, 0xb1, 0x4f, 0x47, 0x7a, 0x82, 0x60, 0xe5, 0x84, 0xb4, 0x94, 0x57, 0x80, 0x3c, 0x05, + 0xd9, 0x75, 0x8c, 0x38, 0x11, 0xd2, 0x4e, 0x18, 0x19, 0xcd, 0xfd, 0x3c, 0xe6, 0x49, 0xc9, 0x3e, + 0x6c, 0x24, 0x3f, 0xe7, 0x78, 0xef, 0x04, 0xc8, 0x2f, 0x99, 0x1d, 0xc7, 0xb2, 0x2f, 0xc1, 0x27, + 0x52, 0x20, 0x7f, 0x06, 0xd9, 0x1d, 0xd3, 0x6a, 0xed, 0xdb, 0xc3, 0xbc, 0x16, 0x4c, 0xb4, 0x6d, + 0xb4, 0x67, 0x5a, 0xbb, 0x1d, 0xdf, 0x64, 0x13, 0x4c, 0x52, 0x20, 0x18, 0x33, 0x76, 0x9d, 0x6d, + 0xcb, 0xf6, 0x4f, 0x22, 0xba, 0xcf, 0xca, 0x09, 0x00, 0xe8, 0xff, 0x8a, 0xb1, 0x83, 0xd8, 0xce, + 0x6c, 0x20, 0x45, 0x51, 0x40, 0xc6, 0x31, 0x77, 0x10, 0x0b, 0x2e, 0x44, 0xfe, 0x2b, 0x33, 0x20, + 0x4f, 0x82, 0x84, 0x94, 0x1b, 0x2c, 0xb8, 0x90, 0xfb, 0x08, 0x7f, 0x4e, 0x02, 0x13, 0x8b, 0xc8, + 0x61, 0xac, 0x76, 0x82, 0xa7, 0xff, 0xfb, 0xdc, 0x31, 0xd6, 0x34, 0x3a, 0x6e, 0x36, 0xcf, 0x2e, + 0xcb, 0x27, 0xfa, 0x81, 0x8e, 0xa4, 0x40, 0xbc, 0x31, 0xf8, 0x64, 0x3a, 0xee, 0xc9, 0x0d, 0x26, + 0xcc, 0xb9, 0x00, 0x83, 0xa1, 0xba, 0x35, 0xb6, 0xc7, 0xbe, 0x60, 0x9d, 0xf0, 0xd5, 0x3d, 0x29, + 0x31, 0x32, 0x9a, 0xf7, 0x75, 0xcc, 0x33, 0x1f, 0xfd, 0x39, 0x49, 0x5e, 0xbd, 0xfe, 0x56, 0x02, + 0x13, 0xb5, 0x6d, 0xeb, 0x02, 0x63, 0x00, 0x7e, 0x5f, 0x3c, 0xa8, 0xae, 0x06, 0xe3, 0x7b, 0x5d, + 0x30, 0xf9, 0x09, 0xe1, 0xd7, 0xd3, 0xc0, 0xd7, 0x4b, 0xa2, 0x30, 0x05, 0x98, 0x1b, 0xfa, 0xb5, + 0x32, 0xca, 0x77, 0x81, 0x3c, 0xe3, 0x9a, 0x59, 0x56, 0xa2, 0x01, 0x76, 0x3f, 0x0e, 0x56, 0x30, + 0xc3, 0x57, 0x50, 0x0c, 0xf9, 0xf0, 0xca, 0x8d, 0x20, 0xca, 0x64, 0x9a, 0x9c, 0x25, 0x74, 0x81, + 0x2f, 0x0e, 0x01, 0x78, 0xf8, 0x77, 0xa9, 0xb8, 0xf6, 0x47, 0x4f, 0x02, 0x1e, 0x07, 0x07, 0x8a, + 0xda, 0xd9, 0x97, 0x5c, 0xf2, 0xf2, 0x7c, 0xe2, 0x0a, 0x90, 0x59, 0x30, 0x9b, 0x08, 0xaf, 0xdf, + 0xf3, 0xd5, 0xcd, 0xcd, 0xa6, 0x65, 0x70, 0x0b, 0xf7, 0xee, 0x0e, 0xfb, 0x16, 0x20, 0xbb, 0x7e, + 0xa6, 0x96, 0xb3, 0x6a, 0xb6, 0x5a, 0x9e, 0x2b, 0xfc, 0xbe, 0x74, 0xde, 0xd4, 0x15, 0x79, 0x82, + 0x0f, 0x73, 0x30, 0xc7, 0x4a, 0x0f, 0x69, 0x2f, 0x37, 0x82, 0xe9, 0x8d, 0x4b, 0x0e, 0xea, 0xb0, + 0xaf, 0x58, 0xb1, 0x19, 0xad, 0x2b, 0x15, 0x3e, 0x1d, 0xeb, 0xa4, 0x5f, 0x44, 0x81, 0x62, 0x32, + 0x37, 0x06, 0x98, 0xa3, 0x1c, 0x03, 0x72, 0xa5, 0x5a, 0x52, 0xc9, 0xf6, 0x7e, 0x4d, 0x2f, 0x68, + 0xba, 0x5a, 0x92, 0xb7, 0x94, 0x2b, 0xc1, 0xe5, 0x0b, 0xe5, 0x65, 0x9a, 0x7a, 0x4e, 0xd5, 0xd7, + 0x57, 0xcb, 0x95, 0x8a, 0x5a, 0x92, 0xb7, 0xe1, 0xa7, 0x24, 0x30, 0x81, 0xe7, 0x55, 0x2e, 0x3a, + 0x81, 0xd9, 0xe3, 0x0c, 0xc8, 0x5b, 0xad, 0xe6, 0x25, 0x7f, 0xee, 0xe8, 0x3e, 0x0a, 0xe1, 0xf4, + 0x9f, 0x63, 0x4f, 0x6f, 0x88, 0xd8, 0x02, 0xbc, 0x84, 0x63, 0xb5, 0x69, 0x36, 0xbb, 0xb1, 0xca, + 0x6a, 0x5d, 0xa9, 0x3d, 0x30, 0x95, 0x7a, 0x62, 0xfa, 0xcb, 0xb1, 0x26, 0x3d, 0x7d, 0x98, 0x13, + 0xc3, 0x75, 0x69, 0x58, 0xb8, 0xc2, 0xe7, 0x24, 0x90, 0x5b, 0x6b, 0x13, 0xe4, 0x9e, 0x0d, 0x6c, + 0xd6, 0xef, 0x73, 0xc8, 0xc3, 0x9d, 0x54, 0xd3, 0xaa, 0x1b, 0xcd, 0xc0, 0x35, 0xf3, 0x7e, 0x82, + 0x72, 0x37, 0xf3, 0x3b, 0xa0, 0x4e, 0xe4, 0x37, 0x46, 0x46, 0x45, 0x23, 0x92, 0x08, 0x38, 0x37, + 0xde, 0x06, 0x2e, 0x6b, 0x98, 0x1d, 0x63, 0xa3, 0x89, 0xd4, 0x56, 0xdd, 0xbe, 0x44, 0x2b, 0x4d, + 0x3d, 0xca, 0xf7, 0xbf, 0x50, 0xee, 0x03, 0xd9, 0x8e, 0x73, 0xa9, 0x49, 0xa7, 0x4d, 0x41, 0x5f, + 0xc8, 0xd0, 0xa2, 0x6a, 0xf8, 0x73, 0x8d, 0xe6, 0x82, 0xff, 0x98, 0x8a, 0x7b, 0x02, 0x8f, 0xe4, + 0xa5, 0xa2, 0x09, 0x77, 0x06, 0xdf, 0x36, 0x3a, 0x9e, 0x33, 0x38, 0xfe, 0x0f, 0x1f, 0x8f, 0x75, + 0x4c, 0x2e, 0x9c, 0x76, 0xf2, 0x7d, 0xea, 0xd7, 0xd2, 0x60, 0xac, 0x64, 0x5d, 0x68, 0x11, 0xcc, + 0xef, 0xe0, 0xce, 0x0e, 0x90, 0xda, 0xa4, 0xfc, 0xda, 0xf4, 0x72, 0x77, 0x87, 0x6f, 0x8f, 0xed, + 0x02, 0x47, 0x6a, 0xe9, 0x16, 0x15, 0x7e, 0xc9, 0x72, 0xb8, 0x5a, 0x05, 0x4c, 0xff, 0x51, 0x0e, + 0x72, 0x51, 0xe5, 0x88, 0xc9, 0xb3, 0x70, 0xe0, 0x4b, 0xea, 0xe0, 0xd3, 0x12, 0xc8, 0x94, 0x6c, + 0xab, 0x0d, 0x7f, 0x21, 0x25, 0xb0, 0x07, 0xd6, 0xb0, 0xad, 0xb6, 0x4e, 0x82, 0xed, 0x7a, 0x53, + 0x00, 0x2e, 0x4d, 0xb9, 0x0b, 0x8c, 0xb5, 0xad, 0x8e, 0xe9, 0xb8, 0xd3, 0xaa, 0xe9, 0x53, 0xd7, + 0xf4, 0xd4, 0xfc, 0x55, 0xf6, 0x91, 0xe6, 0x7d, 0x8e, 0xfb, 0x31, 0x22, 0x51, 0x2c, 0x26, 0x2c, + 0x55, 0x37, 0x28, 0x70, 0x57, 0x2a, 0xfc, 0xa9, 0x20, 0xb0, 0xf7, 0xf0, 0xc0, 0xde, 0xd0, 0x43, + 0xe0, 0xb6, 0xd5, 0x1e, 0x8a, 0xd5, 0xfa, 0x31, 0x0f, 0xe4, 0xfb, 0x39, 0x90, 0x6f, 0x89, 0x55, + 0xe6, 0x08, 0xae, 0x6f, 0xcd, 0x00, 0x50, 0x6b, 0x1b, 0x75, 0xb4, 0xd6, 0x31, 0xb6, 0x50, 0xd0, + 0xb3, 0xed, 0xb5, 0x99, 0x80, 0xc4, 0x0a, 0xbc, 0xc4, 0x6e, 0xdd, 0xcf, 0xbd, 0x4f, 0x24, 0x44, + 0x6e, 0x05, 0x90, 0xdd, 0xc5, 0xaf, 0x99, 0xdc, 0x62, 0x92, 0x20, 0x8f, 0x1a, 0xcd, 0x09, 0x7f, + 0x37, 0x05, 0xb2, 0x24, 0x01, 0x2f, 0x3f, 0xc9, 0x80, 0x46, 0x8e, 0xf2, 0x12, 0xa6, 0x32, 0x5a, + 0x20, 0x85, 0xe8, 0xa4, 0xd9, 0x60, 0xaf, 0xe9, 0x6c, 0xc5, 0x4f, 0xc0, 0xb9, 0xc9, 0x30, 0x47, + 0x68, 0xb1, 0x81, 0x2f, 0x90, 0x82, 0x73, 0x93, 0xa7, 0x65, 0xb4, 0x49, 0xa3, 0x28, 0x65, 0x34, + 0x3f, 0xc1, 0xcb, 0xbd, 0xec, 0x45, 0xcf, 0x75, 0x73, 0x93, 0x14, 0xe5, 0x66, 0x70, 0x94, 0x28, + 0xdf, 0xbc, 0x5f, 0x44, 0x8e, 0x7c, 0xd4, 0x9d, 0x0c, 0xdf, 0xe3, 0x29, 0x47, 0x89, 0x53, 0x8e, + 0xdb, 0x05, 0xc4, 0x9b, 0xbc, 0x8a, 0xfc, 0x65, 0x1e, 0x80, 0x8a, 0xb1, 0x67, 0x6e, 0x51, 0xb3, + 0xda, 0x57, 0xdd, 0x39, 0x11, 0x33, 0x80, 0xfd, 0x58, 0xa0, 0x2b, 0xb8, 0x0b, 0xe4, 0x59, 0xcb, + 0x67, 0x35, 0x79, 0x21, 0x57, 0x13, 0x9f, 0x0a, 0x1d, 0xc4, 0x2e, 0x3a, 0x9a, 0xfb, 0x3d, 0x17, + 0x22, 0x3e, 0xdd, 0x15, 0x22, 0xbe, 0xe7, 0x0a, 0x3e, 0x2c, 0x70, 0x3c, 0xfc, 0x44, 0xec, 0xe8, + 0xa8, 0x01, 0x7e, 0x02, 0x35, 0x0a, 0xd1, 0xdf, 0x3b, 0x41, 0xde, 0xf2, 0x2c, 0x81, 0x52, 0xe8, + 0x92, 0xb1, 0xdc, 0xda, 0xb4, 0x34, 0xf7, 0xcb, 0x98, 0x71, 0x4f, 0x63, 0xf1, 0x91, 0x3c, 0xd0, + 0x5f, 0x94, 0xc0, 0xf1, 0x45, 0x37, 0x3a, 0x11, 0xae, 0xc7, 0x59, 0xd3, 0xd9, 0x5e, 0x36, 0x5b, + 0xe7, 0x3b, 0xf0, 0x5f, 0xc5, 0x5b, 0xec, 0x05, 0xf0, 0x4f, 0x8b, 0xe1, 0xcf, 0x1f, 0x67, 0xab, + 0xf1, 0xa8, 0xdd, 0x17, 0x46, 0xa5, 0x37, 0xb7, 0x21, 0x00, 0xde, 0x0d, 0x72, 0x94, 0x51, 0xd6, + 0x03, 0xcd, 0x86, 0xe2, 0xe7, 0x51, 0xd2, 0x58, 0x0e, 0xf8, 0xa4, 0x87, 0xe3, 0x19, 0x0e, 0xc7, + 0xf9, 0x03, 0x71, 0x96, 0xfc, 0x71, 0xb6, 0x3b, 0x40, 0x9e, 0x49, 0x5a, 0x99, 0x0e, 0xb6, 0x62, + 0xf9, 0x88, 0x02, 0x40, 0x6e, 0xc5, 0xda, 0x43, 0xba, 0x25, 0xa7, 0xf0, 0x7f, 0xcc, 0x9f, 0x6e, + 0xc9, 0x69, 0xf8, 0xdf, 0x00, 0x18, 0xf3, 0xce, 0xb5, 0x7e, 0x25, 0xed, 0x5e, 0x7d, 0x46, 0x76, + 0x32, 0xa8, 0x30, 0x62, 0x3b, 0x5c, 0xbc, 0x25, 0xb6, 0x6d, 0xdc, 0x3b, 0x6f, 0xda, 0x5d, 0x58, + 0xcc, 0x5b, 0x85, 0x3e, 0x14, 0xcb, 0x56, 0x1e, 0xb7, 0x94, 0xe4, 0x9b, 0xda, 0x37, 0xd2, 0xee, + 0x05, 0x93, 0x3e, 0x13, 0x64, 0x8b, 0xf8, 0xc5, 0xbe, 0x6c, 0x4f, 0xb8, 0x66, 0x2a, 0xdd, 0x75, + 0x7a, 0x1e, 0xd7, 0x02, 0x29, 0xf0, 0xf1, 0xd8, 0x9b, 0xf3, 0xa1, 0xf5, 0x8e, 0x88, 0x80, 0xd6, + 0x2d, 0xe1, 0x78, 0xdb, 0xef, 0x22, 0x25, 0x25, 0x2f, 0xe5, 0x8f, 0xd3, 0x3b, 0xc8, 0x5b, 0x02, + 0x3e, 0x42, 0xaf, 0x0e, 0x0a, 0xf5, 0x41, 0x5e, 0xa8, 0xb7, 0x84, 0x54, 0x15, 0x97, 0x10, 0x53, + 0x8a, 0xef, 0xf6, 0xa4, 0x58, 0xe4, 0xa4, 0x78, 0x32, 0x3e, 0xe9, 0xe4, 0xc5, 0xf6, 0xcd, 0x34, + 0x18, 0xa7, 0xc7, 0x6f, 0x0b, 0xcd, 0x26, 0xbc, 0x26, 0xf2, 0x04, 0x36, 0xfc, 0x0f, 0xb1, 0x3d, + 0x08, 0xbd, 0x5a, 0x79, 0xb4, 0x05, 0xce, 0x21, 0x8b, 0x39, 0xb4, 0xc5, 0xb3, 0x01, 0xf6, 0x65, + 0x28, 0x79, 0x51, 0xff, 0x7e, 0x1a, 0x4f, 0xa6, 0x5a, 0xe7, 0x57, 0x6d, 0xb4, 0x67, 0xa2, 0x0b, + 0xf0, 0xaa, 0x08, 0x2b, 0x05, 0x7c, 0x7f, 0xec, 0x00, 0x3b, 0x01, 0x92, 0x21, 0x32, 0xbe, 0x17, + 0x4c, 0x34, 0xfd, 0x8f, 0xd8, 0x88, 0x08, 0xbb, 0x46, 0xc4, 0x00, 0x19, 0x2d, 0xf8, 0x79, 0x4c, + 0x43, 0x40, 0x38, 0x17, 0xc9, 0x0b, 0xf6, 0xcf, 0x73, 0x60, 0x6c, 0xad, 0xd5, 0x69, 0x37, 0x8d, + 0xce, 0x36, 0xfc, 0x7b, 0xc9, 0xbb, 0x1f, 0xe9, 0x65, 0xdc, 0x89, 0xab, 0xef, 0xdf, 0x45, 0xb6, + 0xbb, 0xed, 0x48, 0x1f, 0x7a, 0xdf, 0x4e, 0x03, 0x7f, 0x59, 0x8a, 0xbb, 0x18, 0x72, 0x0b, 0x8d, + 0xbe, 0x38, 0xa8, 0x0c, 0xc6, 0xda, 0x66, 0xdd, 0xd9, 0xb5, 0xbd, 0x7b, 0x54, 0x5e, 0x12, 0x8f, + 0xca, 0x2a, 0xcd, 0xa5, 0x79, 0xd9, 0xa1, 0x01, 0xf2, 0x2c, 0x71, 0x9f, 0xc5, 0x78, 0xdf, 0x5d, + 0x89, 0xe4, 0x70, 0xab, 0xed, 0x98, 0x1d, 0xf7, 0x1a, 0x26, 0xf6, 0x84, 0x3b, 0x45, 0xfa, 0x6f, + 0xcd, 0x6e, 0xba, 0xe7, 0x2c, 0xbd, 0x04, 0xf8, 0xa9, 0x58, 0xeb, 0x94, 0xe8, 0x9a, 0x8b, 0x41, + 0x7e, 0x7a, 0x00, 0x5b, 0xc5, 0x95, 0xe0, 0x72, 0xad, 0xa0, 0xab, 0xeb, 0xcb, 0xe5, 0x95, 0xb2, + 0xbe, 0xae, 0x7e, 0x4f, 0x51, 0x55, 0x4b, 0x6a, 0x49, 0x6e, 0x90, 0x6b, 0x97, 0x3d, 0xa3, 0x10, + 0x3f, 0x12, 0x30, 0x29, 0xfa, 0x23, 0x81, 0x97, 0x00, 0x7f, 0x36, 0xf6, 0xc9, 0x2e, 0xaf, 0xe2, + 0x7d, 0xcc, 0x41, 0xbd, 0x4c, 0x6a, 0x9f, 0x8e, 0x75, 0x44, 0xab, 0x5f, 0x09, 0x87, 0x28, 0xdc, + 0x6f, 0xbd, 0x12, 0x64, 0x89, 0x75, 0x06, 0x7e, 0x94, 0x5c, 0x7e, 0xd3, 0x6e, 0x1a, 0x75, 0x04, + 0x77, 0x04, 0x0e, 0xd5, 0x6c, 0xe0, 0xdc, 0xfe, 0xa1, 0x1a, 0xf6, 0xa8, 0xdc, 0x02, 0xb2, 0xe4, + 0x2f, 0xeb, 0xf1, 0x8f, 0xf5, 0xb2, 0x08, 0x69, 0xf4, 0x13, 0xde, 0x77, 0x34, 0xd2, 0x6c, 0x47, + 0x0d, 0x49, 0x8c, 0xcd, 0x10, 0x9c, 0xc2, 0x79, 0x12, 0x1b, 0x85, 0xe2, 0x5d, 0xf5, 0x15, 0xc5, + 0x51, 0xf2, 0xfd, 0xe4, 0x1f, 0x66, 0x40, 0xb6, 0xd6, 0x6e, 0x9a, 0x0e, 0xfc, 0x99, 0xf4, 0x50, + 0x30, 0xb3, 0x8d, 0x16, 0xb3, 0xa9, 0xec, 0xc7, 0x4c, 0xc3, 0xef, 0x34, 0xfa, 0x89, 0x6f, 0xeb, + 0xce, 0xc4, 0xb0, 0x75, 0xeb, 0xe8, 0xa2, 0xc3, 0xd9, 0xba, 0x95, 0xbb, 0xd8, 0xd1, 0xf4, 0x6c, + 0x8f, 0xc8, 0x2e, 0x34, 0x2f, 0xa9, 0x56, 0x8f, 0x98, 0x01, 0xb3, 0x77, 0xb0, 0xa3, 0xd7, 0x00, + 0xe4, 0xe6, 0xab, 0xba, 0x5e, 0x5d, 0x91, 0x8f, 0x90, 0x73, 0x7e, 0xd5, 0x55, 0x39, 0xa5, 0x8c, + 0x83, 0x6c, 0xb9, 0x52, 0x51, 0x35, 0x39, 0x4d, 0x0e, 0x83, 0x97, 0xf5, 0x65, 0x55, 0x96, 0xe0, + 0xc7, 0x62, 0x0f, 0xbd, 0x7c, 0xd9, 0x49, 0xaa, 0x57, 0xbc, 0x41, 0x38, 0x9c, 0x9f, 0xe4, 0x95, + 0xeb, 0xa7, 0x25, 0x90, 0x5d, 0x41, 0xf6, 0x16, 0x82, 0xdf, 0x2f, 0x60, 0x2e, 0xde, 0x34, 0xed, + 0x0e, 0x3d, 0x3a, 0xef, 0x9b, 0x8b, 0x83, 0x69, 0xca, 0xf5, 0x60, 0xaa, 0x83, 0xea, 0x56, 0xab, + 0xe1, 0x7e, 0xc4, 0xe2, 0x42, 0x73, 0x89, 0xf0, 0x51, 0x41, 0xc8, 0x08, 0xa3, 0x43, 0xb1, 0xf9, + 0x8a, 0x00, 0xd3, 0xab, 0xd4, 0xe4, 0x81, 0xf9, 0x1b, 0x09, 0x67, 0x6a, 0x5f, 0x82, 0x8f, 0xc6, + 0xb6, 0xe3, 0xdf, 0x06, 0x72, 0x44, 0x4d, 0xdd, 0xf9, 0x4a, 0xef, 0xfe, 0x98, 0x7d, 0xa3, 0xcc, + 0x83, 0xcb, 0x3a, 0xa8, 0x89, 0xea, 0x0e, 0x6a, 0xe0, 0xa6, 0xab, 0xf5, 0xed, 0x14, 0xf6, 0x7f, + 0x0e, 0x7f, 0x2f, 0x08, 0xe0, 0xbd, 0x3c, 0x80, 0x37, 0xf6, 0x10, 0x25, 0xae, 0x50, 0xf8, 0xfd, + 0xb8, 0xb8, 0x1a, 0xb5, 0xa6, 0xe5, 0x19, 0x17, 0xdd, 0x67, 0xfc, 0x6e, 0xdb, 0xd9, 0x69, 0x92, + 0x77, 0xcc, 0xcb, 0xc9, 0x7d, 0x56, 0xe6, 0x40, 0xde, 0x68, 0x5d, 0x22, 0xaf, 0x32, 0x11, 0xb5, + 0x76, 0x3f, 0x82, 0xef, 0xf0, 0x90, 0x7f, 0x80, 0x43, 0xfe, 0xd6, 0x78, 0xec, 0x8e, 0xe0, 0xee, + 0x82, 0x1c, 0xc8, 0xae, 0x1a, 0x1d, 0x07, 0xc1, 0x3f, 0x92, 0xe2, 0x22, 0x7f, 0x23, 0x98, 0xde, + 0xb4, 0xea, 0xbb, 0x1d, 0xd4, 0xe0, 0x1b, 0x65, 0x57, 0xea, 0x30, 0x30, 0x57, 0x6e, 0x01, 0xb2, + 0x9b, 0xc8, 0xc8, 0xba, 0x1b, 0x3a, 0xfb, 0xd2, 0x49, 0x30, 0xae, 0xce, 0xaa, 0x61, 0x3b, 0xd5, + 0x4d, 0x92, 0xe6, 0x05, 0xe3, 0x0a, 0x26, 0x72, 0xd0, 0xe7, 0x22, 0xa0, 0xcf, 0x87, 0x43, 0x3f, + 0x16, 0x03, 0x7a, 0xa5, 0x00, 0xc6, 0x36, 0xcd, 0x26, 0x22, 0x19, 0xc6, 0x7b, 0x04, 0xba, 0x66, + 0x3b, 0x58, 0x58, 0xf6, 0xde, 0x98, 0xb4, 0x60, 0x36, 0x91, 0xe6, 0x65, 0x83, 0xcb, 0xd4, 0x1f, + 0xc4, 0xbb, 0x91, 0x32, 0x15, 0xb8, 0x91, 0x52, 0x01, 0x99, 0x86, 0xe1, 0x18, 0x44, 0xf4, 0x93, + 0x1a, 0xf9, 0xcf, 0x6f, 0x2f, 0x4a, 0xdd, 0xdb, 0x8b, 0xaf, 0x93, 0xc4, 0xfa, 0x3f, 0x97, 0xb5, + 0x90, 0xf6, 0xb3, 0xe1, 0xc2, 0x41, 0x1d, 0x05, 0xbd, 0x67, 0x0c, 0x43, 0xdd, 0xb0, 0x91, 0xb3, + 0x1a, 0xdc, 0xc1, 0xcb, 0x6a, 0x7c, 0x22, 0x71, 0x8a, 0xe8, 0xd4, 0x8c, 0x1d, 0x44, 0x0a, 0x2b, + 0xe2, 0x77, 0x6c, 0x1b, 0x7c, 0x5f, 0xba, 0xdf, 0xdb, 0x66, 0x87, 0xdd, 0xdb, 0xf6, 0xaa, 0x63, + 0xf2, 0x8d, 0xee, 0x5d, 0x19, 0x20, 0x15, 0x77, 0x9d, 0xe7, 0x75, 0x67, 0xfb, 0x0f, 0xb1, 0xf7, + 0x47, 0x59, 0xef, 0x15, 0x7a, 0x0b, 0xd2, 0x88, 0xfa, 0x5a, 0x41, 0x2d, 0x89, 0xb7, 0x0f, 0x1b, + 0x56, 0xb7, 0x91, 0x9c, 0xe1, 0x72, 0x5d, 0x55, 0xac, 0x83, 0xcf, 0xc3, 0x21, 0xed, 0x8c, 0x02, + 0x1d, 0x83, 0xf7, 0xec, 0x1a, 0x05, 0x32, 0xbe, 0x5d, 0xe9, 0x6d, 0xb1, 0x9d, 0xc5, 0xa8, 0x7c, + 0x22, 0xfd, 0x46, 0xc4, 0xa6, 0x4a, 0xf1, 0x82, 0xc3, 0x47, 0x14, 0x9b, 0x3c, 0x32, 0xcf, 0x05, + 0xad, 0x07, 0x85, 0x03, 0x63, 0xc3, 0x9b, 0xed, 0x23, 0x2d, 0xcc, 0xb4, 0xda, 0x7d, 0x8c, 0x0a, + 0x62, 0xf2, 0x8e, 0x67, 0x7f, 0x8e, 0x2c, 0x78, 0x04, 0xa7, 0xe6, 0x24, 0x90, 0xa3, 0xfb, 0x07, + 0xf0, 0xe7, 0x53, 0x02, 0xb7, 0xfb, 0x38, 0xbc, 0x8f, 0x89, 0xf7, 0x2c, 0x62, 0x4a, 0xe0, 0x7c, + 0x51, 0x32, 0x42, 0xbe, 0x28, 0xbc, 0x4b, 0x79, 0x8c, 0x76, 0x44, 0xeb, 0x98, 0xf0, 0x2a, 0x51, + 0xa4, 0x85, 0xf5, 0x64, 0x28, 0x79, 0xbc, 0xdf, 0x90, 0x05, 0x93, 0xb4, 0xe8, 0xb3, 0x66, 0x63, + 0x0b, 0x39, 0xf0, 0xe3, 0xe9, 0x7f, 0x3a, 0xa8, 0x2b, 0x15, 0x30, 0x79, 0x81, 0xb0, 0x4d, 0x2f, + 0xe8, 0x63, 0x06, 0x89, 0xe8, 0x0b, 0x99, 0x69, 0x3d, 0xdd, 0x0b, 0x09, 0xb9, 0xfc, 0x58, 0xc6, + 0x74, 0x93, 0x8f, 0xfa, 0x97, 0xe4, 0xc8, 0x6c, 0x2a, 0x98, 0xa4, 0x1c, 0x07, 0xb9, 0x3d, 0x13, + 0x5d, 0x28, 0x37, 0xd8, 0xa4, 0x95, 0x3d, 0xc1, 0xcf, 0xc4, 0xde, 0x8a, 0x09, 0xc2, 0xcd, 0x78, + 0x49, 0x56, 0x0b, 0xe3, 0x6d, 0xc8, 0xf4, 0x65, 0x6b, 0x04, 0xc7, 0x1b, 0xf8, 0x40, 0xf0, 0x22, + 0x97, 0x8b, 0x85, 0xcd, 0x90, 0x05, 0x6e, 0x78, 0xa3, 0x02, 0x18, 0x72, 0x8c, 0xf8, 0x78, 0xe7, + 0x96, 0xfa, 0x14, 0x9d, 0xbc, 0xe4, 0xdf, 0x43, 0xef, 0xff, 0x5c, 0x30, 0x51, 0xb3, 0xd1, 0x81, + 0xf6, 0xc1, 0x27, 0x41, 0x27, 0x41, 0x6e, 0x93, 0x10, 0x63, 0x2a, 0x1a, 0x7a, 0x11, 0x2d, 0xfb, + 0x0c, 0xbe, 0x2b, 0x1d, 0x77, 0x93, 0x87, 0x19, 0xd5, 0x5c, 0x6e, 0x87, 0x02, 0x53, 0x3c, 0x67, + 0xb0, 0xe8, 0x92, 0x47, 0x10, 0x4a, 0x4b, 0x02, 0x93, 0x2c, 0x00, 0x7b, 0xa1, 0x69, 0x6e, 0xb5, + 0x82, 0x27, 0x69, 0x07, 0x6e, 0x21, 0xca, 0xed, 0x20, 0x6b, 0x60, 0x6a, 0xcc, 0xfb, 0x13, 0xf6, + 0xec, 0x3c, 0x49, 0x79, 0x1a, 0xfd, 0x50, 0x20, 0x70, 0x8d, 0xaf, 0xd8, 0x2e, 0xcf, 0x23, 0x0c, + 0x5c, 0xd3, 0xb7, 0xf0, 0xe4, 0x11, 0xfb, 0x13, 0x09, 0x1c, 0x63, 0x0c, 0x9c, 0x41, 0xb6, 0x63, + 0xd6, 0x8d, 0x26, 0x45, 0xee, 0x8d, 0xa9, 0x61, 0x40, 0xb7, 0x04, 0xa6, 0xf6, 0x82, 0x64, 0x19, + 0x84, 0xb3, 0x3d, 0x21, 0xe4, 0x18, 0xd0, 0xf8, 0x8c, 0x02, 0x01, 0x40, 0x38, 0xa9, 0x72, 0x34, + 0x47, 0x18, 0x00, 0x24, 0x36, 0x13, 0xc9, 0x43, 0xfc, 0x53, 0x19, 0x1a, 0x13, 0xc7, 0xef, 0x3e, + 0xbf, 0x1a, 0x1b, 0xdb, 0x35, 0x30, 0x41, 0xb0, 0xa4, 0x19, 0x99, 0xbd, 0x21, 0x42, 0x89, 0xbd, + 0x7e, 0x87, 0x85, 0x0c, 0xf7, 0xf2, 0x6a, 0x41, 0x3a, 0xf0, 0x2c, 0x00, 0xfe, 0xab, 0x60, 0x27, + 0x9d, 0x0a, 0xeb, 0xa4, 0xd3, 0xf1, 0x3a, 0xe9, 0xf7, 0xc7, 0x3e, 0xb7, 0xd9, 0x9b, 0xed, 0x83, + 0xab, 0x47, 0xbc, 0x13, 0x7b, 0xfd, 0x4b, 0x4f, 0x5e, 0x2f, 0xde, 0x91, 0xe9, 0xbe, 0x22, 0xe8, + 0x37, 0x86, 0xb2, 0x9e, 0x0a, 0xf6, 0x07, 0x52, 0x57, 0x7f, 0x70, 0x80, 0x99, 0xf4, 0xcd, 0xe0, + 0x28, 0x2d, 0xa2, 0xe8, 0xb1, 0x95, 0xa5, 0xd7, 0xe3, 0x77, 0x25, 0xc3, 0xcf, 0x0e, 0xa0, 0x04, + 0xfd, 0xee, 0x2f, 0x8a, 0xea, 0xe4, 0xc4, 0x26, 0xbb, 0xa2, 0x0a, 0x72, 0x78, 0xd7, 0x1e, 0x7d, + 0x33, 0x43, 0x67, 0xbb, 0x6b, 0x24, 0xaa, 0x3b, 0xfc, 0x83, 0xcc, 0x30, 0x46, 0x84, 0x07, 0x41, + 0x86, 0x78, 0x00, 0x4b, 0xa1, 0x26, 0x0d, 0xbf, 0x48, 0x3f, 0x1e, 0x3c, 0xba, 0xe8, 0x2c, 0x1d, + 0xd1, 0x48, 0x4e, 0xe5, 0x16, 0x70, 0x74, 0xc3, 0xa8, 0x9f, 0xdf, 0xb2, 0xad, 0x5d, 0x12, 0xb2, + 0xdb, 0x62, 0xb1, 0xbf, 0xc9, 0x85, 0x04, 0xfc, 0x0b, 0xe5, 0x94, 0x3b, 0x75, 0xc8, 0xf6, 0x9b, + 0x3a, 0x2c, 0x1d, 0x61, 0x93, 0x07, 0xe5, 0x0e, 0xaf, 0xd3, 0xc9, 0x45, 0x76, 0x3a, 0x4b, 0x47, + 0xdc, 0x6e, 0x47, 0x29, 0x81, 0xb1, 0x86, 0xb9, 0x47, 0x76, 0xa0, 0xc9, 0xaa, 0xab, 0xdf, 0x39, + 0xb0, 0x92, 0xb9, 0x47, 0xf7, 0xab, 0x97, 0x8e, 0x68, 0x5e, 0x4e, 0x65, 0x11, 0x8c, 0x13, 0x6b, + 0x3f, 0x21, 0x33, 0x26, 0x74, 0xc6, 0x6b, 0xe9, 0x88, 0xe6, 0xe7, 0xc5, 0xb3, 0x8f, 0x0c, 0x71, + 0x8d, 0x7f, 0xc0, 0xdd, 0x45, 0x4f, 0x09, 0xed, 0xa2, 0x63, 0x59, 0xd0, 0x7d, 0xf4, 0xe3, 0x20, + 0x5b, 0x27, 0x12, 0x4e, 0x33, 0x09, 0xd3, 0x47, 0xe5, 0x5e, 0x90, 0xd9, 0x31, 0x6c, 0x77, 0xf1, + 0x7c, 0x63, 0x7f, 0xba, 0x2b, 0x86, 0x7d, 0x1e, 0x23, 0x88, 0x73, 0xcd, 0xe7, 0x41, 0x96, 0x08, + 0xce, 0xfb, 0x03, 0x9f, 0x66, 0xd3, 0x90, 0xa2, 0xd5, 0xc2, 0xc3, 0xbe, 0x6e, 0xb9, 0xe7, 0x07, + 0xea, 0xc3, 0xd0, 0x39, 0xde, 0x57, 0x56, 0xda, 0xe7, 0x2b, 0xfb, 0x7b, 0x03, 0xcc, 0x2d, 0xba, + 0x39, 0x0d, 0x5f, 0x22, 0x37, 0xcd, 0x56, 0x80, 0x2b, 0xf7, 0x51, 0xb0, 0xd7, 0x10, 0x9d, 0x75, + 0xf4, 0x61, 0x2f, 0xf9, 0xce, 0xe3, 0x03, 0x19, 0x30, 0x83, 0x19, 0xa1, 0x5e, 0xe4, 0xfc, 0x95, + 0x10, 0xf0, 0x77, 0x86, 0x32, 0xb9, 0xec, 0x31, 0x22, 0x48, 0x3d, 0x47, 0x84, 0x7d, 0xc7, 0xcc, + 0x32, 0x7d, 0x8e, 0x99, 0x65, 0xc5, 0x4c, 0x7b, 0xbf, 0x1a, 0xd4, 0x9f, 0x55, 0x5e, 0x7f, 0xee, + 0x0e, 0x01, 0xa8, 0x97, 0x5c, 0x86, 0x32, 0x01, 0xf9, 0xa8, 0xa7, 0x29, 0x35, 0x4e, 0x53, 0x1e, + 0x18, 0x9c, 0x91, 0xe4, 0xb5, 0xe5, 0x57, 0x32, 0xe0, 0x72, 0x9f, 0x99, 0x0a, 0xba, 0xc0, 0x14, + 0xe5, 0x2b, 0x43, 0x51, 0x94, 0x3b, 0xfc, 0x5b, 0x86, 0xfb, 0x2c, 0xf6, 0xdd, 0xef, 0x92, 0xd6, + 0x98, 0xdf, 0x8d, 0x7d, 0xf6, 0xa1, 0x1b, 0x28, 0x4f, 0x36, 0x21, 0xca, 0x72, 0x1c, 0xe4, 0x68, + 0x0f, 0xc3, 0xa0, 0x61, 0x4f, 0x82, 0xdd, 0x4d, 0xbc, 0x13, 0x13, 0x71, 0x79, 0x1b, 0x81, 0xfe, + 0x30, 0xc3, 0x83, 0xbe, 0x6b, 0xb7, 0xca, 0x2d, 0xc7, 0x82, 0xff, 0x76, 0x28, 0x8a, 0xe3, 0x79, + 0xa1, 0x49, 0x83, 0x78, 0xa1, 0x0d, 0x64, 0x86, 0x70, 0x6b, 0x70, 0x28, 0x66, 0x88, 0x90, 0xc2, + 0x93, 0xc7, 0xef, 0x23, 0x12, 0x38, 0xce, 0x56, 0x43, 0xf3, 0xfc, 0x14, 0x0e, 0x9e, 0x1b, 0x06, + 0x90, 0xc7, 0xdc, 0x79, 0x0c, 0x1d, 0x20, 0xe8, 0x03, 0x7f, 0x3a, 0x21, 0x32, 0xe4, 0x2b, 0xb7, + 0x5e, 0xeb, 0xe2, 0x70, 0x28, 0x48, 0xc5, 0x8b, 0xf4, 0x2a, 0xc0, 0x46, 0xf2, 0x98, 0xfd, 0x7b, + 0x09, 0xe4, 0xd8, 0x45, 0x7c, 0x6b, 0x89, 0xb8, 0x2e, 0xf0, 0xe1, 0xbd, 0x62, 0x6c, 0x99, 0x09, + 0xdf, 0x5f, 0x97, 0xdc, 0x66, 0xd9, 0xe1, 0x5c, 0x50, 0x07, 0x1f, 0x95, 0x98, 0x65, 0x65, 0xd9, + 0x70, 0xd0, 0x45, 0xf8, 0x23, 0x12, 0xc8, 0xd7, 0x90, 0x83, 0x7b, 0xa6, 0xf8, 0x18, 0x85, 0xdb, + 0xcc, 0x95, 0xc0, 0xda, 0x6d, 0x9c, 0xae, 0xc6, 0x44, 0xfb, 0x38, 0xc2, 0xd7, 0x1c, 0xe3, 0x69, + 0xd4, 0x7d, 0x5c, 0x54, 0xe1, 0x23, 0x38, 0x29, 0x7d, 0x3d, 0x18, 0x27, 0x6c, 0x10, 0x38, 0x3e, + 0x17, 0x80, 0xe6, 0xcd, 0xa9, 0x44, 0xb0, 0xc1, 0xc3, 0x17, 0xb9, 0x6a, 0x8c, 0x5d, 0x96, 0x77, + 0x53, 0xbc, 0x65, 0x5a, 0x47, 0xa3, 0xb9, 0x04, 0xae, 0x2f, 0xf6, 0xaa, 0x35, 0x54, 0x64, 0xe3, + 0xdd, 0x0a, 0xd9, 0xaf, 0xec, 0xe4, 0x81, 0x7d, 0xa3, 0x04, 0xc6, 0x6a, 0x78, 0xb9, 0x81, 0xc7, + 0x94, 0xb3, 0x07, 0x87, 0xb2, 0xf7, 0x60, 0x25, 0xd8, 0xd0, 0x5c, 0x89, 0x0c, 0x6f, 0x88, 0x12, + 0x68, 0x68, 0x51, 0x85, 0x27, 0x8f, 0xc7, 0xc7, 0x28, 0x1e, 0x44, 0x97, 0xe1, 0x7b, 0x25, 0x20, + 0x2d, 0x22, 0x67, 0x48, 0x67, 0x4e, 0xe2, 0x9e, 0x5f, 0xe0, 0x87, 0xae, 0xc8, 0x30, 0x03, 0x9c, + 0xc0, 0x08, 0xcf, 0x73, 0x8b, 0x68, 0x38, 0x0d, 0x28, 0x5e, 0x7c, 0x81, 0x58, 0x0c, 0x24, 0x8f, + 0xda, 0x27, 0x29, 0x6a, 0xd4, 0x82, 0xf5, 0x43, 0x43, 0xe8, 0x11, 0x47, 0x3b, 0x79, 0x77, 0x05, + 0x48, 0x68, 0x1c, 0x56, 0x7b, 0xeb, 0x55, 0xf8, 0x48, 0xbc, 0x13, 0x01, 0x6e, 0xec, 0xdb, 0xa8, + 0x7e, 0x1e, 0x35, 0xe0, 0xf7, 0x1e, 0x1c, 0xba, 0x19, 0x90, 0xaf, 0x53, 0x6a, 0xec, 0x0a, 0x48, + 0xf7, 0x51, 0xe0, 0xba, 0x24, 0xbe, 0x23, 0xa2, 0xd9, 0x47, 0x78, 0x5d, 0x52, 0x8c, 0xe2, 0x93, + 0x47, 0xe6, 0x17, 0xe9, 0x24, 0xa3, 0x5c, 0xb7, 0x5a, 0xf0, 0x07, 0x0e, 0x0e, 0xcb, 0xd5, 0x60, + 0xdc, 0xac, 0x5b, 0xad, 0xf2, 0x8e, 0x1b, 0x18, 0x67, 0x5c, 0xf3, 0x13, 0xdc, 0xb7, 0xea, 0x8e, + 0xf5, 0xb0, 0xc9, 0xb6, 0x66, 0xfc, 0x84, 0x41, 0x27, 0x13, 0x98, 0xf5, 0xc3, 0x9a, 0x4c, 0xf4, + 0x28, 0x3b, 0x79, 0xc8, 0x3e, 0xeb, 0xbb, 0x50, 0xd0, 0xae, 0xf0, 0x79, 0x61, 0xc9, 0x18, 0x64, + 0x38, 0x0b, 0xd6, 0xe2, 0x50, 0x86, 0xb3, 0x08, 0x06, 0x92, 0xc7, 0xf1, 0x6d, 0x3e, 0x8e, 0x89, + 0xdb, 0x31, 0x0e, 0x80, 0xce, 0xf0, 0xa6, 0x87, 0x03, 0xa2, 0x73, 0x38, 0x53, 0xc4, 0x4f, 0xb3, + 0x30, 0x55, 0x6c, 0xc6, 0x03, 0x7f, 0x70, 0x18, 0xe0, 0xdc, 0x3d, 0xc8, 0xa6, 0x18, 0xdd, 0x12, + 0x13, 0xb8, 0xe8, 0x69, 0x9f, 0x04, 0x31, 0x95, 0x11, 0x5e, 0x81, 0x16, 0xa7, 0xfc, 0xe4, 0x01, + 0xfc, 0x51, 0x09, 0x4c, 0x93, 0x7d, 0xae, 0x26, 0x32, 0x6c, 0xda, 0x51, 0x0e, 0xc5, 0x1b, 0xf3, + 0x63, 0xb1, 0xef, 0x60, 0xe0, 0xe5, 0xe0, 0xf3, 0x31, 0x14, 0x28, 0x3e, 0x18, 0xeb, 0xda, 0x85, + 0x98, 0x2c, 0x8c, 0xc4, 0x14, 0x28, 0x7b, 0x2c, 0x30, 0x15, 0x1f, 0x0e, 0x1e, 0x82, 0x6e, 0x5f, + 0xbc, 0x30, 0xdc, 0xc6, 0x36, 0x62, 0xb7, 0xaf, 0x38, 0x4c, 0x8c, 0x20, 0xd2, 0xff, 0xed, 0xcc, + 0x14, 0xa8, 0x93, 0x7b, 0xd0, 0x1e, 0xcf, 0x78, 0xc7, 0x26, 0xbe, 0x34, 0x14, 0x37, 0x9f, 0x03, + 0x84, 0xe5, 0x54, 0x40, 0xc6, 0xb6, 0x2e, 0x50, 0xb3, 0xd4, 0x94, 0x46, 0xfe, 0x93, 0x29, 0x7f, + 0xe0, 0x76, 0xf6, 0x29, 0xcd, 0x7d, 0x54, 0xae, 0x07, 0x53, 0x17, 0x4c, 0x67, 0x7b, 0x09, 0x19, + 0x0d, 0x64, 0x6b, 0xd6, 0x05, 0xe2, 0x96, 0x31, 0xa6, 0xf1, 0x89, 0xfc, 0x1e, 0x6c, 0x8c, 0xf9, + 0x25, 0xb9, 0x1c, 0x6d, 0x24, 0x67, 0x2c, 0x44, 0x66, 0x9e, 0xe1, 0x5c, 0x25, 0xaf, 0x30, 0x4f, + 0x49, 0x60, 0x5c, 0xb3, 0x2e, 0x30, 0x25, 0xf9, 0x37, 0x87, 0xab, 0x23, 0xc2, 0x0b, 0x3d, 0x7a, + 0xd9, 0x9d, 0xcb, 0xfe, 0xc8, 0x17, 0x7a, 0x91, 0xc5, 0x8f, 0xc4, 0x3d, 0x7e, 0x52, 0xb3, 0x2e, + 0xd4, 0x90, 0x43, 0x5b, 0x44, 0xfc, 0x7b, 0x8b, 0xfb, 0x78, 0xf2, 0x99, 0x1d, 0x4a, 0x90, 0xad, + 0xc3, 0xbd, 0x67, 0x81, 0x7b, 0x73, 0x79, 0x01, 0x79, 0x2c, 0x8e, 0xf0, 0xde, 0xdc, 0x78, 0x1c, + 0x24, 0x8f, 0xd2, 0x6b, 0x24, 0x30, 0xa1, 0x59, 0x17, 0xf0, 0xd0, 0xb0, 0x60, 0x36, 0x9b, 0xc3, + 0x19, 0x21, 0x45, 0x27, 0xff, 0xae, 0x18, 0x5c, 0x2e, 0x46, 0x3e, 0xf9, 0xef, 0xc3, 0x40, 0xf2, + 0x30, 0xbc, 0x8e, 0x36, 0x16, 0x77, 0x84, 0x6e, 0x0d, 0x07, 0x87, 0x41, 0x1b, 0x84, 0xc7, 0xc6, + 0xa1, 0x35, 0x88, 0x30, 0x0e, 0x46, 0xb2, 0x73, 0x32, 0x5d, 0x24, 0xc3, 0xfc, 0x70, 0xdb, 0xc4, + 0x93, 0x62, 0xee, 0x35, 0x6c, 0xd8, 0xe5, 0x18, 0x19, 0x0a, 0x1a, 0x02, 0x6e, 0x34, 0x31, 0x78, + 0x48, 0x1e, 0x8f, 0x5f, 0x93, 0xc0, 0x24, 0x65, 0xe1, 0x79, 0x32, 0x0b, 0x18, 0xa8, 0x51, 0x05, + 0x6b, 0x70, 0x38, 0x8d, 0x2a, 0x82, 0x83, 0xe4, 0x41, 0xfc, 0xbf, 0x69, 0x32, 0x8f, 0x1b, 0xe0, + 0x8c, 0x62, 0x18, 0x82, 0x03, 0x4f, 0xc6, 0x86, 0x78, 0x4e, 0x71, 0x90, 0xc9, 0xd8, 0x21, 0x9d, + 0x55, 0x7c, 0x9d, 0xd7, 0x8a, 0x86, 0x89, 0xc1, 0x01, 0x9a, 0xc2, 0x10, 0x61, 0x18, 0xb0, 0x29, + 0x1c, 0x12, 0x12, 0x7f, 0x2a, 0x01, 0x40, 0x19, 0x58, 0xb1, 0xf6, 0x10, 0x7c, 0xf7, 0x50, 0x16, + 0xbe, 0xdd, 0xae, 0xa1, 0x52, 0x1f, 0xd7, 0x50, 0xc1, 0x38, 0x01, 0xa2, 0x96, 0xc0, 0x80, 0x94, + 0x57, 0x42, 0xef, 0x70, 0x4d, 0xd0, 0x12, 0x18, 0x5d, 0x7e, 0xf2, 0x18, 0x7f, 0x9d, 0xce, 0xe6, + 0xfc, 0x53, 0x4c, 0x6f, 0x1d, 0x0a, 0xca, 0x81, 0xd5, 0xbf, 0xc4, 0xaf, 0xfe, 0x0f, 0x80, 0xed, + 0xa0, 0x73, 0xc4, 0x7e, 0xa7, 0x93, 0x92, 0x9f, 0x23, 0x1e, 0xde, 0x29, 0xa4, 0x1f, 0xca, 0x80, + 0xa3, 0xac, 0x13, 0xf9, 0xa7, 0x00, 0xb1, 0xe0, 0x59, 0x12, 0xae, 0x93, 0xec, 0x83, 0xf2, 0xb0, + 0x0c, 0x52, 0x22, 0xa6, 0xcc, 0x18, 0xec, 0x8d, 0xc4, 0xba, 0x91, 0x53, 0x2f, 0xb6, 0x8d, 0x56, + 0x23, 0x7e, 0xa8, 0xc8, 0x3e, 0xc0, 0xbb, 0xb6, 0x46, 0x89, 0xb7, 0x35, 0xf6, 0xb0, 0x4c, 0x0a, + 0xef, 0x5c, 0x13, 0x91, 0x51, 0x76, 0x47, 0xbe, 0x73, 0x1d, 0x5e, 0x76, 0xf2, 0x28, 0x3d, 0x29, + 0x81, 0x4c, 0xcd, 0xb2, 0x1d, 0xf8, 0x7a, 0x91, 0xd6, 0x49, 0x25, 0xef, 0x83, 0xe4, 0x3e, 0x2b, + 0x45, 0xee, 0x5e, 0xb5, 0x93, 0xd1, 0xe7, 0xe9, 0x0c, 0xc7, 0x20, 0x81, 0xc4, 0x71, 0xf9, 0x81, + 0x0b, 0xd6, 0x44, 0x83, 0x36, 0x50, 0xf9, 0xd5, 0xc2, 0x9d, 0x88, 0x13, 0x0b, 0xda, 0x10, 0x5a, + 0xf2, 0x08, 0xec, 0xbe, 0x13, 0xcc, 0x2f, 0x95, 0x5c, 0x37, 0xf9, 0x7a, 0xea, 0x32, 0x52, 0x31, + 0x76, 0xd0, 0x90, 0x5c, 0x86, 0x49, 0xb4, 0x42, 0xc9, 0x8f, 0x56, 0x28, 0xda, 0xa0, 0xe8, 0x29, + 0x47, 0xca, 0xd2, 0xa8, 0x1b, 0x54, 0x44, 0xd9, 0xc9, 0x03, 0xf3, 0x0c, 0x1e, 0xf9, 0xc8, 0x1a, + 0xb2, 0xd0, 0x6a, 0xb0, 0xf0, 0x6f, 0x7f, 0x75, 0xd8, 0x7b, 0x37, 0xfb, 0x02, 0xc4, 0xf1, 0x81, + 0x26, 0xb3, 0xdd, 0xd7, 0x23, 0xce, 0xd3, 0x60, 0x73, 0xe4, 0xe4, 0x65, 0x4e, 0xe8, 0x8a, 0x44, + 0x2f, 0x1f, 0x7c, 0x5a, 0xcc, 0x9c, 0x43, 0x48, 0x74, 0x09, 0x2e, 0xe1, 0x21, 0x55, 0xc0, 0xd0, + 0x13, 0x83, 0xbb, 0x7f, 0x1e, 0x5e, 0x46, 0xfb, 0x6f, 0xa8, 0x14, 0x34, 0x65, 0x7b, 0xf7, 0x8a, + 0x1e, 0x96, 0x97, 0x51, 0x3f, 0x06, 0x92, 0xc7, 0xf1, 0xe9, 0x2c, 0xdb, 0xe4, 0x25, 0x2e, 0x78, + 0xf0, 0x6b, 0xe9, 0xc4, 0x3b, 0xef, 0xf8, 0x77, 0x32, 0xfb, 0x7c, 0x45, 0xf7, 0xde, 0x22, 0x8e, + 0xae, 0x51, 0xe4, 0x46, 0x60, 0x4e, 0x48, 0x13, 0x17, 0xe5, 0xb3, 0x66, 0xc3, 0xd9, 0x1e, 0x92, + 0xa3, 0xff, 0x05, 0x4c, 0xcb, 0xbd, 0xb9, 0x8e, 0x3c, 0xc0, 0xef, 0xa4, 0x84, 0xc2, 0x57, 0x78, + 0x22, 0x21, 0x6c, 0x85, 0x88, 0x58, 0x20, 0xe8, 0x44, 0x24, 0xbd, 0x11, 0x6a, 0xf4, 0x19, 0xb3, + 0x81, 0xac, 0xe7, 0xa1, 0x46, 0x13, 0xbe, 0x86, 0xa7, 0xd1, 0x51, 0xe4, 0xfe, 0x99, 0x6a, 0xb4, + 0x27, 0x92, 0x21, 0x69, 0x74, 0x24, 0xbd, 0x11, 0x44, 0x55, 0x07, 0x6c, 0x7e, 0xbd, 0x6c, 0xb6, + 0xce, 0xc3, 0xcf, 0x67, 0xdd, 0x3b, 0xf3, 0xce, 0x9a, 0xce, 0x36, 0x3b, 0xe6, 0xfe, 0xd9, 0xd8, + 0x21, 0x2d, 0x07, 0x38, 0xca, 0x7e, 0x02, 0x00, 0x87, 0xdd, 0x65, 0xe5, 0xc5, 0xcc, 0x09, 0xa4, + 0x28, 0x05, 0x30, 0x65, 0xb6, 0x1c, 0x64, 0xb7, 0x8c, 0xe6, 0x42, 0xd3, 0xd8, 0xea, 0xcc, 0xe4, + 0xc9, 0xd1, 0xcc, 0xab, 0xba, 0x06, 0xef, 0x72, 0xe0, 0x1b, 0x8d, 0xcf, 0x11, 0x7b, 0xae, 0x29, + 0x18, 0xf2, 0xe7, 0x64, 0xcc, 0x48, 0x2c, 0x5e, 0xf8, 0xa7, 0x6f, 0x89, 0x19, 0x5f, 0x30, 0x20, + 0x73, 0xdd, 0x60, 0x08, 0xcf, 0x14, 0x83, 0x95, 0x97, 0xba, 0x2a, 0xef, 0x4d, 0x3d, 0x32, 0x43, + 0x36, 0xcc, 0xc4, 0x61, 0x7d, 0x04, 0x27, 0x3f, 0xb2, 0xe0, 0x32, 0x37, 0x7c, 0x5d, 0xbb, 0x8d, + 0x0c, 0xdb, 0x68, 0xd5, 0x91, 0x80, 0x36, 0x47, 0xcd, 0x25, 0x17, 0xc0, 0x98, 0x59, 0xb7, 0x5a, + 0x35, 0xf3, 0x55, 0xee, 0x25, 0x30, 0xd1, 0x51, 0x53, 0x89, 0x44, 0xca, 0x2c, 0x87, 0xe6, 0xe5, + 0x55, 0xca, 0x60, 0xbc, 0x6e, 0xd8, 0x8d, 0x5a, 0xe0, 0xe6, 0xf4, 0x5b, 0xfb, 0x13, 0x2a, 0xba, + 0x59, 0x34, 0x3f, 0xb7, 0x52, 0xe5, 0x85, 0x98, 0xeb, 0x3a, 0xfd, 0x1b, 0x4a, 0xac, 0xe4, 0x67, + 0xe2, 0x64, 0x8e, 0xa5, 0x63, 0xa3, 0x26, 0xb9, 0x73, 0x93, 0x36, 0xbb, 0x71, 0xcd, 0x4f, 0x80, + 0x4f, 0x05, 0xb5, 0x79, 0x85, 0xd7, 0xe6, 0x97, 0x87, 0xa8, 0xc4, 0x3e, 0x34, 0x86, 0x32, 0x27, + 0xfe, 0xb0, 0xa7, 0x98, 0xab, 0x9c, 0x62, 0xde, 0x3b, 0x20, 0x17, 0xc9, 0x6b, 0xe6, 0x47, 0x73, + 0x60, 0x8a, 0x1e, 0x26, 0x67, 0xe2, 0x84, 0x3f, 0x4a, 0xae, 0x79, 0x73, 0x4e, 0xa3, 0x4b, 0xb0, + 0x76, 0xf0, 0x81, 0x4e, 0x06, 0xd2, 0x79, 0x74, 0x89, 0xb5, 0x77, 0xfc, 0x57, 0x74, 0x8f, 0xd4, + 0xe5, 0x6b, 0x8e, 0xf2, 0x34, 0xea, 0x3d, 0xd2, 0xe8, 0xe2, 0x93, 0xc7, 0xe7, 0x27, 0x24, 0x20, + 0x15, 0x1a, 0x8d, 0xf8, 0xf1, 0x9d, 0xc2, 0xa1, 0xb8, 0x16, 0x4c, 0xb8, 0x6d, 0xe6, 0xb4, 0x07, + 0x49, 0x30, 0x49, 0xd4, 0xe0, 0xe4, 0xc9, 0xa6, 0xd0, 0x18, 0xb9, 0x05, 0x37, 0xa2, 0xec, 0xe4, + 0x41, 0x79, 0x6b, 0x9e, 0x35, 0x9a, 0x79, 0xcb, 0x3a, 0x4f, 0x8e, 0x25, 0xbc, 0x5e, 0x02, 0xd9, + 0x05, 0xe4, 0xd4, 0xb7, 0x87, 0xd4, 0x66, 0x76, 0xed, 0xa6, 0xdb, 0x66, 0xf6, 0xdd, 0x59, 0xd9, + 0x7f, 0x62, 0xe8, 0xb2, 0x35, 0x47, 0x58, 0x1a, 0x75, 0xb8, 0xc6, 0xc8, 0xd2, 0x93, 0x07, 0xe7, + 0x3b, 0x12, 0x98, 0xf6, 0xcc, 0x46, 0x14, 0x93, 0x1f, 0x7f, 0xde, 0x19, 0x03, 0xe1, 0x57, 0xc4, + 0x42, 0xaa, 0x78, 0x32, 0xe5, 0x6b, 0x96, 0xb0, 0xb5, 0x4e, 0x20, 0xd8, 0x4a, 0x3c, 0x06, 0x47, + 0xb0, 0x2c, 0x96, 0xc0, 0x18, 0x61, 0xa8, 0x64, 0xee, 0x11, 0x37, 0x2d, 0xce, 0x7a, 0xf7, 0xea, + 0xa1, 0x58, 0xef, 0xee, 0xe5, 0xad, 0x77, 0x31, 0x43, 0x18, 0xba, 0xc6, 0x3b, 0x41, 0xbf, 0x05, + 0x9c, 0x7f, 0xe8, 0xb6, 0x3b, 0x01, 0xbf, 0x85, 0x3e, 0xe5, 0x27, 0x8f, 0xe8, 0xff, 0x5e, 0x67, + 0x9d, 0xad, 0xbb, 0x79, 0x05, 0x1f, 0x55, 0x40, 0xe6, 0x0c, 0xfe, 0xf3, 0xd7, 0xfe, 0x15, 0x17, + 0x8f, 0x0e, 0xe1, 0x20, 0xfc, 0xfd, 0x20, 0x43, 0xae, 0xf1, 0xcd, 0x74, 0x85, 0xdc, 0x8c, 0xdc, + 0x49, 0xc3, 0x8c, 0x68, 0x24, 0x9f, 0x72, 0x1c, 0xe4, 0x3a, 0xd6, 0xae, 0x5d, 0xc7, 0xd3, 0x67, + 0xac, 0x31, 0xec, 0x49, 0x34, 0x88, 0x19, 0x47, 0x7a, 0x6e, 0x78, 0xee, 0x79, 0x81, 0x1b, 0x0f, + 0x24, 0xee, 0xc6, 0x03, 0x01, 0xa3, 0x7c, 0x0c, 0xde, 0x92, 0xd7, 0x88, 0xaf, 0x91, 0x5b, 0x7e, + 0x1a, 0xc3, 0x82, 0x3d, 0x44, 0x2c, 0x07, 0x55, 0x07, 0x51, 0xe7, 0x5a, 0x5e, 0xb4, 0x5e, 0x60, + 0xd7, 0x91, 0x3a, 0xd7, 0xc6, 0xe0, 0x61, 0x24, 0x27, 0x82, 0x73, 0xcc, 0x21, 0xf0, 0xdc, 0x30, + 0xd1, 0xcd, 0x70, 0x4a, 0x7f, 0x20, 0x74, 0x86, 0xe8, 0x28, 0x38, 0x30, 0x3a, 0x87, 0xe4, 0x2a, + 0xf8, 0x9b, 0x12, 0x98, 0xa8, 0xf9, 0x57, 0xd2, 0xc5, 0xbf, 0xb9, 0x40, 0x18, 0x22, 0x3c, 0x06, + 0x73, 0x71, 0x23, 0xa7, 0x06, 0x0f, 0x25, 0xca, 0x8b, 0x2e, 0xc0, 0xff, 0xa8, 0x43, 0x89, 0xc6, + 0x65, 0x24, 0x79, 0x20, 0xbf, 0x4c, 0x6f, 0x0a, 0x29, 0xd4, 0x1d, 0x73, 0x0f, 0xc1, 0xd7, 0x25, + 0xd8, 0x91, 0x1e, 0x07, 0x39, 0x6b, 0x73, 0xb3, 0xc3, 0xee, 0x2a, 0x9c, 0xd2, 0xd8, 0x93, 0x7f, + 0x49, 0x3c, 0x05, 0x97, 0x5d, 0x12, 0x2f, 0x18, 0x6c, 0x70, 0x9f, 0x40, 0x69, 0x85, 0x46, 0x1d, + 0x6c, 0x30, 0x1e, 0x1b, 0x23, 0x08, 0x27, 0x0c, 0xb0, 0xf4, 0x98, 0x29, 0xe7, 0xbd, 0xcc, 0x78, + 0x80, 0x0e, 0x8e, 0xed, 0x2c, 0x98, 0x0c, 0x58, 0x0a, 0xdc, 0x80, 0xf5, 0x5c, 0x9a, 0xe8, 0x19, + 0x64, 0x4f, 0x64, 0x43, 0xb7, 0x23, 0x08, 0xd8, 0x87, 0xe3, 0x30, 0x31, 0x92, 0xfb, 0x60, 0xdc, + 0x21, 0x6f, 0x44, 0x58, 0xfd, 0x4a, 0x10, 0xab, 0x2a, 0x8f, 0xd5, 0x5d, 0x71, 0xc4, 0x14, 0x6f, + 0x08, 0x8c, 0xb5, 0xcc, 0xfc, 0x88, 0x07, 0x97, 0xc6, 0xc1, 0x75, 0xff, 0xc0, 0x7c, 0x24, 0x8f, + 0xd8, 0xaf, 0x4b, 0xf4, 0x52, 0x88, 0xc2, 0x9e, 0x61, 0x36, 0xc9, 0xc1, 0xf1, 0x21, 0x5c, 0x6a, + 0xf8, 0x3f, 0x82, 0xa0, 0x9c, 0xe1, 0x41, 0x79, 0x30, 0x8e, 0x30, 0x38, 0x8e, 0x42, 0xb0, 0x79, + 0x59, 0xd0, 0x96, 0x4e, 0xa3, 0x8b, 0x5e, 0xd9, 0x1d, 0xa1, 0x8d, 0xbd, 0x0f, 0x1a, 0xd9, 0xbf, + 0xe4, 0x81, 0x74, 0x8e, 0x03, 0x49, 0x3d, 0x28, 0x5f, 0x62, 0x58, 0x2d, 0x8b, 0x63, 0xa5, 0xcc, + 0x80, 0x63, 0x95, 0xaa, 0xbe, 0x5e, 0x58, 0x2f, 0x15, 0xf4, 0xc2, 0x99, 0xb2, 0x7a, 0x76, 0x7d, + 0x7e, 0xb9, 0x5a, 0x3c, 0x2d, 0x4b, 0xf0, 0x67, 0xe8, 0x18, 0x58, 0xa3, 0xeb, 0xb4, 0xe1, 0xcc, + 0x36, 0xd9, 0x12, 0x50, 0xe2, 0x96, 0x80, 0x82, 0x0e, 0xed, 0xbe, 0x9f, 0xa6, 0xcb, 0x5c, 0xbf, + 0x86, 0x96, 0x19, 0xb2, 0x43, 0x7b, 0x5f, 0x0e, 0x92, 0x6f, 0x62, 0xdf, 0x96, 0x00, 0x58, 0xb4, + 0xad, 0xdd, 0x76, 0xd5, 0x6e, 0x20, 0x1b, 0x3e, 0xeb, 0xaf, 0xfa, 0x7e, 0x72, 0x08, 0x93, 0x95, + 0x55, 0x00, 0xb6, 0x3c, 0xe2, 0xac, 0x9f, 0xba, 0x3d, 0xde, 0x1a, 0xcf, 0x67, 0x4a, 0x0b, 0xd0, + 0xe0, 0x2f, 0x0e, 0xfc, 0x6e, 0x1e, 0xe3, 0xa8, 0x91, 0xc7, 0x27, 0x37, 0xcc, 0x55, 0xdf, 0xc7, + 0x3c, 0xac, 0x75, 0x0e, 0xeb, 0x07, 0x0f, 0xc0, 0xc9, 0x08, 0x7c, 0x00, 0xf2, 0x60, 0x82, 0xee, + 0xd1, 0x52, 0x99, 0xfe, 0x85, 0x0f, 0xfa, 0x5b, 0x87, 0x00, 0xfa, 0x1a, 0x98, 0xb4, 0x7c, 0xea, + 0x74, 0x64, 0x0c, 0x5a, 0xdd, 0x22, 0x61, 0x0f, 0xf0, 0xa5, 0x71, 0x64, 0xe0, 0xaf, 0x07, 0x91, + 0xd7, 0x78, 0xe4, 0xef, 0x8d, 0x90, 0x77, 0x80, 0xe2, 0x30, 0xa1, 0xff, 0xb8, 0x07, 0xfd, 0x1a, + 0x07, 0x7d, 0xe1, 0x20, 0xac, 0x24, 0x8f, 0xfd, 0xdf, 0x48, 0x20, 0x43, 0x8e, 0x9f, 0x7d, 0x20, + 0xc1, 0xb5, 0xc8, 0x0c, 0xc8, 0x93, 0x26, 0xeb, 0x2d, 0x36, 0xdd, 0x47, 0xfc, 0xc6, 0xd8, 0x74, + 0x90, 0xed, 0xf9, 0x7e, 0xb8, 0x8f, 0x98, 0x07, 0x0a, 0x77, 0x99, 0x78, 0x58, 0x90, 0xdd, 0x67, + 0x2f, 0x61, 0xe0, 0x95, 0x68, 0x50, 0xe2, 0x43, 0x3b, 0x90, 0x36, 0xc8, 0x4a, 0xb4, 0x0f, 0x23, + 0xc9, 0x03, 0xff, 0x07, 0x19, 0x30, 0x43, 0x4d, 0x89, 0x0b, 0xb6, 0xb5, 0xd3, 0x75, 0x05, 0x8a, + 0x79, 0x70, 0x5d, 0xb8, 0x11, 0x4c, 0xd3, 0x4d, 0x9c, 0x2a, 0x03, 0x8d, 0xe9, 0x44, 0x57, 0x2a, + 0xfc, 0xbd, 0xe0, 0x5d, 0xff, 0xdf, 0xc3, 0x23, 0x39, 0x1f, 0x21, 0xc0, 0x30, 0xde, 0x85, 0x77, + 0x67, 0x62, 0x32, 0x1a, 0xb0, 0x4c, 0x4a, 0x03, 0x19, 0xaa, 0xc5, 0x2e, 0x7d, 0xff, 0x65, 0x4f, + 0xa7, 0xbe, 0x97, 0xd3, 0xa9, 0xc5, 0x83, 0x8b, 0x24, 0x79, 0xdd, 0x7a, 0xc4, 0xdb, 0x0d, 0xf4, + 0xf6, 0x6a, 0x13, 0xd9, 0xa1, 0x7d, 0x6c, 0x40, 0xab, 0x05, 0xcf, 0x5b, 0x88, 0xc6, 0x4c, 0x83, + 0xb4, 0xe9, 0xf2, 0x90, 0x36, 0x1b, 0x03, 0xd9, 0x25, 0x22, 0x0b, 0x1a, 0x81, 0xd9, 0x70, 0x1a, + 0xe4, 0x16, 0xcc, 0xa6, 0x83, 0x6c, 0xf8, 0x75, 0x66, 0x95, 0x78, 0x3c, 0xc1, 0x6e, 0xbe, 0x04, + 0x72, 0x9b, 0xa4, 0x34, 0x36, 0x31, 0xbe, 0x2d, 0x5e, 0x1b, 0xa1, 0x1c, 0x6a, 0x2c, 0xaf, 0x68, + 0x90, 0xbb, 0x2e, 0x32, 0x43, 0x33, 0x67, 0x08, 0x04, 0xb9, 0xeb, 0xcf, 0xc2, 0x48, 0xee, 0x28, + 0xc9, 0x69, 0x68, 0x07, 0x8f, 0xe4, 0xe7, 0x93, 0x43, 0x58, 0x06, 0x92, 0xd9, 0xe8, 0x90, 0x2e, + 0x70, 0x5c, 0xc3, 0x7f, 0x45, 0xdd, 0xc0, 0xba, 0x45, 0x45, 0x59, 0x1e, 0xb5, 0x1b, 0x58, 0x2c, + 0x2e, 0x92, 0xc7, 0xec, 0xef, 0x24, 0x8c, 0x54, 0xbb, 0x69, 0xd4, 0x11, 0xe6, 0x3e, 0x31, 0xd4, + 0x68, 0x4f, 0x96, 0x71, 0x7b, 0xb2, 0x40, 0x3b, 0xcd, 0x1e, 0xa0, 0x9d, 0x0e, 0x6a, 0x32, 0xf6, + 0x64, 0x4e, 0x2a, 0x7e, 0x68, 0x26, 0xe3, 0x48, 0x36, 0x46, 0x60, 0x32, 0x76, 0xcf, 0xa3, 0x8e, + 0xb4, 0xb5, 0x0e, 0xba, 0xff, 0xc6, 0x84, 0x35, 0xb4, 0xb3, 0xa7, 0x83, 0xec, 0xbf, 0x85, 0xf3, + 0x90, 0x3c, 0x5a, 0x3f, 0x37, 0xcd, 0xd0, 0xfa, 0x32, 0x1b, 0x46, 0x13, 0xde, 0x02, 0xef, 0x58, + 0xb6, 0x23, 0xb6, 0x05, 0x8e, 0xb9, 0xd3, 0x48, 0x3e, 0xd1, 0x83, 0x6a, 0xfc, 0xf1, 0xe4, 0x61, + 0x0d, 0x9f, 0x02, 0x07, 0xd5, 0xfa, 0x31, 0x90, 0x3c, 0xbc, 0x1f, 0x3a, 0xa4, 0xc1, 0x73, 0xd0, + 0xe6, 0xc8, 0xda, 0xc0, 0xd0, 0x86, 0xce, 0x41, 0x9a, 0x63, 0x38, 0x0f, 0xc9, 0xe3, 0xf5, 0x5c, + 0x60, 0xe0, 0x7c, 0xff, 0x08, 0x07, 0x4e, 0xb7, 0x65, 0x66, 0x07, 0x6c, 0x99, 0x83, 0xee, 0xd5, + 0x31, 0x59, 0x0f, 0x6f, 0xc0, 0x1c, 0x64, 0xaf, 0x2e, 0x82, 0x89, 0xe4, 0x11, 0x7f, 0xdf, 0xa1, + 0x0c, 0x97, 0x03, 0x6f, 0x20, 0x60, 0x51, 0x0d, 0x6d, 0xb0, 0x1c, 0x68, 0x03, 0x21, 0x84, 0x83, + 0x11, 0x04, 0xaf, 0x3f, 0x0a, 0x26, 0x89, 0xd5, 0xc3, 0xdd, 0x0f, 0x7f, 0x8e, 0x0d, 0x99, 0x4f, + 0x24, 0xd8, 0x50, 0x1f, 0x02, 0x63, 0xee, 0xa6, 0x19, 0x1b, 0x36, 0xe7, 0xe2, 0x35, 0x4e, 0x6f, + 0xd3, 0xcd, 0xcb, 0x7f, 0x20, 0x27, 0x97, 0xa1, 0x6f, 0xaa, 0x0f, 0xea, 0xe4, 0x72, 0xa8, 0x1b, + 0xeb, 0x4f, 0xfb, 0xc3, 0xe9, 0x0f, 0x24, 0x87, 0x79, 0xf7, 0x86, 0x7b, 0xa6, 0xc7, 0x86, 0x3b, + 0x77, 0xd9, 0x7e, 0x8d, 0xc7, 0xf2, 0xbe, 0xb8, 0x22, 0x1c, 0xe2, 0x40, 0xfb, 0xa4, 0x07, 0xe7, + 0x19, 0x0e, 0xce, 0xf9, 0x03, 0xf1, 0x92, 0x3c, 0xa2, 0x8f, 0x65, 0xfc, 0x01, 0xf7, 0xb7, 0x12, + 0x6c, 0xc7, 0x5d, 0xa7, 0x65, 0x32, 0xfb, 0x4e, 0xcb, 0x70, 0x2d, 0x3d, 0x7b, 0xc0, 0x96, 0xfe, + 0x5b, 0x41, 0xed, 0xd0, 0x79, 0xed, 0xb8, 0x3f, 0x3e, 0x22, 0xc3, 0x1b, 0x96, 0x3f, 0xe1, 0xa9, + 0xc7, 0x59, 0x4e, 0x3d, 0x8a, 0x07, 0x63, 0x26, 0x79, 0xfd, 0xf8, 0x6d, 0x77, 0x78, 0x3e, 0xe4, + 0xf6, 0x3e, 0xe8, 0x6e, 0x30, 0x27, 0xc4, 0xa1, 0x0d, 0xdc, 0x83, 0xec, 0x06, 0xf7, 0xe3, 0x64, + 0x04, 0xf1, 0xcc, 0xa6, 0xc0, 0x04, 0xe1, 0xe9, 0xac, 0xd9, 0xd8, 0x42, 0x0e, 0x7c, 0x27, 0xf5, + 0x3d, 0x75, 0xa3, 0x47, 0xc2, 0xef, 0x3b, 0x38, 0xc4, 0x11, 0x87, 0x92, 0x45, 0xe7, 0x5c, 0x94, + 0xc9, 0xb9, 0x00, 0x83, 0xa3, 0x9e, 0x73, 0xf5, 0xe5, 0x60, 0x24, 0x7e, 0x51, 0xe3, 0x35, 0xe4, + 0x2c, 0x1b, 0x97, 0xac, 0x5d, 0x07, 0x3e, 0x32, 0x84, 0x0e, 0x7a, 0x1e, 0xe4, 0x9a, 0x84, 0x1a, + 0x3b, 0x6e, 0x13, 0xbd, 0xd6, 0x61, 0x22, 0xa0, 0xe5, 0x6b, 0x2c, 0xa7, 0xe8, 0x99, 0x1b, 0x5f, + 0x8e, 0x94, 0xce, 0xa8, 0xcf, 0xdc, 0xf4, 0x29, 0x7f, 0x24, 0xf7, 0xd4, 0x8c, 0xe1, 0xd2, 0x89, + 0x43, 0xee, 0x70, 0xc2, 0x5d, 0x50, 0x4f, 0x5f, 0x16, 0xee, 0x82, 0x7a, 0xfa, 0x0a, 0x9e, 0x04, + 0x0e, 0x48, 0x05, 0x67, 0x1f, 0xf5, 0x49, 0xe0, 0xe8, 0xe2, 0x93, 0xc7, 0xe4, 0xa7, 0x69, 0xcb, + 0x3a, 0x43, 0x8f, 0x2f, 0x9c, 0x4b, 0x6c, 0x74, 0x1b, 0xbc, 0xb1, 0x50, 0xd6, 0x0e, 0xaf, 0xb1, + 0xf4, 0x2c, 0x3f, 0x79, 0x60, 0xde, 0x7e, 0x14, 0x64, 0x4b, 0x68, 0x63, 0x77, 0x0b, 0xde, 0x0b, + 0xc6, 0x74, 0x1b, 0xa1, 0x72, 0x6b, 0xd3, 0xc2, 0xd2, 0x75, 0xf0, 0x7f, 0x17, 0x12, 0xf6, 0x84, + 0xf1, 0xd8, 0x46, 0x46, 0xc3, 0x3f, 0x57, 0xe8, 0x3e, 0xc2, 0xe7, 0xd2, 0x60, 0x1c, 0x67, 0x5f, + 0x42, 0x46, 0xa3, 0x03, 0x5f, 0xe4, 0x03, 0x1c, 0x42, 0x0a, 0x7e, 0x3a, 0x76, 0xd0, 0x46, 0xc2, + 0xde, 0x9c, 0x47, 0x3c, 0xdc, 0x31, 0xa1, 0xd3, 0x36, 0xea, 0xc8, 0x57, 0x15, 0xf6, 0xa8, 0x9c, + 0x04, 0x19, 0xb3, 0xb5, 0x69, 0x31, 0x37, 0xb9, 0xab, 0x42, 0x68, 0xe3, 0x7a, 0x6b, 0xe4, 0xc3, + 0x98, 0x11, 0x1d, 0xa3, 0xd9, 0x1a, 0xc9, 0xe5, 0x68, 0x19, 0x5c, 0x3a, 0xfc, 0xd7, 0x7d, 0x85, + 0xdd, 0xf3, 0x5a, 0xfc, 0x59, 0x30, 0xb9, 0xdb, 0x32, 0x5a, 0x56, 0xeb, 0xd2, 0x8e, 0xf9, 0x2a, + 0xef, 0x0e, 0x56, 0x2e, 0x0d, 0x73, 0xbe, 0x85, 0x5a, 0xc8, 0x36, 0x1c, 0x54, 0xdb, 0xdb, 0x22, + 0xeb, 0x88, 0x31, 0x2d, 0x98, 0x04, 0x1f, 0x09, 0xc2, 0x78, 0x2f, 0x0f, 0xe3, 0x8d, 0x21, 0xf2, + 0x0a, 0x41, 0x10, 0xd2, 0x20, 0x82, 0x24, 0x74, 0x13, 0x3b, 0xbe, 0xec, 0x3e, 0xc3, 0x77, 0x78, + 0x90, 0x3c, 0xc0, 0x41, 0x72, 0x6b, 0xbc, 0x22, 0x92, 0x47, 0xe3, 0xd9, 0x34, 0x98, 0xac, 0x61, + 0x85, 0xab, 0xed, 0xee, 0xec, 0x18, 0xf6, 0x25, 0x38, 0xee, 0xa1, 0x02, 0x7f, 0x33, 0xf6, 0x25, + 0xc3, 0xb4, 0x02, 0x41, 0x3a, 0xc2, 0xda, 0x7e, 0x07, 0xc8, 0x62, 0x25, 0x76, 0xdd, 0x03, 0x23, + 0xd5, 0x9d, 0x7e, 0x19, 0x33, 0x90, 0x55, 0x5f, 0xde, 0x92, 0x17, 0xf2, 0x9b, 0x24, 0x20, 0xab, + 0x17, 0xdb, 0x96, 0xed, 0x2c, 0x5b, 0x75, 0xa3, 0xd9, 0x71, 0x2c, 0x1b, 0xc1, 0x97, 0xf9, 0xea, + 0xef, 0xaa, 0x79, 0x2a, 0xa0, 0xe6, 0xc7, 0x41, 0xae, 0x61, 0xd5, 0xfd, 0x1e, 0x8b, 0x3d, 0xf1, + 0x6e, 0x8f, 0x91, 0xbb, 0x3b, 0xb4, 0xe2, 0xdd, 0xe5, 0x86, 0x00, 0xd3, 0xab, 0xa5, 0x89, 0x1d, + 0x28, 0x88, 0xb7, 0xe3, 0x13, 0x8b, 0xa9, 0x11, 0xc4, 0x65, 0x4f, 0x83, 0xcc, 0xaa, 0xd9, 0xda, + 0x0a, 0xfa, 0x25, 0x1d, 0xc3, 0x1a, 0xd8, 0x40, 0x17, 0x09, 0xdf, 0x59, 0x8d, 0x3e, 0x28, 0xa7, + 0xc0, 0xb1, 0xd6, 0xee, 0xce, 0x06, 0xb2, 0xab, 0x9b, 0xa4, 0xba, 0x1d, 0xdd, 0xaa, 0xa1, 0x16, + 0x55, 0xdf, 0xac, 0xd6, 0xf3, 0x1d, 0xfc, 0xc7, 0x94, 0x58, 0xe7, 0x82, 0x39, 0x09, 0xc1, 0xc5, + 0x63, 0x2a, 0x1d, 0x60, 0x4a, 0xa8, 0x5b, 0xe9, 0x41, 0x3c, 0x79, 0xf9, 0xfe, 0x59, 0x1a, 0xe4, + 0x57, 0x90, 0x63, 0x9b, 0xf5, 0x0e, 0x7c, 0x26, 0x0d, 0xa6, 0x6a, 0xc8, 0x59, 0x35, 0x6c, 0x63, + 0x07, 0x39, 0xc8, 0xee, 0x40, 0xd5, 0x17, 0x3a, 0x04, 0x63, 0xed, 0xa6, 0xe1, 0x6c, 0x5a, 0xf6, + 0x0e, 0x53, 0x7f, 0xef, 0x19, 0x77, 0x16, 0x7b, 0xc8, 0xee, 0xf8, 0x6c, 0xb9, 0x8f, 0x77, 0x67, + 0x5e, 0xff, 0xe7, 0x52, 0x8a, 0x17, 0x73, 0xe4, 0x9c, 0x89, 0xb1, 0x32, 0xc7, 0xb1, 0x11, 0x12, + 0xbb, 0x2d, 0xde, 0x2c, 0x28, 0x0e, 0xc5, 0xe4, 0xc5, 0xfc, 0xab, 0x12, 0x90, 0x96, 0xad, 0x2d, + 0xf8, 0x49, 0x09, 0x64, 0x88, 0xe6, 0xfd, 0x7c, 0x60, 0xed, 0x37, 0x03, 0xf2, 0x3b, 0xa8, 0xd3, + 0x31, 0xb6, 0x10, 0x93, 0xac, 0xfb, 0xa8, 0xdc, 0x05, 0xb2, 0x4d, 0xb4, 0x87, 0x9a, 0x84, 0x8d, + 0xe9, 0x53, 0xd7, 0x71, 0x35, 0x5b, 0xb6, 0xb6, 0xe6, 0x30, 0xad, 0x39, 0x46, 0x67, 0x6e, 0x19, + 0x7f, 0xaa, 0xd1, 0x1c, 0xb3, 0x0f, 0x81, 0x2c, 0x79, 0x56, 0xc6, 0x41, 0xb6, 0xa4, 0xce, 0xaf, + 0x2d, 0xca, 0x47, 0xf0, 0x5f, 0x97, 0xbf, 0x71, 0x90, 0x5d, 0x28, 0xe8, 0x85, 0x65, 0x39, 0x8d, + 0xeb, 0x51, 0xae, 0x2c, 0x54, 0x65, 0x09, 0x27, 0xae, 0x16, 0x2a, 0xe5, 0xa2, 0x9c, 0x51, 0x26, + 0x40, 0xfe, 0x6c, 0x41, 0xab, 0x94, 0x2b, 0x8b, 0x72, 0x16, 0xbe, 0x3a, 0xd8, 0x95, 0xdd, 0xcd, + 0xe3, 0x77, 0x7d, 0x18, 0x4f, 0xbd, 0x20, 0xfb, 0x25, 0x0f, 0xb2, 0xfb, 0x38, 0xc8, 0x5e, 0x1c, + 0x87, 0x88, 0x18, 0x4a, 0x95, 0x01, 0x8e, 0xc2, 0x4c, 0x81, 0xf1, 0x4a, 0x55, 0x5f, 0x5f, 0xa8, + 0xae, 0x55, 0x4a, 0x32, 0xc2, 0x32, 0xd0, 0xcb, 0x2b, 0x6a, 0x75, 0x4d, 0x97, 0x37, 0xe1, 0x7b, + 0xd2, 0x20, 0xbf, 0x6a, 0x5b, 0x75, 0xd4, 0xe9, 0xc0, 0xb7, 0xa4, 0x41, 0xae, 0x68, 0xb4, 0xea, + 0xa8, 0x09, 0x5f, 0xe0, 0xc3, 0x48, 0x37, 0x21, 0x53, 0x9e, 0x1f, 0xe2, 0xb7, 0x83, 0x5a, 0xff, + 0x20, 0x2f, 0xb5, 0x5b, 0xb8, 0x0a, 0x33, 0xba, 0x73, 0x94, 0x66, 0x88, 0xec, 0xde, 0xed, 0xc9, + 0xae, 0xc8, 0xc9, 0xee, 0x64, 0x7c, 0x52, 0xc9, 0xeb, 0xf9, 0xdf, 0xa6, 0xc0, 0xb1, 0x45, 0x3c, + 0x7b, 0x33, 0xeb, 0x94, 0x79, 0xb7, 0xfe, 0xf7, 0xf1, 0xf5, 0xbf, 0x89, 0x63, 0xba, 0x57, 0x0e, + 0xbe, 0xf2, 0x8f, 0x7b, 0x95, 0x7f, 0x90, 0xab, 0xfc, 0x6d, 0x31, 0xe9, 0x24, 0x5f, 0xf3, 0x9f, + 0x4d, 0x83, 0xb1, 0xb5, 0x0e, 0xb2, 0x4b, 0x86, 0x63, 0x60, 0x05, 0xc9, 0x94, 0x76, 0x77, 0xda, + 0xf0, 0x9a, 0xc8, 0xb9, 0x03, 0x7c, 0x2e, 0xa8, 0x22, 0x0f, 0xf0, 0x22, 0xe2, 0xdb, 0x84, 0x4b, + 0x7a, 0x0e, 0x93, 0x0d, 0xd1, 0x90, 0x77, 0x79, 0x42, 0x9a, 0xe7, 0x84, 0x34, 0x17, 0x9b, 0x52, + 0xe2, 0x62, 0x9a, 0xcd, 0x83, 0xac, 0xba, 0xd3, 0x76, 0x2e, 0xcd, 0xde, 0x00, 0xa6, 0x6a, 0x8e, + 0x8d, 0x8c, 0x9d, 0xc0, 0xa8, 0xee, 0x58, 0xe7, 0x51, 0x8b, 0x09, 0x88, 0x3e, 0xdc, 0x7d, 0x17, + 0xc8, 0xb7, 0xac, 0x75, 0x63, 0xd7, 0xd9, 0x56, 0x5e, 0xb8, 0x2f, 0x6e, 0xe3, 0x0a, 0xed, 0x26, + 0xab, 0x6d, 0x7a, 0x5c, 0xef, 0x4f, 0xef, 0x25, 0xcb, 0x87, 0x5c, 0xcb, 0x2a, 0xec, 0x3a, 0xdb, + 0xf3, 0x57, 0x7f, 0xee, 0xd9, 0x13, 0xa9, 0x2f, 0x3e, 0x7b, 0x22, 0xf5, 0x27, 0xcf, 0x9e, 0x48, + 0xfd, 0xf8, 0x37, 0x4e, 0x1c, 0xf9, 0xe2, 0x37, 0x4e, 0x1c, 0x79, 0xe6, 0x1b, 0x27, 0x8e, 0xbc, + 0x32, 0xdd, 0xde, 0xd8, 0xc8, 0x11, 0x2a, 0x77, 0xfe, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb2, + 0x52, 0x15, 0x93, 0x6c, 0x69, 0x01, 0x00, } func (m *Rpc) Marshal() (dAtA []byte, err error) { @@ -83599,6 +83608,13 @@ func (m *RpcMetricsSetParametersRequest) MarshalToSizedBuffer(dAtA []byte) (int, _ = i var l int _ = l + if len(m.Version) > 0 { + i -= len(m.Version) + copy(dAtA[i:], m.Version) + i = encodeVarintCommands(dAtA, i, uint64(len(m.Version))) + i-- + dAtA[i] = 0x12 + } if len(m.Platform) > 0 { i -= len(m.Platform) copy(dAtA[i:], m.Platform) @@ -97708,6 +97724,10 @@ func (m *RpcMetricsSetParametersRequest) Size() (n int) { if l > 0 { n += 1 + l + sovCommands(uint64(l)) } + l = len(m.Version) + if l > 0 { + n += 1 + l + sovCommands(uint64(l)) + } return n } @@ -183835,6 +183855,38 @@ func (m *RpcMetricsSetParametersRequest) Unmarshal(dAtA []byte) error { } m.Platform = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommands + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommands + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommands + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Version = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipCommands(dAtA[iNdEx:]) diff --git a/pb/protos/commands.proto b/pb/protos/commands.proto index 10e2548cf2..2ead8b7328 100644 --- a/pb/protos/commands.proto +++ b/pb/protos/commands.proto @@ -5372,6 +5372,7 @@ message Rpc { message Request { option (no_auth) = true; string platform = 1; + string version = 2; } message Response { From a21a2020e3e1eb11672a6aa3305314082ac44d59 Mon Sep 17 00:00:00 2001 From: mcrakhman Date: Tue, 13 Jun 2023 17:37:50 +0200 Subject: [PATCH 2/3] Add platform to client version --- core/metrics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/metrics.go b/core/metrics.go index 6010409c85..70795e3e7c 100644 --- a/core/metrics.go +++ b/core/metrics.go @@ -16,7 +16,7 @@ func (mw *Middleware) MetricsSetParameters(cctx context.Context, req *pb.RpcMetr return m } - mw.clientVersion = req.Version + mw.clientVersion = req.Platform + "-" + req.Version metrics.SharedClient.SetPlatform(req.Platform) return response(pb.RpcMetricsSetParametersResponseError_NULL, nil) From d2c4e770b7996784b05a173136b538f190f9ed95 Mon Sep 17 00:00:00 2001 From: mcrakhman Date: Tue, 13 Jun 2023 19:14:10 +0200 Subject: [PATCH 3/3] Simplify remote load (remove retries) --- core/block/cache.go | 2 +- core/block/source/service.go | 10 +--------- go.mod | 2 +- go.sum | 4 ++-- 4 files changed, 5 insertions(+), 13 deletions(-) diff --git a/core/block/cache.go b/core/block/cache.go index c274165d16..7f3fc12beb 100644 --- a/core/block/cache.go +++ b/core/block/cache.go @@ -372,7 +372,7 @@ func (s *Service) getDerivedObject( optsKey, cacheOpts{ buildOption: source.BuildOptions{ - RetryRemoteLoad: true, + // TODO: revive p2p (right now we are not ready to load from local clients due to the fact that we need to know when local peers connect) }, }, ) diff --git a/core/block/source/service.go b/core/block/source/service.go index 272bcd1f18..bd32187b6f 100644 --- a/core/block/source/service.go +++ b/core/block/source/service.go @@ -5,7 +5,6 @@ import ( "fmt" "strings" "sync" - "time" "github.com/anyproto/any-sync/accountservice" "github.com/anyproto/any-sync/app" @@ -71,19 +70,12 @@ func (s *service) Name() (name string) { type BuildOptions struct { DisableRemoteLoad bool - RetryRemoteLoad bool // anysync only; useful for account cold load from p2p nodes Listener updatelistener.UpdateListener } func (b *BuildOptions) BuildTreeOpts() objecttreebuilder.BuildTreeOpts { - var retryTimeout time.Duration - // we will try to reconnect during the ctx timeout if RetryRemoteLoad is set - if b.RetryRemoteLoad { - retryTimeout = time.Minute - } return objecttreebuilder.BuildTreeOpts{ - Listener: b.Listener, - RetryTimeout: retryTimeout, + Listener: b.Listener, } } diff --git a/go.mod b/go.mod index 23551bb07f..275c7e22b7 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/PuerkitoBio/goquery v1.8.1 github.com/VividCortex/ewma v1.2.0 github.com/adrium/goheif v0.0.0-20230113233934-ca402e77a786 - github.com/anyproto/any-sync v0.2.2 + github.com/anyproto/any-sync v0.2.3 github.com/anyproto/go-naturaldate/v2 v2.0.2-0.20230524105841-9829cfd13438 github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de github.com/blevesearch/bleve/v2 v2.3.8 diff --git a/go.sum b/go.sum index aae681c0dc..a13f1717c6 100644 --- a/go.sum +++ b/go.sum @@ -40,8 +40,8 @@ github.com/andybalholm/cascadia v1.2.0/go.mod h1:YCyR8vOZT9aZ1CHEd8ap0gMVm2aFgxB github.com/andybalholm/cascadia v1.3.1 h1:nhxRkql1kdYCc8Snf7D5/D3spOX+dBgjA6u8x004T2c= github.com/andybalholm/cascadia v1.3.1/go.mod h1:R4bJ1UQfqADjvDa4P6HZHLh/3OxWWEqc0Sk8XGwHqvA= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/anyproto/any-sync v0.2.2 h1:pefWmg+/rK3DvFPhT7MDc8YNi9Yl0HNhVXNvwOJQP0g= -github.com/anyproto/any-sync v0.2.2/go.mod h1:U8NhzTbGCSE9Yf2CfvBTGtNPAYl6zrZT2vZypab2mck= +github.com/anyproto/any-sync v0.2.3 h1:e4I1cnzBWDdqaRnkX2341yExPNih/sdvnpCXz70bw5M= +github.com/anyproto/any-sync v0.2.3/go.mod h1:U8NhzTbGCSE9Yf2CfvBTGtNPAYl6zrZT2vZypab2mck= github.com/anyproto/go-chash v0.1.0 h1:I9meTPjXFRfXZHRJzjOHC/XF7Q5vzysKkiT/grsogXY= github.com/anyproto/go-chash v0.1.0/go.mod h1:0UjNQi3PDazP0fINpFYu6VKhuna+W/V+1vpXHAfNgLY= github.com/anyproto/go-ds-badger3 v0.3.1-0.20230524095230-434cf6346d9b h1:SMizb43hfILk2bpMgpTd30n6yQQdxW0ZbDti0wqfsBw=