diff --git a/hermes/hermes b/hermes/hermes deleted file mode 100755 index 2f0ac75d9..000000000 Binary files a/hermes/hermes and /dev/null differ diff --git a/hermes/service/hermes/logsrotator/log_rotation.go b/hermes/service/hermes/logsrotator/log_rotation.go index 7e4bda7f0..061ddc571 100644 --- a/hermes/service/hermes/logsrotator/log_rotation.go +++ b/hermes/service/hermes/logsrotator/log_rotation.go @@ -15,7 +15,7 @@ import ( const ( runTaskInterval = 30 * time.Minute - maxLogSize = 10 * 1024 * 1024 // 10 MB + maxLogSize = 200 * 1024 * 1024 // 200 MB destDir = "/tmp" ) diff --git a/walletnode/api/design/cascade.go b/walletnode/api/design/cascade.go index 5f558e224..e9a278f90 100644 --- a/walletnode/api/design/cascade.go +++ b/walletnode/api/design/cascade.go @@ -173,7 +173,7 @@ var _ = Service("cascade", func() { Payload(func() { Extend(DownloadTaskStatePayload) }) - Result(ArrayOf(TaskHistory)) + Result(DownloadTaskStatus) HTTP(func() { GET("/downloads/{file_id}/status") diff --git a/walletnode/api/design/common.go b/walletnode/api/design/common.go index 7bab7cdfa..b57aac1dd 100644 --- a/walletnode/api/design/common.go +++ b/walletnode/api/design/common.go @@ -72,8 +72,8 @@ var RegisterTaskPayload = Type("RegisterTaskPayload", func() { var DownloadTaskStatePayload = Type("DownloadTaskStatePayload", func() { Attribute("file_id", String, "File ID returned by Download V2 API", func() { TypeName("file_id") - MinLength(8) - MaxLength(8) + MinLength(6) + MaxLength(6) Example("n6Qn6TFM") }) Required("file_id") @@ -128,6 +128,62 @@ var TaskHistory = Type("TaskHistory", func() { Required("status") }) +// DownloadTaskStatus is status of the download task +var DownloadTaskStatus = Type("DownloadTaskStatus", func() { + Attribute("total_volumes", Int, func() { + Description("Total Volumes") + Example(1) + }) + + Attribute("downloaded_volumes", Int, func() { + Description("Number of volumes successfully downloaded") + Example(1) + }) + + Attribute("volumes_download_in_progress", Int, func() { + Description("Number of volumes currently being downloaded") + Example(1) + }) + + Attribute("volumes_pending_download", Int, func() { + Description("Number of volumes awaiting schedule") + Example(1) + }) + + Attribute("volumes_download_failed", Int, func() { + Description("Number of volumes failed to download") + Example(1) + }) + + Attribute("task_status", String, func() { + Description("Status of the operation") + Example("In Progress") + Enum("Completed", "Failed", "In Progress") + }) + + Attribute("size_of_the_file_megabytes", Int, func() { + Description("size of the file in megabytes") + Example(1) + }) + + Attribute("data_downloaded_megabytes", Int, func() { + Description("data downloaded in megabytes so far") + Example(1) + }) + + Attribute("message", String, func() { + Description("message string (if any)") + Example("Balance less than maximum fee provied in the request, could not gather enough confirmations...") + }) + + Attribute("details", Details, func() { + Description("details of the status") + }) + + Required("total_volumes", "downloaded_volumes", "volumes_download_in_progress", "volumes_download_failed", "task_status", "details", + "volumes_pending_download", "size_of_the_file_megabytes", "data_downloaded_megabytes") +}) + // ActionDetailsResult - result of posting action details var ActionDetailsResult = ResultType("application/sense.start-action", func() { TypeName("actionDetailResult") diff --git a/walletnode/api/gen/cascade/client.go b/walletnode/api/gen/cascade/client.go index 338868a7e..34619c13e 100644 --- a/walletnode/api/gen/cascade/client.go +++ b/walletnode/api/gen/cascade/client.go @@ -165,13 +165,13 @@ func (c *Client) DownloadV2(ctx context.Context, p *DownloadPayload) (res *FileD // - "NotFound" (type *goa.ServiceError) // - "InternalServerError" (type *goa.ServiceError) // - error: internal error -func (c *Client) GetDownloadTaskState(ctx context.Context, p *GetDownloadTaskStatePayload) (res []*TaskHistory, err error) { +func (c *Client) GetDownloadTaskState(ctx context.Context, p *GetDownloadTaskStatePayload) (res *DownloadTaskStatus, err error) { var ires any ires, err = c.GetDownloadTaskStateEndpoint(ctx, p) if err != nil { return } - return ires.([]*TaskHistory), nil + return ires.(*DownloadTaskStatus), nil } // RegistrationDetails calls the "registrationDetails" endpoint of the diff --git a/walletnode/api/gen/cascade/service.go b/walletnode/api/gen/cascade/service.go index 7cbe9de81..5624e0caa 100644 --- a/walletnode/api/gen/cascade/service.go +++ b/walletnode/api/gen/cascade/service.go @@ -33,7 +33,7 @@ type Service interface { // Starts downloading cascade Artifact. DownloadV2(context.Context, *DownloadPayload) (res *FileDownloadV2Result, err error) // Gets the state of download task - GetDownloadTaskState(context.Context, *GetDownloadTaskStatePayload) (res []*TaskHistory, err error) + GetDownloadTaskState(context.Context, *GetDownloadTaskStatePayload) (res *DownloadTaskStatus, err error) // Get the file registration details RegistrationDetails(context.Context, *RegistrationDetailsPayload) (res *Registration, err error) // Restore the files cascade registration @@ -130,6 +130,31 @@ type DownloadPayload struct { Key string } +// DownloadTaskStatus is the result type of the cascade service +// getDownloadTaskState method. +type DownloadTaskStatus struct { + // Total Volumes + TotalVolumes int + // Number of volumes successfully downloaded + DownloadedVolumes int + // Number of volumes currently being downloaded + VolumesDownloadInProgress int + // Number of volumes awaiting schedule + VolumesPendingDownload int + // Number of volumes failed to download + VolumesDownloadFailed int + // Status of the operation + TaskStatus string + // size of the file in megabytes + SizeOfTheFileMegabytes int + // data downloaded in megabytes so far + DataDownloadedMegabytes int + // message string (if any) + Message *string + // details of the status + Details *Details +} + type File struct { // File ID FileID string diff --git a/walletnode/api/gen/http/cascade/client/cli.go b/walletnode/api/gen/http/cascade/client/cli.go index f407eb253..013639701 100644 --- a/walletnode/api/gen/http/cascade/client/cli.go +++ b/walletnode/api/gen/http/cascade/client/cli.go @@ -294,11 +294,11 @@ func BuildGetDownloadTaskStatePayload(cascadeGetDownloadTaskStateFileID string) var fileID string { fileID = cascadeGetDownloadTaskStateFileID - if utf8.RuneCountInString(fileID) < 8 { - err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, true)) + if utf8.RuneCountInString(fileID) < 6 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 6, true)) } - if utf8.RuneCountInString(fileID) > 8 { - err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, false)) + if utf8.RuneCountInString(fileID) > 6 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 6, false)) } if err != nil { return nil, err diff --git a/walletnode/api/gen/http/cascade/client/encode_decode.go b/walletnode/api/gen/http/cascade/client/encode_decode.go index 009fbe9f8..a874471d5 100644 --- a/walletnode/api/gen/http/cascade/client/encode_decode.go +++ b/walletnode/api/gen/http/cascade/client/encode_decode.go @@ -907,17 +907,11 @@ func DecodeGetDownloadTaskStateResponse(decoder func(*http.Response) goahttp.Dec if err != nil { return nil, goahttp.ErrDecodingError("cascade", "getDownloadTaskState", err) } - for _, e := range body { - if e != nil { - if err2 := ValidateTaskHistoryResponse(e); err2 != nil { - err = goa.MergeErrors(err, err2) - } - } - } + err = ValidateGetDownloadTaskStateResponseBody(&body) if err != nil { return nil, goahttp.ErrValidationError("cascade", "getDownloadTaskState", err) } - res := NewGetDownloadTaskStateTaskHistoryOK(body) + res := NewGetDownloadTaskStateDownloadTaskStatusOK(&body) return res, nil case http.StatusNotFound: var ( @@ -1239,6 +1233,24 @@ func unmarshalDetailsResponseToCascadeDetails(v *DetailsResponse) *cascade.Detai return res } +// unmarshalDetailsResponseBodyToCascadeDetails builds a value of type +// *cascade.Details from a value of type *DetailsResponseBody. +func unmarshalDetailsResponseBodyToCascadeDetails(v *DetailsResponseBody) *cascade.Details { + res := &cascade.Details{ + Message: v.Message, + } + if v.Fields != nil { + res.Fields = make(map[string]any, len(v.Fields)) + for key, val := range v.Fields { + tk := key + tv := val + res.Fields[tk] = tv + } + } + + return res +} + // unmarshalFileResponseBodyToCascadeviewsFileView builds a value of type // *cascadeviews.FileView from a value of type *FileResponseBody. func unmarshalFileResponseBodyToCascadeviewsFileView(v *FileResponseBody) *cascadeviews.FileView { diff --git a/walletnode/api/gen/http/cascade/client/types.go b/walletnode/api/gen/http/cascade/client/types.go index 4eb03f4fc..409c15983 100644 --- a/walletnode/api/gen/http/cascade/client/types.go +++ b/walletnode/api/gen/http/cascade/client/types.go @@ -126,7 +126,28 @@ type DownloadV2ResponseBody struct { // GetDownloadTaskStateResponseBody is the type of the "cascade" service // "getDownloadTaskState" endpoint HTTP response body. -type GetDownloadTaskStateResponseBody []*TaskHistoryResponse +type GetDownloadTaskStateResponseBody struct { + // Total Volumes + TotalVolumes *int `form:"total_volumes,omitempty" json:"total_volumes,omitempty" xml:"total_volumes,omitempty"` + // Number of volumes successfully downloaded + DownloadedVolumes *int `form:"downloaded_volumes,omitempty" json:"downloaded_volumes,omitempty" xml:"downloaded_volumes,omitempty"` + // Number of volumes currently being downloaded + VolumesDownloadInProgress *int `form:"volumes_download_in_progress,omitempty" json:"volumes_download_in_progress,omitempty" xml:"volumes_download_in_progress,omitempty"` + // Number of volumes awaiting schedule + VolumesPendingDownload *int `form:"volumes_pending_download,omitempty" json:"volumes_pending_download,omitempty" xml:"volumes_pending_download,omitempty"` + // Number of volumes failed to download + VolumesDownloadFailed *int `form:"volumes_download_failed,omitempty" json:"volumes_download_failed,omitempty" xml:"volumes_download_failed,omitempty"` + // Status of the operation + TaskStatus *string `form:"task_status,omitempty" json:"task_status,omitempty" xml:"task_status,omitempty"` + // size of the file in megabytes + SizeOfTheFileMegabytes *int `form:"size_of_the_file_megabytes,omitempty" json:"size_of_the_file_megabytes,omitempty" xml:"size_of_the_file_megabytes,omitempty"` + // data downloaded in megabytes so far + DataDownloadedMegabytes *int `form:"data_downloaded_megabytes,omitempty" json:"data_downloaded_megabytes,omitempty" xml:"data_downloaded_megabytes,omitempty"` + // message string (if any) + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // details of the status + Details *DetailsResponseBody `form:"details,omitempty" json:"details,omitempty" xml:"details,omitempty"` +} // RegistrationDetailsResponseBody is the type of the "cascade" service // "registrationDetails" endpoint HTTP response body. @@ -633,6 +654,14 @@ type DetailsResponse struct { Fields map[string]any `form:"fields,omitempty" json:"fields,omitempty" xml:"fields,omitempty"` } +// DetailsResponseBody is used to define fields on response body types. +type DetailsResponseBody struct { + // details regarding the status + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // important fields regarding status history + Fields map[string]any `form:"fields,omitempty" json:"fields,omitempty" xml:"fields,omitempty"` +} + // FileResponseBody is used to define fields on response body types. type FileResponseBody struct { // File ID @@ -1113,13 +1142,21 @@ func NewDownloadV2InternalServerError(body *DownloadV2InternalServerErrorRespons return v } -// NewGetDownloadTaskStateTaskHistoryOK builds a "cascade" service +// NewGetDownloadTaskStateDownloadTaskStatusOK builds a "cascade" service // "getDownloadTaskState" endpoint result from a HTTP "OK" response. -func NewGetDownloadTaskStateTaskHistoryOK(body []*TaskHistoryResponse) []*cascade.TaskHistory { - v := make([]*cascade.TaskHistory, len(body)) - for i, val := range body { - v[i] = unmarshalTaskHistoryResponseToCascadeTaskHistory(val) - } +func NewGetDownloadTaskStateDownloadTaskStatusOK(body *GetDownloadTaskStateResponseBody) *cascade.DownloadTaskStatus { + v := &cascade.DownloadTaskStatus{ + TotalVolumes: *body.TotalVolumes, + DownloadedVolumes: *body.DownloadedVolumes, + VolumesDownloadInProgress: *body.VolumesDownloadInProgress, + VolumesPendingDownload: *body.VolumesPendingDownload, + VolumesDownloadFailed: *body.VolumesDownloadFailed, + TaskStatus: *body.TaskStatus, + SizeOfTheFileMegabytes: *body.SizeOfTheFileMegabytes, + DataDownloadedMegabytes: *body.DataDownloadedMegabytes, + Message: body.Message, + } + v.Details = unmarshalDetailsResponseBodyToCascadeDetails(body.Details) return v } @@ -1281,8 +1318,8 @@ func ValidateRegisterTaskStateResponseBody(body *RegisterTaskStateResponseBody) err = goa.MergeErrors(err, goa.MissingFieldError("status", "body")) } if body.Status != nil { - if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Error Ownership Not Match" || *body.Status == "Error Hash Mismatch" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } return @@ -1306,6 +1343,44 @@ func ValidateDownloadV2ResponseBody(body *DownloadV2ResponseBody) (err error) { return } +// ValidateGetDownloadTaskStateResponseBody runs the validations defined on +// GetDownloadTaskStateResponseBody +func ValidateGetDownloadTaskStateResponseBody(body *GetDownloadTaskStateResponseBody) (err error) { + if body.TotalVolumes == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("total_volumes", "body")) + } + if body.DownloadedVolumes == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("downloaded_volumes", "body")) + } + if body.VolumesDownloadInProgress == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("volumes_download_in_progress", "body")) + } + if body.VolumesDownloadFailed == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("volumes_download_failed", "body")) + } + if body.TaskStatus == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("task_status", "body")) + } + if body.Details == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("details", "body")) + } + if body.VolumesPendingDownload == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("volumes_pending_download", "body")) + } + if body.SizeOfTheFileMegabytes == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("size_of_the_file_megabytes", "body")) + } + if body.DataDownloadedMegabytes == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("data_downloaded_megabytes", "body")) + } + if body.TaskStatus != nil { + if !(*body.TaskStatus == "Completed" || *body.TaskStatus == "Failed" || *body.TaskStatus == "In Progress") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.task_status", *body.TaskStatus, []any{"Completed", "Failed", "In Progress"})) + } + } + return +} + // ValidateUploadAssetBadRequestResponseBody runs the validations defined on // uploadAsset_BadRequest_response_body func ValidateUploadAssetBadRequestResponseBody(body *UploadAssetBadRequestResponseBody) (err error) { diff --git a/walletnode/api/gen/http/cascade/server/encode_decode.go b/walletnode/api/gen/http/cascade/server/encode_decode.go index 1027c2c2c..fa3c6b4d8 100644 --- a/walletnode/api/gen/http/cascade/server/encode_decode.go +++ b/walletnode/api/gen/http/cascade/server/encode_decode.go @@ -693,7 +693,7 @@ func EncodeDownloadV2Error(encoder func(context.Context, http.ResponseWriter) go // by the cascade getDownloadTaskState endpoint. func EncodeGetDownloadTaskStateResponse(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder) func(context.Context, http.ResponseWriter, any) error { return func(ctx context.Context, w http.ResponseWriter, v any) error { - res, _ := v.([]*cascade.TaskHistory) + res, _ := v.(*cascade.DownloadTaskStatus) enc := encoder(ctx, w) body := NewGetDownloadTaskStateResponseBody(res) w.WriteHeader(http.StatusOK) @@ -712,11 +712,11 @@ func DecodeGetDownloadTaskStateRequest(mux goahttp.Muxer, decoder func(*http.Req params = mux.Vars(r) ) fileID = params["file_id"] - if utf8.RuneCountInString(fileID) < 8 { - err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, true)) + if utf8.RuneCountInString(fileID) < 6 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 6, true)) } - if utf8.RuneCountInString(fileID) > 8 { - err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 8, false)) + if utf8.RuneCountInString(fileID) > 6 { + err = goa.MergeErrors(err, goa.InvalidLengthError("file_id", fileID, utf8.RuneCountInString(fileID), 6, false)) } if err != nil { return nil, err @@ -1010,6 +1010,24 @@ func marshalCascadeDetailsToDetailsResponse(v *cascade.Details) *DetailsResponse return res } +// marshalCascadeDetailsToDetailsResponseBody builds a value of type +// *DetailsResponseBody from a value of type *cascade.Details. +func marshalCascadeDetailsToDetailsResponseBody(v *cascade.Details) *DetailsResponseBody { + res := &DetailsResponseBody{ + Message: v.Message, + } + if v.Fields != nil { + res.Fields = make(map[string]any, len(v.Fields)) + for key, val := range v.Fields { + tk := key + tv := val + res.Fields[tk] = tv + } + } + + return res +} + // marshalCascadeviewsFileViewToFileResponseBody builds a value of type // *FileResponseBody from a value of type *cascadeviews.FileView. func marshalCascadeviewsFileViewToFileResponseBody(v *cascadeviews.FileView) *FileResponseBody { diff --git a/walletnode/api/gen/http/cascade/server/types.go b/walletnode/api/gen/http/cascade/server/types.go index 0d6643ffc..4c1e1419e 100644 --- a/walletnode/api/gen/http/cascade/server/types.go +++ b/walletnode/api/gen/http/cascade/server/types.go @@ -128,7 +128,28 @@ type DownloadV2ResponseBody struct { // GetDownloadTaskStateResponseBody is the type of the "cascade" service // "getDownloadTaskState" endpoint HTTP response body. -type GetDownloadTaskStateResponseBody []*TaskHistoryResponse +type GetDownloadTaskStateResponseBody struct { + // Total Volumes + TotalVolumes int `form:"total_volumes" json:"total_volumes" xml:"total_volumes"` + // Number of volumes successfully downloaded + DownloadedVolumes int `form:"downloaded_volumes" json:"downloaded_volumes" xml:"downloaded_volumes"` + // Number of volumes currently being downloaded + VolumesDownloadInProgress int `form:"volumes_download_in_progress" json:"volumes_download_in_progress" xml:"volumes_download_in_progress"` + // Number of volumes awaiting schedule + VolumesPendingDownload int `form:"volumes_pending_download" json:"volumes_pending_download" xml:"volumes_pending_download"` + // Number of volumes failed to download + VolumesDownloadFailed int `form:"volumes_download_failed" json:"volumes_download_failed" xml:"volumes_download_failed"` + // Status of the operation + TaskStatus string `form:"task_status" json:"task_status" xml:"task_status"` + // size of the file in megabytes + SizeOfTheFileMegabytes int `form:"size_of_the_file_megabytes" json:"size_of_the_file_megabytes" xml:"size_of_the_file_megabytes"` + // data downloaded in megabytes so far + DataDownloadedMegabytes int `form:"data_downloaded_megabytes" json:"data_downloaded_megabytes" xml:"data_downloaded_megabytes"` + // message string (if any) + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // details of the status + Details *DetailsResponseBody `form:"details" json:"details" xml:"details"` +} // RegistrationDetailsResponseBody is the type of the "cascade" service // "registrationDetails" endpoint HTTP response body. @@ -635,6 +656,14 @@ type DetailsResponse struct { Fields map[string]any `form:"fields,omitempty" json:"fields,omitempty" xml:"fields,omitempty"` } +// DetailsResponseBody is used to define fields on response body types. +type DetailsResponseBody struct { + // details regarding the status + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // important fields regarding status history + Fields map[string]any `form:"fields,omitempty" json:"fields,omitempty" xml:"fields,omitempty"` +} + // FileResponseBody is used to define fields on response body types. type FileResponseBody struct { // File ID @@ -795,10 +824,20 @@ func NewDownloadV2ResponseBody(res *cascade.FileDownloadV2Result) *DownloadV2Res // NewGetDownloadTaskStateResponseBody builds the HTTP response body from the // result of the "getDownloadTaskState" endpoint of the "cascade" service. -func NewGetDownloadTaskStateResponseBody(res []*cascade.TaskHistory) GetDownloadTaskStateResponseBody { - body := make([]*TaskHistoryResponse, len(res)) - for i, val := range res { - body[i] = marshalCascadeTaskHistoryToTaskHistoryResponse(val) +func NewGetDownloadTaskStateResponseBody(res *cascade.DownloadTaskStatus) *GetDownloadTaskStateResponseBody { + body := &GetDownloadTaskStateResponseBody{ + TotalVolumes: res.TotalVolumes, + DownloadedVolumes: res.DownloadedVolumes, + VolumesDownloadInProgress: res.VolumesDownloadInProgress, + VolumesPendingDownload: res.VolumesPendingDownload, + VolumesDownloadFailed: res.VolumesDownloadFailed, + TaskStatus: res.TaskStatus, + SizeOfTheFileMegabytes: res.SizeOfTheFileMegabytes, + DataDownloadedMegabytes: res.DataDownloadedMegabytes, + Message: res.Message, + } + if res.Details != nil { + body.Details = marshalCascadeDetailsToDetailsResponseBody(res.Details) } return body } diff --git a/walletnode/api/gen/http/collection/client/types.go b/walletnode/api/gen/http/collection/client/types.go index adcd890f4..e76f6598a 100644 --- a/walletnode/api/gen/http/collection/client/types.go +++ b/walletnode/api/gen/http/collection/client/types.go @@ -446,8 +446,8 @@ func ValidateRegisterTaskStateResponseBody(body *RegisterTaskStateResponseBody) err = goa.MergeErrors(err, goa.MissingFieldError("status", "body")) } if body.Status != nil { - if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Error Ownership Not Match" || *body.Status == "Error Hash Mismatch" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } return diff --git a/walletnode/api/gen/http/nft/client/cli.go b/walletnode/api/gen/http/nft/client/cli.go index c7ceb1110..9f434cf4c 100644 --- a/walletnode/api/gen/http/nft/client/cli.go +++ b/walletnode/api/gen/http/nft/client/cli.go @@ -25,7 +25,7 @@ func BuildRegisterPayload(nftRegisterBody string, nftRegisterKey string) (*nft.R { err = json.Unmarshal([]byte(nftRegisterBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"burn_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"collection_act_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"creator_name\": \"Leonardo da Vinci\",\n \"creator_pastelid\": \"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS\",\n \"creator_website_url\": \"https://www.leonardodavinci.net\",\n \"description\": \"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.\",\n \"green\": false,\n \"image_id\": \"VK7mpAqZ\",\n \"issued_copies\": 1,\n \"keywords\": \"Renaissance, sfumato, portrait\",\n \"make_publicly_accessible\": false,\n \"maximum_fee\": 100,\n \"name\": \"Mona Lisa\",\n \"open_api_group_id\": \"Illum inventore in minus.\",\n \"royalty\": 12,\n \"series_name\": \"Famous artist\",\n \"spendable_address\": \"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j\",\n \"thumbnail_coordinate\": {\n \"bottom_right_x\": 640,\n \"bottom_right_y\": 480,\n \"top_left_x\": 0,\n \"top_left_y\": 0\n },\n \"youtube_url\": \"https://www.youtube.com/watch?v=0xl6Ufo4ZX0\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"burn_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"collection_act_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"creator_name\": \"Leonardo da Vinci\",\n \"creator_pastelid\": \"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS\",\n \"creator_website_url\": \"https://www.leonardodavinci.net\",\n \"description\": \"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.\",\n \"green\": false,\n \"image_id\": \"VK7mpAqZ\",\n \"issued_copies\": 1,\n \"keywords\": \"Renaissance, sfumato, portrait\",\n \"make_publicly_accessible\": false,\n \"maximum_fee\": 100,\n \"name\": \"Mona Lisa\",\n \"open_api_group_id\": \"Distinctio eos et excepturi temporibus.\",\n \"royalty\": 12,\n \"series_name\": \"Famous artist\",\n \"spendable_address\": \"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j\",\n \"thumbnail_coordinate\": {\n \"bottom_right_x\": 640,\n \"bottom_right_y\": 480,\n \"top_left_x\": 0,\n \"top_left_y\": 0\n },\n \"youtube_url\": \"https://www.youtube.com/watch?v=0xl6Ufo4ZX0\"\n }'") } if utf8.RuneCountInString(body.ImageID) < 8 { err = goa.MergeErrors(err, goa.InvalidLengthError("body.image_id", body.ImageID, utf8.RuneCountInString(body.ImageID), 8, true)) @@ -226,7 +226,7 @@ func BuildUploadImagePayload(nftUploadImageBody string) (*nft.UploadImagePayload { err = json.Unmarshal([]byte(nftUploadImageBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"file\": \"RXZlbmlldCBxdWlhLg==\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"file\": \"UXVhZSBleHBlZGl0YSBjb25zZXF1YXR1ciB0ZW5ldHVyIGVhcXVlIHF1aSBpcHNhbS4=\"\n }'") } if body.Bytes == nil { err = goa.MergeErrors(err, goa.MissingFieldError("file", "body")) diff --git a/walletnode/api/gen/http/nft/client/types.go b/walletnode/api/gen/http/nft/client/types.go index fd4967094..3d3d99509 100644 --- a/walletnode/api/gen/http/nft/client/types.go +++ b/walletnode/api/gen/http/nft/client/types.go @@ -1690,8 +1690,8 @@ func ValidateRegisterTaskStateResponseBody(body *RegisterTaskStateResponseBody) err = goa.MergeErrors(err, goa.MissingFieldError("status", "body")) } if body.Status != nil { - if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Error Ownership Not Match" || *body.Status == "Error Hash Mismatch" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } return @@ -2607,8 +2607,8 @@ func ValidateTaskStateResponseBody(body *TaskStateResponseBody) (err error) { err = goa.MergeErrors(err, goa.MissingFieldError("status", "body")) } if body.Status != nil { - if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Error Ownership Not Match" || *body.Status == "Error Hash Mismatch" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } return @@ -2769,8 +2769,8 @@ func ValidateTaskResponse(body *TaskResponse) (err error) { } } if body.Status != nil { - if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Error Ownership Not Match" || *body.Status == "Error Hash Mismatch" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } for _, e := range body.States { @@ -2807,8 +2807,8 @@ func ValidateTaskStateResponse(body *TaskStateResponse) (err error) { err = goa.MergeErrors(err, goa.MissingFieldError("status", "body")) } if body.Status != nil { - if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Error Ownership Not Match" || *body.Status == "Error Hash Mismatch" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } return diff --git a/walletnode/api/gen/http/openapi.json b/walletnode/api/gen/http/openapi.json index 158be1c73..01ecd21a5 100644 --- a/walletnode/api/gen/http/openapi.json +++ b/walletnode/api/gen/http/openapi.json @@ -1 +1 @@ -{"swagger":"2.0","info":{"title":"WalletNode REST API","version":"1.0"},"host":"localhost:8080","consumes":["application/json","application/xml","application/gob"],"produces":["application/json","application/xml","application/gob"],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":false,"type":"string"},{"name":"RegisterCollectionRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CollectionRegisterCollectionRequestBody","required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/HcDetailedLogsMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftNftGetResponseBody","required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftGetBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftNftGetNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftGetInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailResponseBody","required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftTaskResponseTinyCollection"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTasksInternalServerErrorResponseBody"}}},"schemes":["http"]},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RegisterRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/NftRegisterRequestBody","required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftRegisterResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftRegisterBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftRegisterUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/NftUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftRegisterTaskResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","required":false,"type":"string","maxLength":256},{"name":"limit","in":"query","description":"Number of results to be return","required":false,"type":"integer","default":10,"maximum":200,"minimum":10},{"name":"query","in":"query","description":"Query is search query entered by user","required":true,"type":"string"},{"name":"creator_name","in":"query","description":"Name of the nft creator","required":false,"type":"boolean","default":true},{"name":"art_title","in":"query","description":"Title of NFT","required":false,"type":"boolean","default":true},{"name":"series","in":"query","description":"NFT series name","required":false,"type":"boolean","default":true},{"name":"descr","in":"query","description":"Artist written statement","required":false,"type":"boolean","default":true},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","required":false,"type":"boolean","default":true},{"name":"min_copies","in":"query","description":"Minimum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"min_block","in":"query","description":"Minimum blocknum","required":false,"type":"integer","default":1,"minimum":1},{"name":"max_block","in":"query","description":"Maximum blocknum","required":false,"type":"integer","minimum":1},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","required":false,"type":"boolean"},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"user_pastelid","in":"header","description":"User's PastelID","required":false,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","required":false,"type":"string"}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftNftSearchResponseBody","required":["nft","matches","match_index"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftSearchBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftSearchInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/ChallengesScoresResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/downloads/{file_id}/status":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the state of download task","operationId":"cascade#getDownloadTaskState","parameters":[{"name":"file_id","in":"path","description":"File ID returned by Download V2 API","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeGetDownloadTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeGetDownloadTaskStateInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RestoreRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeRestoreRequestBody","required":["app_pastelId"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRestoreResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRestoreBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRestoreUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRestoreInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeStartProcessingRequestBody","required":["app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/v2/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Starts downloading cascade Artifact.","operationId":"cascade#downloadV2","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeDownloadV2ResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeDownloadV2UnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeDownloadV2NotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeDownloadV2InternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetV2RequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetV2RequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2ResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2BadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2InternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/SenseDownloadResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/SenseStartProcessingRequestBody","required":["burn_txid","app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/SenseUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","required":true,"type":"string"},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","required":false,"type":"string"},{"name":"count","in":"query","description":"Number of reports to fetch","required":false,"type":"integer"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/StorageMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"CreateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasCreateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"UpdateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasUpdateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataResponseBody","required":["user_pastelid","user_pastelid_passphrase"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}}},"definitions":{"ActivationAttemptResponseBody":{"title":"ActivationAttemptResponseBody","type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"1994-08-24T10:47:19Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"Sequi similique delectus."},"file_id":{"type":"string","description":"File ID","example":"Excepturi inventore quia beatae sint."},"id":{"type":"integer","description":"ID","example":3778441935395154647,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":false}},"example":{"activation_attempt_at":"1980-04-13T23:50:31Z","error_message":"Omnis enim quaerat sint temporibus sapiente.","file_id":"Odio commodi autem ullam sunt.","id":1568822808774503567,"is_successful":true},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScoresResponseBody":{"title":"AlternativeNSFWScoresResponseBody","type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.7990714,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.54859966,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.7412531,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.9034763,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.69847727,"format":"float"}},"example":{"drawings":0.15022062,"hentai":0.7648291,"neutral":0.7316899,"porn":0.8834867,"sexy":0.7595724}},"CascadeDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadResponseBody":{"title":"CascadeDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Ut ea rerum deleniti quae natus."}},"example":{"file_id":"Explicabo vel praesentium similique."},"required":["file_id"]},"CascadeDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2InternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"downloadV2_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2NotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"downloadV2_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2ResponseBody":{"title":"CascadeDownloadV2ResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"Task ID for the download task - caller can check the status of the download task using this task_id","example":"Voluptas vel vel dicta harum ex quas."}},"example":{"file_id":"Accusamus numquam."},"required":["file_id"]},"CascadeDownloadV2UnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"downloadV2_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetDownloadTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDownloadTaskState_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetDownloadTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDownloadTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateResponseBody":{"title":"CascadeRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"CascadeRegistrationDetailsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registrationDetails_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.registration-detail; view=default","type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/definitions/FileResponseBody"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]}},"description":"RegistrationDetailsResponseBody result type (default view)","example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]},"required":["files"]},"CascadeRegistrationDetailsUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"restore_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreRequestBody":{"title":"CascadeRestoreRequestBody","type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"CascadeRestoreResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.restore-files; view=default","type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":2179505416296102007,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":6597285476160611200,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":7119702643343716727,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":2688818931699507667,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":1071003580025551546,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":1809131097697126008,"format":"int64"}},"description":"RestoreResponseBody result type (default view)","example":{"activated_volumes":6197761208295789992,"registered_volumes":8577705285909327427,"total_volumes":8346182040873375707,"volumes_activated_in_recovery_flow":451603711559925012,"volumes_registration_in_progress":6021041156532863970,"volumes_with_pending_registration":9023197240308074166},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"CascadeRestoreUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingRequestBody":{"title":"CascadeStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Nam ullam quia repellendus cupiditate."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"CascadeStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CascadeStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetRequestBody":{"title":"CascadeUploadAssetRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RXN0IHJlcnVtIHNhZXBlIGNvbnNlcXV1bnR1ci4=","format":"byte"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"Q29tbW9kaSBxdWlidXNkYW0gdm9sdXB0YXRlbSBxdWFtIGl0YXF1ZSBsaWJlcm8u"},"required":["file"]},"CascadeUploadAssetResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"CascadeUploadAssetV2BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAssetV2_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2InternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadAssetV2_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2RequestBody":{"title":"CascadeUploadAssetV2RequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"U2FwaWVudGUgb21uaXMgb21uaXMgY29ycnVwdGku","format":"byte"},"filename":{"type":"string","description":"-For internal use-"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"RXQgZG9sb3JlIGRvbG9yZS4="},"required":["file"]},"CascadeUploadAssetV2ResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file-v2; view=default","type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.366335541724773,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.07989768565530223,0.9643054195750016,0.026381384166493292]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetV2ResponseBody result type (default view)","example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.640392446585282,0.9646679397509296,0.7193760763377638],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeDataResponse":{"title":"ChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":875709855,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":5122269723773644481,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Non itaque."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Suscipit eius officia illo provident fuga minima."},"start_index":{"type":"integer","description":"Start index","example":6542642547904299742,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Nihil deserunt."}},"description":"Data of challenge","example":{"block":1779406359,"end_index":1866814163046970754,"file_hash":"Quibusdam molestiae consequatur.","merkelroot":"Voluptatem omnis quidem veritatis.","start_index":1597917383536378215,"timestamp":"A adipisci."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScoresResponse":{"title":"ChallengesScoresResponse","type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.12859021407559276,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Odio et sit mollitia."},"node_id":{"type":"string","description":"Specific node id","example":"Maxime ex in."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.1891036046680823,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.2958604036605215,"ip_address":"Et ut.","node_id":"Veritatis voluptatem.","storage_challenge_score":0.9764465239514757},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CollectionGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerCollection_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerCollection_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionRequestBody":{"title":"CollectionRegisterCollectionRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Voluptatem ut."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"CollectionRegisterCollectionResponseBody":{"title":"Mediatype identifier: application/collection-registration; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"RegisterCollectionResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CollectionRegisterCollectionUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateResponseBody":{"title":"CollectionRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"DetailsResponse":{"title":"DetailsResponse","type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Perferendis saepe laudantium fugit est laborum fugiat.":"Inventore doloribus voluptates provident odio."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Nam doloribus suscipit.":"Laboriosam vel dolor.","Qui voluptatem placeat.":"Temporibus veritatis consequatur odit ad soluta."},"message":"Image has been downloaded..."}},"EvaluationDataResponse":{"title":"EvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":492103627,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Est facere ipsam."},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Sed in voluptatum sint."},"timestamp":{"type":"string","description":"Timestamp","example":"Consequuntur vel maxime culpa quis provident."}},"description":"Data of evaluation","example":{"block":1898436385,"hash":"Molestias modi autem non.","is_verified":false,"merkelroot":"Quo officiis itaque.","timestamp":"Sit est soluta dolorem."},"required":["timestamp","hash","is_verified"]},"EventTicketResponseBody":{"title":"EventTicketResponseBody","type":"object","properties":{"data_hash":{"type":"string","example":"UXVpIGN1cGlkaXRhdGUgZW5pbSBpc3RlLg==","format":"byte"},"missing_keys":{"type":"array","items":{"type":"string","example":"Rerum facilis mollitia ipsa eligendi."},"example":["Aliquam nisi fugiat quisquam quasi quia odit.","Rerum omnis nostrum ipsa maxime.","Porro deleniti dolores ipsum impedit.","Nisi nisi qui."]},"recipient":{"type":"string","example":"Eaque possimus sint sequi."},"ticket_type":{"type":"string","example":"Aut iste voluptas recusandae est dignissimos vitae."},"tx_id":{"type":"string","example":"Voluptas enim qui natus voluptatem sed."}},"example":{"data_hash":"T2RpdCBkb2xvcmVtcXVlIGVzdCBxdWlzLg==","missing_keys":["Aut consequatur impedit quo.","Voluptas doloribus sint repellendus."],"recipient":"Dolorum soluta esse.","ticket_type":"Commodi earum facere aut sint unde hic.","tx_id":"Et totam ipsa."}},"FileResponseBody":{"title":"FileResponseBody","type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/definitions/ActivationAttemptResponseBody"},"description":"List of activation attempts","example":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Est et."},"base_file_id":{"type":"string","description":"Base File ID","example":"Sunt explicabo deserunt ducimus."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Est occaecati."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"A recusandae iste qui nisi dolore."},"done_block":{"type":"integer","description":"Done Block","example":2693504273438558162,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Neque cumque temporibus nihil cupiditate."},"file_index":{"type":"string","description":"Index of the file","example":"Voluptate ea eaque."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Pariatur labore neque inventore."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":false},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Laudantium facere eveniet molestiae rerum."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"Accusantium quidem."},"registration_attempts":{"type":"array","items":{"$ref":"#/definitions/RegistrationAttemptResponseBody"},"description":"List of registration attempts","example":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.8930021225471915,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.45409536176152293,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.22020594122264722,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":515011423,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Saepe ipsum harum voluptas."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"1998-09-22T13:33:43Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Non amet voluptatem commodi aut id in."}},"example":{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Asperiores vel maiores autem similique quidem dolorum.","base_file_id":"Molestiae exercitationem expedita excepturi ut.","burn_txn_id":"Nostrum et non deserunt atque.","cascade_metadata_ticket_id":"Quam quae quo magnam dolores possimus voluptas.","done_block":8868352654748958460,"file_id":"Est quia adipisci impedit aut est.","file_index":"Distinctio id et nam commodi laboriosam asperiores.","hash_of_original_big_file":"Neque ut rem exercitationem distinctio quis.","is_concluded":true,"name_of_original_big_file_with_ext":"Quia quas.","reg_txid":"Consequatur voluptatum magni suscipit.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.27763473389923016,"req_burn_txn_amount":0.6119857638900763,"size_of_original_big_file":0.10082508271893759,"start_block":615727266,"task_id":"Alias error unde recusandae cum nihil accusantium.","upload_timestamp":"2015-07-05T12:51:38Z","uuid_key":"Enim ut."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FuzzyMatchResponseBody":{"title":"FuzzyMatchResponseBody","type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"descr","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":1297848066207075025,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[4944821981227295978,7696049836370677537]},"score":{"type":"integer","description":"Score used to rank matches","example":3540831787478733547,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Aliquam dolores qui."}},"example":{"field_type":"art_title","matched_indexes":[5781461325567943992,7778000128542107932,393922963514480715,7666036538901003714],"score":2350702824716827735,"str":"Cumque incidunt."}},"HCChallengeDataResponse":{"title":"HCChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":1182365695,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Iste molestias ut fugiat aliquam."},"timestamp":{"type":"string","description":"Timestamp","example":"Enim sequi iure commodi."}},"description":"Data of challenge","example":{"block":1901942244,"merkelroot":"Aut earum.","timestamp":"Alias voluptatibus incidunt."},"required":["timestamp"]},"HCEvaluationDataResponse":{"title":"HCEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":197096783,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Optio assumenda."},"timestamp":{"type":"string","description":"Timestamp","example":"Dolores nihil et voluptatibus et."}},"description":"Data of evaluation","example":{"block":769361874,"is_verified":true,"merkelroot":"Cupiditate laboriosam quo.","timestamp":"Sunt excepturi beatae."},"required":["timestamp","is_verified"]},"HCObserverEvaluationDataResponse":{"title":"HCObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":1059087820,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":false},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Id sed voluptatem illum dolorum ad."},"timestamp":{"type":"string","description":"Timestamp","example":"Voluptas officiis dolorum accusantium."}},"description":"Data of Observer's evaluation","example":{"block":918637735,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Rerum quia rem possimus quas ut enim.","timestamp":"Id illum magnam qui ab quia sint."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCResponseDataResponse":{"title":"HCResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":364084968,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Sed itaque aspernatur."},"timestamp":{"type":"string","description":"Timestamp","example":"Reiciendis iste rerum."}},"description":"Data of response","example":{"block":711181662,"merkelroot":"Nihil voluptates et dolores necessitatibus.","timestamp":"Fugit in quasi in nam nulla voluptatum."},"required":["timestamp"]},"HCSummaryStatsResponseBody":{"title":"HCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":4604695734958777723,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":7485695140201372489,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":1632022695562066844,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":674107399872224815,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":6914397698957621249,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":4629615492889085672,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":3352956423211727314,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":5649605762979780077,"no_of_invalid_signatures_observed_by_observers":7332727558518661660,"no_of_slow_responses_observed_by_observers":3131725833324719182,"total_challenges_evaluated_by_challenger":1436962756631232283,"total_challenges_issued":3528725344947929638,"total_challenges_processed_by_recipient":1010277493024632963,"total_challenges_verified":3169339276919008696},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessageResponse":{"title":"Mediatype identifier: application/vnd.hc_detailed_logs.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/HCChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Odit molestiae incidunt quod."},"challenger_evaluation":{"$ref":"#/definitions/HCEvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Voluptatem aut neque et."},"message_type":{"type":"string","description":"type of the message","example":"Sed maiores."},"observer_evaluation":{"$ref":"#/definitions/HCObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Dolore eveniet cum."},"description":"List of observer IDs","example":["Aut voluptate laudantium cumque eum.","Et velit delectus."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Debitis ut quis beatae."},"response":{"$ref":"#/definitions/HCResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Quia molestias fugiat."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Rerum nisi ratione rerum temporibus blanditiis."}},"description":"HealthCheck challenge message data (default view)","example":{"challenge":{"block":161855103,"merkelroot":"Occaecati in reiciendis quia repudiandae.","timestamp":"Necessitatibus sed est sunt."},"challenge_id":"Et in eligendi ut voluptate vel.","challenger_evaluation":{"block":372559801,"is_verified":false,"merkelroot":"Impedit quis autem et et neque.","timestamp":"Explicabo dolore."},"challenger_id":"Voluptates quisquam quo esse sed veritatis sunt.","message_type":"Et itaque distinctio culpa vitae neque nihil.","observer_evaluation":{"block":1881554591,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":false,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Hic voluptas doloremque eligendi et magni.","timestamp":"Perspiciatis earum."},"observers":["Laboriosam doloremque qui et.","Sit nesciunt et hic et est maxime.","Est libero."],"recipient_id":"Sequi eum odio delectus eos officiis.","response":{"block":1874672230,"merkelroot":"Voluptate ipsa et ut dicta temporibus ut.","timestamp":"Deserunt mollitia est a labore."},"sender_id":"Laudantium numquam ut ea facilis aut blanditiis.","sender_signature":"Animi impedit."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HealthCheckChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.hc_summary_stats.result; view=default","type":"object","properties":{"hc_summary_stats":{"$ref":"#/definitions/HCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}},"required":["hc_summary_stats"]},"HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InternetRarenessResponseBody":{"title":"InternetRarenessResponseBody","type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Non ea dicta ex consequatur consequatur."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Aut ducimus iure."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":3655150683,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Dolor eum vel."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Esse reiciendis tenetur iusto nihil sed."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Quis ea qui dolore esse quaerat.","earliest_available_date_of_internet_results":"Est et quo necessitatibus fuga velit ipsum.","min_number_of_exact_matches_in_page":3174641601,"rare_on_internet_graph_json_compressed_b64":"Est quidem cumque consequuntur et debitis.","rare_on_internet_summary_table_as_json_compressed_b64":"Commodi consequatur unde qui adipisci labore voluptate."}},"MetricsGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsResponseBody":{"title":"MetricsGetDetailedLogsResponseBody","type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/definitions/SelfHealingReportKVResponseBody"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"MetricsGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.metrics.result; view=default","type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/definitions/SHExecutionStatsResponseBody"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/definitions/SHTriggerStatsResponseBody"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"MetricsGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"ddServiceOutputFileDetail_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailResponseBody":{"title":"NftDdServiceOutputFileDetailResponseBody","type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/definitions/AlternativeNSFWScoresResponseBody"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"Perspiciatis et accusantium fuga sit in."},"child_probability":{"type":"number","description":"child probability","example":0.8271751,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Quis ex dolor eveniet provident."},"cp_probability":{"type":"number","description":"probability of CP","example":0.9250763,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Alias non magni eum et."},"creator_website":{"type":"string","description":"website of creator","example":"Recusandae et nulla et et."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"At ipsum minima."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Voluptatem est quisquam tenetur."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Autem ea optio est voluptatem deserunt exercitationem."},"file_type":{"type":"string","description":"type of the file","example":"Et sit et omnis non ad."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.31847075,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Distinctio eum."},"image_file_path":{"type":"string","description":"file path of the image","example":"At sequi eaque."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.04346560909053385,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.8265343444104936,0.9072128208585332,0.20518572772379823]},"internet_rareness":{"$ref":"#/definitions/InternetRarenessResponseBody"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.562778188429247,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"In officia quia."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Sint et occaecati ad consectetur dolor."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Reprehenderit soluta doloremque dolorum rerum dolor facere."},"nft_title":{"type":"string","description":"title of NFT","example":"Aut voluptatem labore."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Maiores aspernatur explicabo et nobis."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.0067218044,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":1727768664143466560,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.06350944,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"Dolorum maxime corrupti magnam et et voluptatem."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Eligendi laboriosam dignissimos nihil explicabo laboriosam est."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Quia dicta eveniet quod."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Occaecati quam est."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"Sed quia corrupti vel."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Rerum omnis."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.41605514,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.60499537,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.9858219,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"SW4gcG9ycm8gaW52ZW50b3JlIG5lcXVlIGlwc2EgcGVyZmVyZW5kaXMu","format":"byte"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Velit non voluptatum et eos porro ipsa."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.6376665,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"RG9sb3JlcyBtb2xlc3RpYXMgaXN0ZSB1dCBsYWJvcnVtIG1pbnVzIHF1b2Qu","format":"byte"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"QW1ldCBub2JpcyB2b2x1cHRhdGVzIHVsbGFtLg==","format":"byte"},"total_copies":{"type":"integer","description":"total copies of NFT","example":5973698838483140961,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Et vel."}},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Magni quo aut aut a accusantium voluptas.","child_probability":0.2722556,"collection_name_string":"Doloribus aut.","cp_probability":0.080685355,"creator_name":"Consequatur asperiores.","creator_website":"Ut libero expedita necessitatibus at.","creator_written_statement":"Soluta totam ratione est quos fugit omnis.","does_not_impact_the_following_collection_strings":"Ea possimus quam.","dupe_detection_system_version":"Sint aliquam.","file_type":"Repudiandae id non sit.","group_rareness_score":0.39976165,"hash_of_candidate_image_file":"Porro itaque molestias eos officiis.","image_file_path":"Est aut nobis ullam quia voluptatem.","image_fingerprint_of_candidate_image_file":[0.2337053625785891,0.7606478372985767,0.4816506910655517,0.6600616570929657],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":true,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.21702853924721482,"nft_creation_video_youtube_url":"Praesentium ipsam autem.","nft_keyword_set":"Doloremque doloribus.","nft_series_name":"Eos distinctio et et veniam.","nft_title":"Cumque consequatur animi.","open_api_group_id_string":"Incidunt est.","open_nsfw_score":0.32370627,"original_file_size_in_bytes":430969822399397072,"overall_rareness_score":0.94536245,"pastel_block_hash_when_request_submitted":"Et voluptatem aspernatur.","pastel_block_height_when_request_submitted":"Est soluta repudiandae autem occaecati aspernatur est.","pastel_id_of_registering_supernode_1":"Dolores beatae magni et cupiditate quidem.","pastel_id_of_registering_supernode_2":"Est eos alias pariatur adipisci omnis deleniti.","pastel_id_of_registering_supernode_3":"Eaque nesciunt tempore sequi fugit.","pastel_id_of_submitter":"Delectus necessitatibus in.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.0005365054,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.34399658,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.8091386,"preview_hash":"SWQgZXQu","rareness_scores_table_json_compressed_b64":"Magni qui culpa sed quia quam.","similarity_score_to_first_entry_in_collection":0.9801496,"thumbnail1_hash":"UmVjdXNhbmRhZSBsYWJvcmlvc2FtLg==","thumbnail2_hash":"UG9zc2ltdXMgc2l0IHN1bnQgZXhwZWRpdGEgcXVpLg==","total_copies":1640767363046307917,"utc_timestamp_when_request_submitted":"Incidunt similique natus consequatur."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"NftDdServiceOutputFileDetailUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileResponseBody":{"title":"NftDdServiceOutputFileResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Occaecati tenetur non est ea."}},"example":{"file":"Sit et consequatur laudantium aut."},"required":["file"]},"NftDdServiceOutputFileUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"ddServiceOutputFile_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadResponseBody":{"title":"NftDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Velit temporibus quo quaerat dolores deleniti."}},"example":{"file_id":"Et sint."},"required":["file_id"]},"NftDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetResponseBody":{"title":"NftNftGetResponseBody","type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Autem reiciendis aliquam iusto voluptates."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Quis quos nihil."},"green_address":{"type":"boolean","description":"Green address","example":true},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":2347840671,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"TWluaW1hIG9jY2FlY2F0aSB0ZW5ldHVyIGlwc2FtIGlkIG1vbGxpdGlhLg==","format":"byte"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Perspiciatis quam ut accusamus."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Voluptatum quis magnam molestias harum repellendus et."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.2540148801977663,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"RWFxdWUgb21uaXMgdm9sdXB0YXMgbW9kaSBmdWdhLg==","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"SW4gdGVtcG9yYS4=","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Voluptas voluptatibus similique omnis.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Error in quis ipsam esse sequi.","green_address":true,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":3236303469,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"UXVhc2kgb2ZmaWNpYSB2b2x1cHRhdGVtIGV2ZW5pZXQu","rare_on_internet_graph_json_b64":"Iste similique velit accusamus illo.","rare_on_internet_summary_table_json_b64":"Itaque officia at deleniti.","rareness_score":1,"royalty":0.4964943668435947,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"RWFxdWUgZXhwbGljYWJvIGVsaWdlbmRpIGF1dC4=","thumbnail_2":"RG9sb3JpYnVzIG5vYmlzIG9mZmljaWEgY29uc2VxdXVudHVyIHNlZCBsYWJvcmlvc2FtIG1vbGVzdGlhZS4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftNftSearchBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftSearch_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftSearch_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchResponseBody":{"title":"NftNftSearchResponseBody","type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":4366201559533369601,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/definitions/FuzzyMatchResponseBody"},"description":"Match result details","example":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}]},"nft":{"$ref":"#/definitions/NftSummaryResponseBody"}},"example":{"match_index":2902776548633802113,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftRegisterBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"register_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"register_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterPayloadResponse":{"title":"NftRegisterPayloadResponse","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Accusantium possimus exercitationem iusto debitis cumque."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponse"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Et et.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterPayloadResponseBody":{"title":"NftRegisterPayloadResponseBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Optio mollitia."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Aliquam ad veritatis consequuntur fugiat.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterRequestBody":{"title":"NftRegisterRequestBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Et rerum a voluptas dolor similique vero."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateRequestBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ex necessitatibus commodi saepe non nobis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"NftRegisterResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"description":"RegisterResponseBody result type (default view)","example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"NftRegisterTaskInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTask_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTask_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/definitions/TaskStateResponseBody"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponseBody"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"NftRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateResponseBody":{"title":"NftRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"NftRegisterTasksInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTasks_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"register_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftSummaryResponseBody":{"title":"NftSummaryResponseBody","type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"UXVhc2kgbm9zdHJ1bSBkb2xvciB0b3RhbSBuaWhpbCBlbGlnZW5kaS4=","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"RmFjZXJlIGFtZXQgbnVtcXVhbSByZW0gcmVwZWxsZW5kdXMgZnVnaXQgc3VudC4=","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UHJvdmlkZW50IGVhcXVlLg==","thumbnail_2":"SXVzdG8gdm9sdXB0YXMgbm9uLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"NftTaskResponseTinyCollection":{"title":"Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny","type":"array","items":{"$ref":"#/definitions/TaskResponseTiny"},"description":"NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view)","example":[{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"NftUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageRequestBody":{"title":"NftUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RXZlbmlldCBhY2N1c2FudGl1bSBhbmltaSBzdW50IGJsYW5kaXRpaXMu","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"Vml0YWUgdmVyaXRhdGlzIHZvbHVwdGFzIGVsaWdlbmRpIHJhdGlvbmUgaWQgcXVpLg=="},"required":["file"]},"NftUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image-result; view=default","type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"UploadImageResponseBody result type (default view)","example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"ObserverEvaluationDataResponse":{"title":"ObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":873807682,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":false},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Culpa est perspiciatis dolores odit."},"reason":{"type":"string","description":"Reason","example":"Corrupti at."},"timestamp":{"type":"string","description":"Timestamp","example":"Voluptatem error corporis dolorem."},"true_hash":{"type":"string","description":"TrueHash","example":"Dolorem laudantium."}},"description":"Data of Observer's evaluation","example":{"block":110168171,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":true,"is_recipient_signature_ok":false,"merkelroot":"Voluptatem architecto.","reason":"Aut dicta.","timestamp":"Qui facere id.","true_hash":"Rerum aut."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegistrationAttemptResponseBody":{"title":"RegistrationAttemptResponseBody","type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Necessitatibus inventore dolor nisi debitis aut odio."},"file_id":{"type":"string","description":"File ID","example":"Eaque officiis aspernatur id et aut."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"2001-03-29T00:00:52Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":4860360742236491050,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":false},"processor_sns":{"type":"string","description":"Processor SNS","example":"Corporis quas et tempore saepe."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"1993-10-28T21:59:10Z","format":"date-time"}},"example":{"error_message":"Commodi reiciendis et et ducimus velit quam.","file_id":"Impedit rerum libero et quis.","finished_at":"1990-11-23T10:18:07Z","id":444954594601192835,"is_successful":false,"processor_sns":"Id commodi.","reg_started_at":"1993-05-06T16:03:31Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicketResponseBody":{"title":"RespondedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"missing_keys":{"type":"array","items":{"type":"string","example":"Et similique voluptatem ut corporis temporibus."},"example":["Unde et distinctio consequatur praesentium et.","Perspiciatis temporibus veritatis fuga omnis consequatur temporibus.","Adipisci nihil molestiae."]},"reconstructed_file_hash":{"type":"string","example":"VGVuZXR1ciBkb2xvcmVtLg==","format":"byte"},"ticket_type":{"type":"string","example":"Officia quidem in."},"tx_id":{"type":"string","example":"Quasi ducimus doloremque fugiat aut est."}},"example":{"is_reconstruction_required":false,"missing_keys":["Ex veritatis autem in.","Debitis qui."],"reconstructed_file_hash":"QXV0ZW0gbm9iaXMu","ticket_type":"Sapiente inventore expedita molestias.","tx_id":"Repellendus pariatur eos autem doloremque."}},"ResponseDataResponse":{"title":"ResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":2128339148,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Reprehenderit ipsam veritatis accusantium sit repellendus."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Praesentium numquam odit animi occaecati et nisi."},"timestamp":{"type":"string","description":"Timestamp","example":"Provident dolore."}},"description":"Data of response","example":{"block":914566760,"hash":"Aut rerum et.","merkelroot":"Ut quia enim quam commodi.","timestamp":"Commodi laudantium."},"required":["timestamp"]},"SCSummaryStatsResponseBody":{"title":"SCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":8448058223243749560,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":8359887601648170101,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":7891085395597145694,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":5130594556944153183,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":7226997995396706400,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":5970798887905028462,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":813743049200551551,"format":"int64"}},"description":"Storage-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":2941821598506559608,"no_of_invalid_signatures_observed_by_observers":3732715178392837689,"no_of_slow_responses_observed_by_observers":3362298399127573417,"total_challenges_evaluated_by_challenger":7464852390256145582,"total_challenges_issued":982894599761507202,"total_challenges_processed_by_recipient":1709859129074181105,"total_challenges_verified":4862406093902741602},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"SHExecutionStatsResponseBody":{"title":"SHExecutionStatsResponseBody","type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":7110295239839079318,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":7273229820220489656,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":7227159664804338091,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":1231544901686574894,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":7043195386771997812,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":9127868877782486339,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":3697305095978270885,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":6936203582918385714,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":7501593075332076902,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":7058130195420023276,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":8648560082570846381,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":1419664908385881791,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":2015002353907856604,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":2789096299006299988,"total_files_healed":4419572223275241376,"total_reconstruction_not_required_evaluations_approved":7748927910636449007,"total_reconstruction_required_evaluations_approved":9151917778125864507,"total_reconstruction_required_evaluations_not_approved":7722371150490296838,"total_reconstruction_required_hash_mismatch":1188714710419999793,"total_reconstructions_not_required_evaluations_not_approved":8978903766317203870,"total_self_healing_events_accepted":3106000301119730088,"total_self_healing_events_acknowledged":2402673399316595345,"total_self_healing_events_evaluations_unverified":7003916677450707686,"total_self_healing_events_evaluations_verified":99819049584274399,"total_self_healing_events_issued":1031509655329780558,"total_self_healing_events_rejected":4448568758806981285},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStatsResponseBody":{"title":"SHTriggerStatsResponseBody","type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"Vel laudantium cum laudantium aut."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":1019773296006369459,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":4068014148055661803,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":3184655079665461279,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Rerum et consectetur."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"Ad non corporis mollitia debitis.","nodes_offline":435329964148101094,"total_files_identified":636177187451705191,"total_tickets_identified":7699273601008932985,"trigger_id":"Magnam non odit iusto."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"ScoreGetAggregatedChallengesScoresBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getAggregatedChallengesScores_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SelfHealingChallengeDataResponseBody":{"title":"SelfHealingChallengeDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":72126167,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/definitions/EventTicketResponseBody"},"example":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}]},"merkelroot":{"type":"string","example":"In impedit deleniti rerum atque dolore quia."},"nodes_on_watchlist":{"type":"string","example":"Sunt consequatur ad enim."},"timestamp":{"type":"string","example":"Sint eligendi qui non rerum."}},"example":{"block":1003810139,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Minima culpa exercitationem ut.","nodes_on_watchlist":"Nisi molestiae quia est voluptatum.","timestamp":"Dolores ut."}},"SelfHealingMessageDataResponseBody":{"title":"SelfHealingMessageDataResponseBody","type":"object","properties":{"challenger_id":{"type":"string","example":"Qui quisquam sint aliquam veniam."},"event_details":{"$ref":"#/definitions/SelfHealingChallengeDataResponseBody"},"recipient_id":{"type":"string","example":"Veniam perferendis."},"response":{"$ref":"#/definitions/SelfHealingResponseDataResponseBody"},"verification":{"$ref":"#/definitions/SelfHealingVerificationDataResponseBody"}},"example":{"challenger_id":"Incidunt sequi sit dolor voluptas aut vel.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Voluptas ut minima veritatis.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}}},"SelfHealingMessageKVResponseBody":{"title":"SelfHealingMessageKVResponseBody","type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Ea repellat."},"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageResponseBody"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"example":{"message_type":"Neque omnis non aut temporibus accusantium possimus.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"SelfHealingMessageResponseBody":{"title":"SelfHealingMessageResponseBody","type":"object","properties":{"data":{"$ref":"#/definitions/SelfHealingMessageDataResponseBody"},"message_type":{"type":"string","example":"Hic eos et ab error vel."},"sender_id":{"type":"string","example":"Est ea inventore neque quibusdam qui delectus."},"sender_signature":{"type":"string","example":"QW5pbWkgZGVsZWN0dXMgYXNzdW1lbmRhIGFkaXBpc2NpLg==","format":"byte"},"trigger_id":{"type":"string","example":"Accusamus assumenda sequi."}},"example":{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Voluptate ea voluptas autem.","sender_id":"Magni est itaque in.","sender_signature":"UXVhbSBhc3N1bWVuZGEgYXV0ZW0gcXVpIG1pbmltYSBpbGxvIGF1dC4=","trigger_id":"Commodi tenetur veniam repellat."}},"SelfHealingReportKVResponseBody":{"title":"SelfHealingReportKVResponseBody","type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Voluptatem in autem."},"report":{"$ref":"#/definitions/SelfHealingReportResponseBody"}},"example":{"event_id":"Possimus mollitia consequatur dolores dolores repellendus.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}},"SelfHealingReportResponseBody":{"title":"SelfHealingReportResponseBody","type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageKVResponseBody"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"example":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"SelfHealingResponseDataResponseBody":{"title":"SelfHealingResponseDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":1777029753,"format":"int32"},"event_id":{"type":"string","example":"At sint."},"merkelroot":{"type":"string","example":"Ea quis minima sed amet maiores."},"responded_ticket":{"$ref":"#/definitions/RespondedTicketResponseBody"},"timestamp":{"type":"string","example":"Ratione omnis autem nihil voluptatem tempora."},"verifiers":{"type":"array","items":{"type":"string","example":"Eos architecto aspernatur molestiae natus culpa."},"example":["Est eveniet.","Quo eius.","Doloremque iusto illo."]}},"example":{"block":927164459,"event_id":"Non ea.","merkelroot":"Porro sed et est rerum similique nulla.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Doloribus nihil quia.","verifiers":["Iste soluta.","Suscipit aut ipsa dolores laborum cupiditate."]}},"SelfHealingVerificationDataResponseBody":{"title":"SelfHealingVerificationDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":1567089120,"format":"int32"},"event_id":{"type":"string","example":"Qui dolore aut assumenda quam."},"merkelroot":{"type":"string","example":"Quia aut et."},"timestamp":{"type":"string","example":"Perspiciatis debitis consequatur."},"verified_ticket":{"$ref":"#/definitions/VerifiedTicketResponseBody"},"verifiers_data":{"type":"object","example":{"Deserunt maiores totam.":"TGliZXJvIGF0IGZ1Z2Eu","Iste accusantium repellendus.":"QW5pbWkgdm9sdXB0YXRlbSBlc3QgZG9sb3J1bSBxdWku"},"additionalProperties":{"type":"string","example":"RWEgbWluaW1hIHNpbnQu","format":"byte"}}},"example":{"block":1482857114,"event_id":"Magni quis rerum.","merkelroot":"Eum ad rerum.","timestamp":"Ut qui quasi asperiores.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Hic quibusdam omnis distinctio.":"Q29uc2VxdWF0dXIgcmVydW0gdm9sdXB0YXR1bSBkb2xvcnVtIHRlbXBvcmEgYXJjaGl0ZWN0byBtaW5pbWEu"}}},"SenseDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadResponseBody":{"title":"SenseDownloadResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"TmFtIG9tbmlzIGZ1Z2EgbnVtcXVhbSB1bmRlLg==","format":"byte"}},"example":{"file":"U2FlcGUgZXQgY29uc2VxdWF0dXIgcXVpLg=="},"required":["file"]},"SenseDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateResponseBody":{"title":"SenseRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"SenseStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingRequestBody":{"title":"SenseStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Doloremque quidem quis."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Ipsam fugiat delectus animi aperiam amet ullam.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"SenseStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"SenseStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageRequestBody":{"title":"SenseUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RG9sb3JlbSBkdWNpbXVzIHZvbHVwdGFzIGVzc2UgbmloaWwu","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"U2ludCBhc3N1bWVuZGEgb2RpbyBpbiBvY2NhZWNhdGkgYWRpcGlzY2ku"},"required":["file"]},"SenseUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadImageResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"StorageChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.summary_stats.result; view=default","type":"object","properties":{"sc_summary_stats":{"$ref":"#/definitions/SCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}},"required":["sc_summary_stats"]},"StorageChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageMessageResponse":{"title":"Mediatype identifier: application/vnd.storage.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/ChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Et officiis illum est molestias deleniti aliquam."},"challenger_evaluation":{"$ref":"#/definitions/EvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Sit odio."},"message_type":{"type":"string","description":"type of the message","example":"Voluptatem reprehenderit est."},"observer_evaluation":{"$ref":"#/definitions/ObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Eaque iure."},"description":"List of observer IDs","example":["Consequuntur quia et.","Rerum omnis."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Et inventore est et alias est quae."},"response":{"$ref":"#/definitions/ResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Impedit amet."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Consequuntur officiis similique nobis deleniti impedit repudiandae."}},"description":"Storage challenge message data (default view)","example":{"challenge":{"block":626674453,"end_index":1362782358179080945,"file_hash":"Molestias aut beatae.","merkelroot":"Sint aut repellat consequatur dignissimos voluptatibus.","start_index":6285852628941175332,"timestamp":"Odio deleniti omnis maiores dolorem."},"challenge_id":"Ullam quasi cum dolorum.","challenger_evaluation":{"block":346663458,"hash":"Voluptatem sint recusandae.","is_verified":true,"merkelroot":"Et rem ducimus maxime aut.","timestamp":"Fugit eaque nesciunt eum quasi."},"challenger_id":"Quidem beatae ut.","message_type":"Necessitatibus sint voluptas molestias repellendus iure vitae.","observer_evaluation":{"block":1725989442,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Ut provident pariatur.","reason":"Ut quia repellendus.","timestamp":"Voluptas exercitationem quisquam id accusantium voluptatibus.","true_hash":"Architecto sit quidem deserunt rem dolore aut."},"observers":["Sed qui quasi aliquam.","Quo molestiae qui."],"recipient_id":"In non eum enim et.","response":{"block":2076283382,"hash":"Dolor autem quo vero quia quod omnis.","merkelroot":"Et ullam officiis libero.","timestamp":"Qui non quibusdam."},"sender_id":"Veniam vel ex modi enim consequuntur.","sender_signature":"Magnam exercitationem et sapiente."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"TaskHistoryResponse":{"title":"TaskHistoryResponse","type":"object","properties":{"details":{"$ref":"#/definitions/DetailsResponse"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponse"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view) (default view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskStateResponseBody":{"title":"TaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"ThumbnailcoordinateRequestBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponse":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UserImageUploadPayloadRequestBody":{"title":"UserImageUploadPayloadRequestBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","filename":"image_name.png"},"required":["content"]},"UserImageUploadPayloadResponseBody":{"title":"UserImageUploadPayloadResponseBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserdatasCreateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"createUserdata_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"createUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataRequestBody":{"title":"UserdatasCreateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasCreateUserdataResponseBody":{"title":"UserdatasCreateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"UserdatasGetUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getUserdata_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataResponseBody":{"title":"UserdatasGetUserdataResponseBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"updateUserdata_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"updateUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataRequestBody":{"title":"UserdatasUpdateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataResponseBody":{"title":"UserdatasUpdateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicketResponseBody":{"title":"VerifiedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"is_verified":{"type":"boolean","example":false},"message":{"type":"string","example":"Excepturi autem iusto rerum."},"missing_keys":{"type":"array","items":{"type":"string","example":"Sunt quia vitae officiis dolor."},"example":["Eos dolore fugiat asperiores exercitationem sit.","Aut eius."]},"reconstructed_file_hash":{"type":"string","example":"VmVsIGV4IGl0YXF1ZSBjdXBpZGl0YXRlIHNhcGllbnRlLg==","format":"byte"},"ticket_type":{"type":"string","example":"Et quia unde."},"tx_id":{"type":"string","example":"Ducimus velit nulla hic provident."}},"example":{"is_reconstruction_required":false,"is_verified":false,"message":"Maiores qui eligendi ab ipsum alias.","missing_keys":["Et laudantium.","Accusantium laudantium non hic beatae iure.","Nihil explicabo aperiam non.","Sequi sed aspernatur et sequi."],"reconstructed_file_hash":"SXBzYSBkb2xvcmVzIHZlcml0YXRpcyBldC4=","ticket_type":"Debitis esse sed.","tx_id":"Veritatis doloribus."}}},"securityDefinitions":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}} \ No newline at end of file +{"swagger":"2.0","info":{"title":"WalletNode REST API","version":"1.0"},"host":"localhost:8080","consumes":["application/json","application/xml","application/gob"],"produces":["application/json","application/xml","application/gob"],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":false,"type":"string"},{"name":"RegisterCollectionRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CollectionRegisterCollectionRequestBody","required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterCollectionInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CollectionRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/HcDetailedLogsMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftNftGetResponseBody","required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftGetBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftNftGetNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftGetInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailResponseBody","required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftDdServiceOutputFileDetailInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftTaskResponseTinyCollection"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTasksInternalServerErrorResponseBody"}}},"schemes":["http"]},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","parameters":[{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RegisterRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/NftRegisterRequestBody","required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftRegisterResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftRegisterBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/NftRegisterUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/NftUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/NftUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/NftRegisterTaskResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","required":false,"type":"string","maxLength":256},{"name":"limit","in":"query","description":"Number of results to be return","required":false,"type":"integer","default":10,"maximum":200,"minimum":10},{"name":"query","in":"query","description":"Query is search query entered by user","required":true,"type":"string"},{"name":"creator_name","in":"query","description":"Name of the nft creator","required":false,"type":"boolean","default":true},{"name":"art_title","in":"query","description":"Title of NFT","required":false,"type":"boolean","default":true},{"name":"series","in":"query","description":"NFT series name","required":false,"type":"boolean","default":true},{"name":"descr","in":"query","description":"Artist written statement","required":false,"type":"boolean","default":true},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","required":false,"type":"boolean","default":true},{"name":"min_copies","in":"query","description":"Minimum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","required":false,"type":"integer","maximum":1000,"minimum":1},{"name":"min_block","in":"query","description":"Minimum blocknum","required":false,"type":"integer","default":1,"minimum":1},{"name":"max_block","in":"query","description":"Maximum blocknum","required":false,"type":"integer","minimum":1},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","required":false,"type":"boolean"},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","required":false,"type":"number","maximum":1,"minimum":0},{"name":"user_pastelid","in":"header","description":"User's PastelID","required":false,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","required":false,"type":"string"}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/NftNftSearchResponseBody","required":["nft","matches","match_index"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/NftNftSearchBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftNftSearchInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/NftGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/ChallengesScoresResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeDownloadResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/downloads/{file_id}/status":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the state of download task","operationId":"cascade#getDownloadTaskState","parameters":[{"name":"file_id","in":"path","description":"File ID returned by Download V2 API","required":true,"type":"string","maxLength":6,"minLength":6}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeGetDownloadTaskStateResponseBody","required":["total_volumes","downloaded_volumes","volumes_download_in_progress","volumes_download_failed","task_status","details","volumes_pending_download","size_of_the_file_megabytes","data_downloaded_megabytes"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeGetDownloadTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeGetDownloadTaskStateInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegistrationDetailsInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"type":"string","maxLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"RestoreRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeRestoreRequestBody","required":["app_pastelId"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeRestoreResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeRestoreBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeRestoreUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRestoreInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/CascadeStartProcessingRequestBody","required":["app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/v2/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Starts downloading cascade Artifact.","operationId":"cascade#downloadV2","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CascadeDownloadV2ResponseBody","required":["file_id"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/CascadeDownloadV2UnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeDownloadV2NotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeDownloadV2InternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","consumes":["multipart/form-data"],"parameters":[{"name":"UploadAssetV2RequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/CascadeUploadAssetV2RequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2ResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2BadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeUploadAssetV2InternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/CascadeGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","required":true,"type":"string","maxLength":64,"minLength":64},{"name":"pid","in":"query","description":"Owner's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/SenseDownloadResponseBody","required":["file"]}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseDownloadUnAuthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseDownloadNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseDownloadInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"type":"string","maxLength":8,"minLength":8},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"},{"name":"StartProcessingRequestBody","in":"body","required":true,"schema":{"$ref":"#/definitions/SenseStartProcessingRequestBody","required":["burn_txid","app_pastelid"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseStartProcessingResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseStartProcessingBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SenseStartProcessingUnAuthorizedResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseStartProcessingInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"101":{"description":"Switching Protocols response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateResponseBody","required":["date","status"]}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseRegisterTaskStateInternalServerErrorResponseBody"}}},"schemes":["ws"]}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","consumes":["multipart/form-data"],"parameters":[{"name":"UploadImageRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/SenseUploadImageRequestBody","required":["file"]}}],"responses":{"201":{"description":"Created response.","schema":{"$ref":"#/definitions/SenseUploadImageResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SenseUploadImageBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseUploadImageInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"type":"string","maxLength":8,"minLength":8}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/TaskHistoryResponse"}}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SenseGetTaskHistoryInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","required":true,"type":"string"},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","required":false,"type":"string"},{"name":"count","in":"query","description":"Number of reports to fetch","required":false,"type":"integer"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/MetricsGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","required":true,"type":"string"},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","required":false,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"array","items":{"$ref":"#/definitions/StorageMessageResponse"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetDetailedLogsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"to","in":"query","description":"End time for the metrics data range","required":false,"type":"string","format":"date-time"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","required":true,"type":"string"},{"name":"Authorization","in":"header","description":"Passphrase of the owner's PastelID","required":true,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsUnauthorizedResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/StorageChallengeGetSummaryStatsInternalServerErrorResponseBody"}}},"schemes":["http"],"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"CreateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasCreateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasCreateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","consumes":["multipart/form-data"],"parameters":[{"name":"UpdateUserdataRequestBody","in":"formData","required":true,"schema":{"$ref":"#/definitions/UserdatasUpdateUserdataRequestBody","required":["user_pastelid","user_pastelid_passphrase"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataResponseBody","required":["response_code","detail"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataBadRequestResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasUpdateUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"type":"string","maxLength":86,"minLength":86,"pattern":"^[a-zA-Z0-9]+$"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataResponseBody","required":["user_pastelid","user_pastelid_passphrase"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataBadRequestResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataNotFoundResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UserdatasGetUserdataInternalServerErrorResponseBody"}}},"schemes":["http"]}}},"definitions":{"ActivationAttemptResponseBody":{"title":"ActivationAttemptResponseBody","type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"2000-12-04T21:27:04Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"Omnis animi aut dolor ad."},"file_id":{"type":"string","description":"File ID","example":"Temporibus sapiente ipsam modi est."},"id":{"type":"integer","description":"ID","example":882096087151031760,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":false}},"example":{"activation_attempt_at":"1972-07-03T07:30:03Z","error_message":"Voluptas aliquam enim ut.","file_id":"Et nam.","id":6874041490504784698,"is_successful":false},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScoresResponseBody":{"title":"AlternativeNSFWScoresResponseBody","type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.8939323,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.9720343,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.57417005,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.9754997,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.05291324,"format":"float"}},"example":{"drawings":0.61916524,"hentai":0.92094827,"neutral":0.23022017,"porn":0.11588287,"sexy":0.66029817}},"CascadeDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadResponseBody":{"title":"CascadeDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Nobis corrupti laborum neque amet eum nisi."}},"example":{"file_id":"Odio voluptatem."},"required":["file_id"]},"CascadeDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2InternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"downloadV2_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2NotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"downloadV2_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeDownloadV2ResponseBody":{"title":"CascadeDownloadV2ResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"Task ID for the download task - caller can check the status of the download task using this task_id","example":"Eos voluptate."}},"example":{"file_id":"Eaque molestiae sunt explicabo deserunt ducimus voluptate."},"required":["file_id"]},"CascadeDownloadV2UnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"downloadV2_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetDownloadTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDownloadTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetDownloadTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDownloadTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetDownloadTaskStateResponseBody":{"title":"CascadeGetDownloadTaskStateResponseBody","type":"object","properties":{"data_downloaded_megabytes":{"type":"integer","description":"data downloaded in megabytes so far","example":1,"format":"int64"},"details":{"$ref":"#/definitions/DetailsResponseBody"},"downloaded_volumes":{"type":"integer","description":"Number of volumes successfully downloaded","example":1,"format":"int64"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"size_of_the_file_megabytes":{"type":"integer","description":"size of the file in megabytes","example":1,"format":"int64"},"task_status":{"type":"string","description":"Status of the operation","example":"In Progress","enum":["Completed","Failed","In Progress"]},"total_volumes":{"type":"integer","description":"Total Volumes","example":1,"format":"int64"},"volumes_download_failed":{"type":"integer","description":"Number of volumes failed to download","example":1,"format":"int64"},"volumes_download_in_progress":{"type":"integer","description":"Number of volumes currently being downloaded","example":1,"format":"int64"},"volumes_pending_download":{"type":"integer","description":"Number of volumes awaiting schedule","example":1,"format":"int64"}},"example":{"data_downloaded_megabytes":1,"details":{"fields":{"Quisquam non.":"Voluptates qui aliquid sit atque inventore illo."},"message":"Image has been downloaded..."},"downloaded_volumes":1,"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","size_of_the_file_megabytes":1,"task_status":"In Progress","total_volumes":1,"volumes_download_failed":1,"volumes_download_in_progress":1,"volumes_pending_download":1},"required":["total_volumes","downloaded_volumes","volumes_download_in_progress","volumes_download_failed","task_status","details","volumes_pending_download","size_of_the_file_megabytes","data_downloaded_megabytes"]},"CascadeGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegisterTaskStateResponseBody":{"title":"CascadeRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"CascadeRegistrationDetailsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRegistrationDetailsResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.registration-detail; view=default","type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/definitions/FileResponseBody"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."}]}},"description":"RegistrationDetailsResponseBody result type (default view)","example":{"files":[{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."}]},"required":["files"]},"CascadeRegistrationDetailsUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registrationDetails_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeRestoreRequestBody":{"title":"CascadeRestoreRequestBody","type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"CascadeRestoreResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.restore-files; view=default","type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":8628766991430506722,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":5649605762979780077,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":7332727558518661660,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":8763859589063613815,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":1147320522073624158,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":7994585038836475833,"format":"int64"}},"description":"RestoreResponseBody result type (default view)","example":{"activated_volumes":7907423001162063504,"registered_volumes":8354612647535609718,"total_volumes":5970296144547881201,"volumes_activated_in_recovery_flow":7800238495149529790,"volumes_registration_in_progress":8764773822712906019,"volumes_with_pending_registration":1700047927483674020},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"CascadeRestoreUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"restore_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeStartProcessingRequestBody":{"title":"CascadeStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Explicabo vel praesentium similique."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"CascadeStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CascadeStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAsset_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetRequestBody":{"title":"CascadeUploadAssetRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"VXQgYXNwZXJuYXR1ciBhIGEu","format":"byte"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"UXVpYSBvZmZpY2lhIHBlcmZlcmVuZGlzIHNhZXBlIGxhdWRhbnRpdW0u"},"required":["file"]},"CascadeUploadAssetResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"CascadeUploadAssetV2BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAssetV2_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2InternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"uploadAssetV2_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CascadeUploadAssetV2RequestBody":{"title":"CascadeUploadAssetV2RequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"Vm9sdXB0YXRlbSBwbGFjZWF0IG1vbGVzdGlhZS4=","format":"byte"},"filename":{"type":"string","description":"-For internal use-"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"VmVyaXRhdGlzIGNvbnNlcXVhdHVyIG9kaXQgYWQgc29sdXRhIHF1YXNpLg=="},"required":["file"]},"CascadeUploadAssetV2ResponseBody":{"title":"Mediatype identifier: application/vnd.cascade.upload-file-v2; view=default","type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.9281737994080741,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.7880585479847904,0.51914174366952]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadAssetV2ResponseBody result type (default view)","example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.41407595589152374,0.9916639926323655,0.4195595461761546],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeDataResponse":{"title":"ChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":506177416,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":2966080710066937075,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Voluptatem error corporis dolorem."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Corrupti at."},"start_index":{"type":"integer","description":"Start index","example":473168692954412836,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Dolorem laudantium."}},"description":"Data of challenge","example":{"block":1711325536,"end_index":2736341589909805290,"file_hash":"Qui facere id.","merkelroot":"Et sed consequuntur maiores consequuntur.","start_index":7883016745563559198,"timestamp":"Atque aut dicta dolores rerum aut."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScoresResponse":{"title":"ChallengesScoresResponse","type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.9472164228855582,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Natus voluptatem sed totam aut iste."},"node_id":{"type":"string","description":"Specific node id","example":"Non rerum ut voluptas enim."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.35208285635880676,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.9613009814342558,"ip_address":"Facilis mollitia ipsa eligendi dolor.","node_id":"Dignissimos vitae quia.","storage_challenge_score":0.7377859910979474},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CollectionGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerCollection_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterCollectionRequestBody":{"title":"CollectionRegisterCollectionRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Fugiat aliquam maxime enim sequi iure commodi."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"CollectionRegisterCollectionResponseBody":{"title":"Mediatype identifier: application/collection-registration; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"RegisterCollectionResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"CollectionRegisterCollectionUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerCollection_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CollectionRegisterTaskStateResponseBody":{"title":"CollectionRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"DetailsResponse":{"title":"DetailsResponse","type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Harum ex quas molestias accusamus.":"Quidem nobis enim quis officia blanditiis aliquid.","Ipsa dolores cupiditate.":"Enim voluptas vel vel."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Delectus dolorem consequatur neque cumque temporibus.":"Cupiditate inventore rem.","Eaque deleniti.":"Sequi et.","Numquam rerum aut consequatur molestias blanditiis sint.":"Porro et dolorem quas."},"message":"Image has been downloaded..."}},"DetailsResponseBody":{"title":"DetailsResponseBody","type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Qui nisi.":"Suscipit non amet voluptatem commodi aut."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Optio pariatur labore neque inventore.":"Laudantium facere eveniet molestiae rerum."},"message":"Image has been downloaded..."}},"EvaluationDataResponse":{"title":"EvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":269806825,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Rerum error architecto commodi possimus ab sint."},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Incidunt autem et enim corporis."},"timestamp":{"type":"string","description":"Timestamp","example":"Atque est sit neque voluptatem."}},"description":"Data of evaluation","example":{"block":669584547,"hash":"Et dolor totam fugiat eaque nihil et.","is_verified":false,"merkelroot":"Voluptates dolores ut doloremque.","timestamp":"Vitae ut illum fugiat quidem necessitatibus unde."},"required":["timestamp","hash","is_verified"]},"EventTicketResponseBody":{"title":"EventTicketResponseBody","type":"object","properties":{"data_hash":{"type":"string","example":"UXVhc2kgZHVjaW11cyBkb2xvcmVtcXVlIGZ1Z2lhdCBhdXQgZXN0Lg==","format":"byte"},"missing_keys":{"type":"array","items":{"type":"string","example":"Quasi quibusdam nisi molestiae."},"example":["Voluptatum est.","Sint cum nisi ea.","Minima sed amet maiores.","Ratione omnis autem nihil voluptatem tempora."]},"recipient":{"type":"string","example":"Officia quidem in."},"ticket_type":{"type":"string","example":"Ut sit dolores."},"tx_id":{"type":"string","example":"Voluptatem repellat minima culpa."}},"example":{"data_hash":"RW9zIGF1dGVtIGRvbG9yZW1xdWUgZG9sb3JlbSBzYXBpZW50ZSBpbnZlbnRvcmUu","missing_keys":["Et quae.","Temporibus veritatis fuga omnis consequatur.","Quaerat adipisci nihil.","Nesciunt tenetur dolorem veniam ducimus repellendus."],"recipient":"Molestias magnam voluptatem ex veritatis autem.","ticket_type":"Rerum unde et distinctio.","tx_id":"Et similique voluptatem ut corporis temporibus."}},"FileResponseBody":{"title":"FileResponseBody","type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/definitions/ActivationAttemptResponseBody"},"description":"List of activation attempts","example":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Tenetur commodi."},"base_file_id":{"type":"string","description":"Base File ID","example":"Error officia ratione voluptatem quae porro facilis."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Nobis eaque labore minus ullam recusandae."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"Facere et aut velit ut."},"done_block":{"type":"integer","description":"Done Block","example":3815861893461964230,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Est ipsam provident."},"file_index":{"type":"string","description":"Index of the file","example":"Quia possimus delectus."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Dolor nisi debitis aut odio et omnis."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":false},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Rerum libero et quis."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"A voluptatibus temporibus."},"registration_attempts":{"type":"array","items":{"$ref":"#/definitions/RegistrationAttemptResponseBody"},"description":"List of registration attempts","example":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.7462762770790603,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.46504190836524634,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.35639967818515916,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":166397156,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Quia dolor error facilis reprehenderit."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"1989-02-19T21:22:27Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Mollitia voluptatem placeat modi quis necessitatibus."}},"example":{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Debitis itaque neque veniam.","base_file_id":"Impedit possimus voluptas.","burn_txn_id":"Nam quos blanditiis nam.","cascade_metadata_ticket_id":"Fugiat impedit aut.","done_block":6773991293641065998,"file_id":"Ut rem exercitationem distinctio quis similique.","file_index":"Delectus perferendis ipsa assumenda ut.","hash_of_original_big_file":"Quae eum dolore exercitationem et.","is_concluded":true,"name_of_original_big_file_with_ext":"Sit ea sed omnis.","reg_txid":"Velit iste autem autem voluptatibus.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.23426044165222878,"req_burn_txn_amount":0.059445307339604805,"size_of_original_big_file":0.337245704856618,"start_block":68949039,"task_id":"Tenetur et.","upload_timestamp":"1975-07-16T00:58:20Z","uuid_key":"Deleniti perspiciatis voluptatem ut."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FuzzyMatchResponseBody":{"title":"FuzzyMatchResponseBody","type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"creator_name","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":470580182469708437,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[5920034399636110320,6125114305920374162,5332111026020366249,9194539609994487904]},"score":{"type":"integer","description":"Score used to rank matches","example":1872572559723942530,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Fugit error in quis ipsam esse."}},"example":{"field_type":"series","matched_indexes":[605596471779296576,4601653429806057317,4227664647727049516],"score":700001607825622134,"str":"Officia consequuntur sed laboriosam."}},"HCChallengeDataResponse":{"title":"HCChallengeDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":943128093,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Impedit rerum quia."},"timestamp":{"type":"string","description":"Timestamp","example":"Possimus quas."}},"description":"Data of challenge","example":{"block":95110118,"merkelroot":"Amet voluptatem est cum molestiae deserunt.","timestamp":"Id illum magnam qui ab quia sint."},"required":["timestamp"]},"HCEvaluationDataResponse":{"title":"HCEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":783252388,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Eum odio delectus eos."},"timestamp":{"type":"string","description":"Timestamp","example":"Rerum voluptatibus molestiae."}},"description":"Data of evaluation","example":{"block":1667980720,"is_verified":true,"merkelroot":"Dicta perferendis blanditiis ipsum.","timestamp":"Soluta odio error eos."},"required":["timestamp","is_verified"]},"HCObserverEvaluationDataResponse":{"title":"HCObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":170141757,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":false},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":false},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Ea cum dolores reiciendis nisi qui atque."},"timestamp":{"type":"string","description":"Timestamp","example":"Nobis facilis et ut iure facilis ipsam."}},"description":"Data of Observer's evaluation","example":{"block":961210277,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":true,"is_recipient_signature_ok":false,"merkelroot":"Animi animi et rerum a.","timestamp":"Commodi saepe non nobis iure accusamus quod."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCResponseDataResponse":{"title":"HCResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":310072745,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Quisquam quo esse sed veritatis sunt."},"timestamp":{"type":"string","description":"Timestamp","example":"Voluptatem laboriosam doloremque qui."}},"description":"Data of response","example":{"block":147091750,"merkelroot":"Sit nesciunt et hic et est maxime.","timestamp":"Est libero."},"required":["timestamp"]},"HCSummaryStatsResponseBody":{"title":"HCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":8774560265228951533,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":1578393658057566138,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":1563733030605382049,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":1232157085605424270,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":8042722551110325413,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":6318346467007171400,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":1757677700899581447,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":3054501981678493369,"no_of_invalid_signatures_observed_by_observers":7451310699276511732,"no_of_slow_responses_observed_by_observers":5865757257444309168,"total_challenges_evaluated_by_challenger":1400780750413163796,"total_challenges_issued":6087915999507438889,"total_challenges_processed_by_recipient":1489368480355944811,"total_challenges_verified":559668252736766364},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessageResponse":{"title":"Mediatype identifier: application/vnd.hc_detailed_logs.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/HCChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Est esse cupiditate laboriosam quo voluptatem."},"challenger_evaluation":{"$ref":"#/definitions/HCEvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Officiis dolorum."},"message_type":{"type":"string","description":"type of the message","example":"Excepturi beatae et."},"observer_evaluation":{"$ref":"#/definitions/HCObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Et in eligendi ut voluptate vel."},"description":"List of observer IDs","example":["Itaque distinctio.","Vitae neque.","Explicabo laudantium numquam.","Ea facilis aut blanditiis."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Animi impedit."},"response":{"$ref":"#/definitions/HCResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Voluptatum id sed voluptatem illum dolorum."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Consectetur impedit eaque nam odit dolor itaque."}},"description":"HealthCheck challenge message data (default view)","example":{"challenge":{"block":1740108809,"merkelroot":"Et neque culpa explicabo dolore natus.","timestamp":"Voluptatibus hic voluptas doloremque eligendi et magni."},"challenge_id":"Temporibus voluptatem impedit esse ut.","challenger_evaluation":{"block":1664792371,"is_verified":true,"merkelroot":"Commodi repellat nihil qui dolores.","timestamp":"Suscipit ipsum veniam debitis illum."},"challenger_id":"Veritatis eum fugiat.","message_type":"Consectetur sint.","observer_evaluation":{"block":325896074,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":true,"is_recipient_signature_ok":true,"merkelroot":"Qui laudantium et nihil libero aut delectus.","timestamp":"Id dignissimos qui quaerat."},"observers":["Culpa aliquam ad veritatis consequuntur fugiat.","Officia recusandae fugiat aut.","Et vitae sit.","Est id et nihil."],"recipient_id":"Possimus exercitationem.","response":{"block":1763433739,"merkelroot":"Molestiae voluptas ut.","timestamp":"Eaque perspiciatis earum a deserunt consectetur placeat."},"sender_id":"Aspernatur aut repudiandae repudiandae qui.","sender_signature":"Voluptatibus id incidunt."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HealthCheckChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"HealthCheckChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.hc_summary_stats.result; view=default","type":"object","properties":{"hc_summary_stats":{"$ref":"#/definitions/HCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":5298572403287664370,"no_of_invalid_signatures_observed_by_observers":3383689589076681506,"no_of_slow_responses_observed_by_observers":827764771293379553,"total_challenges_evaluated_by_challenger":8246003579136272374,"total_challenges_issued":8051655920216908082,"total_challenges_processed_by_recipient":5129431480100159883,"total_challenges_verified":6477018306295341268}},"required":["hc_summary_stats"]},"HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InternetRarenessResponseBody":{"title":"InternetRarenessResponseBody","type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Consectetur dolor porro enim in porro inventore."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Perferendis magni dolores molestias iste ut."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":3259510178,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Ut sint et occaecati."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Qui in officia."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Sit et.","earliest_available_date_of_internet_results":"Ad in rerum et voluptatem aspernatur.","min_number_of_exact_matches_in_page":1529287164,"rare_on_internet_graph_json_compressed_b64":"Voluptates ullam magnam nihil.","rare_on_internet_summary_table_as_json_compressed_b64":"Minus quod dolor amet."}},"MetricsGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetDetailedLogsResponseBody":{"title":"MetricsGetDetailedLogsResponseBody","type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/definitions/SelfHealingReportKVResponseBody"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}}]}},"example":{"reports":[{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}}]}},"MetricsGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"MetricsGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.metrics.result; view=default","type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/definitions/SHExecutionStatsResponseBody"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/definitions/SHTriggerStatsResponseBody"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."}]}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"self_healing_execution_events_stats":{"total_file_healing_failed":7768590148358975878,"total_files_healed":5003517749846764640,"total_reconstruction_not_required_evaluations_approved":2806992559829453130,"total_reconstruction_required_evaluations_approved":1107029843099257708,"total_reconstruction_required_evaluations_not_approved":5899917961438241754,"total_reconstruction_required_hash_mismatch":7662269731854437673,"total_reconstructions_not_required_evaluations_not_approved":6465655469488946682,"total_self_healing_events_accepted":8057201361166306844,"total_self_healing_events_acknowledged":7507492928430008683,"total_self_healing_events_evaluations_unverified":5026086393945454809,"total_self_healing_events_evaluations_verified":7657744171058360435,"total_self_healing_events_issued":6120797776831447879,"total_self_healing_events_rejected":4720652167101259254},"self_healing_trigger_events_stats":[{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"MetricsGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileDetailResponseBody":{"title":"NftDdServiceOutputFileDetailResponseBody","type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/definitions/AlternativeNSFWScoresResponseBody"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"At ipsum minima."},"child_probability":{"type":"number","description":"child probability","example":0.23449795,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Placeat omnis ratione soluta architecto alias non."},"cp_probability":{"type":"number","description":"probability of CP","example":0.31891298,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Natus consequatur."},"creator_website":{"type":"string","description":"website of creator","example":"Delectus necessitatibus in."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"Dolores beatae magni et cupiditate quidem."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Aut voluptatem labore."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Voluptate voluptatem est quidem."},"file_type":{"type":"string","description":"type of the file","example":"Officiis corporis doloribus aut ab incidunt."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.8487243,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Velit ipsum eos aut nobis suscipit beatae."},"image_file_path":{"type":"string","description":"file path of the image","example":"Dolorum rerum dolor."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.9990024881252295,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.34777901953790014,0.705430411114813,0.22019987176462968]},"internet_rareness":{"$ref":"#/definitions/InternetRarenessResponseBody"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.5927206082581582,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"Ab sint aliquam."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Illo minima."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Eaque nesciunt tempore sequi fugit."},"nft_title":{"type":"string","description":"title of NFT","example":"Est eos alias pariatur adipisci omnis deleniti."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Eum et nam recusandae et nulla et."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.73915386,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":7933392606086585379,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.66221505,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"Aut non atque nemo at."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Eaque voluptatibus esse reiciendis."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Non ea dicta ex consequatur consequatur."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Voluptatem aut ducimus."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"Sed commodi consequatur unde qui."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Et dolor eum vel."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.4351476,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.23593992,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.1508883,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"TWFnbmkgcXVpIGN1bHBhIHNlZCBxdWlhIHF1YW0u","format":"byte"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Quis ea qui dolore esse quaerat."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.96331656,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"SW4gdml0YWUgYXV0ZW0gdGVtcG9yaWJ1cy4=","format":"byte"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"UXVvIHBvcnJvIGl0YXF1ZS4=","format":"byte"},"total_copies":{"type":"integer","description":"total copies of NFT","example":7462986072117779346,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Iusto nihil."}},"example":{"alternative_nsfw_scores":{"drawings":0.10935703,"hentai":0.09246627,"neutral":0.6267282,"porn":0.44808388,"sexy":0.10161177},"candidate_image_thumbnail_webp_as_base64_string":"Modi et ducimus error vel.","child_probability":0.7751423,"collection_name_string":"Eos explicabo repudiandae id.","cp_probability":0.88962495,"creator_name":"Sit et consequatur laudantium aut.","creator_website":"Labore ut sequi.","creator_written_statement":"Nulla officia exercitationem.","does_not_impact_the_following_collection_strings":"Facilis expedita.","dupe_detection_system_version":"Distinctio et et.","file_type":"Praesentium quaerat.","group_rareness_score":0.44326186,"hash_of_candidate_image_file":"Laboriosam et possimus sit sunt expedita.","image_file_path":"Occaecati tenetur non est ea.","image_fingerprint_of_candidate_image_file":[0.07167349916515192,0.3913938964776676],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Nihil consequuntur sed et.","earliest_available_date_of_internet_results":"Rerum expedita minus.","min_number_of_exact_matches_in_page":2451569794,"rare_on_internet_graph_json_compressed_b64":"Deserunt doloremque in.","rare_on_internet_summary_table_as_json_compressed_b64":"Eum reiciendis eum et placeat."},"is_likely_dupe":false,"is_pastel_openapi_request":true,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.9905531090874132,"nft_creation_video_youtube_url":"Est quo.","nft_keyword_set":"Ex in minus odio et sit mollitia.","nft_series_name":"Maxime in corrupti.","nft_title":"Quae repellendus exercitationem.","open_api_group_id_string":"Sit hic eos sequi illo fugit consequatur.","open_nsfw_score":0.10593063,"original_file_size_in_bytes":913338949195164520,"overall_rareness_score":0.750524,"pastel_block_hash_when_request_submitted":"Magni magni quo aut aut a accusantium.","pastel_block_height_when_request_submitted":"Temporibus ea possimus quam quis.","pastel_id_of_registering_supernode_1":"Expedita necessitatibus at.","pastel_id_of_registering_supernode_2":"Soluta totam ratione est quos fugit omnis.","pastel_id_of_registering_supernode_3":"Cumque consequatur animi.","pastel_id_of_submitter":"Quia voluptatem praesentium consequatur asperiores eaque ut.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.034080453,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.9741878,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.35369322,"preview_hash":"UGxhY2VhdCB2ZXJpdGF0aXMgdm9sdXB0YXRlbSBpdXJlLg==","rareness_scores_table_json_compressed_b64":"Vero doloremque doloribus similique.","similarity_score_to_first_entry_in_collection":0.12367769,"thumbnail1_hash":"VXQgc2FwaWVudGUgYWNjdXNhbnRpdW0gcHJvdmlkZW50IGF1dGVtIGV0Lg==","thumbnail2_hash":"TGliZXJvIGluIHBhcmlhdHVyIGluIGV0IGR1Y2ltdXMgY3VwaWRpdGF0ZS4=","total_copies":1744172899364030546,"utc_timestamp_when_request_submitted":"Sunt enim est aut nobis."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"NftDdServiceOutputFileDetailUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"ddServiceOutputFile_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftDdServiceOutputFileResponseBody":{"title":"NftDdServiceOutputFileResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Doloremque hic eos et."}},"example":{"file":"Error vel dolores qui quisquam."},"required":["file"]},"NftDdServiceOutputFileUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"ddServiceOutputFile_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftDownloadResponseBody":{"title":"NftDownloadResponseBody","type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Quo distinctio eum dolores quis."}},"example":{"file_id":"Dolor eveniet provident."},"required":["file_id"]},"NftDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftGet_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"nftGet_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"nftGet_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftNftGetResponseBody":{"title":"NftNftGetResponseBody","type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Numquam sit molestiae ipsa."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Ex eius id repellendus."},"green_address":{"type":"boolean","description":"Green address","example":false},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":1745990187,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"RG9sb3JlcyBkZWxlbml0aSB1dC4=","format":"byte"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Accusantium consequuntur."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Sint quibusdam aut."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.06882246730710773,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"RXhjZXB0dXJpIHF1aS4=","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"TWF4aW1lIGNvcnJ1cHRpIG1hZ25hbSBldCBldCB2b2x1cHRhdGVtLg==","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Quia dicta eveniet quod.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Quam est minus sed quia.","green_address":false,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":1873635446,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"RGlnbmlzc2ltb3MgbmloaWwgZXhwbGljYWJvIGxhYm9yaW9zYW0gZXN0Lg==","rare_on_internet_graph_json_b64":"Rerum omnis.","rare_on_internet_summary_table_json_b64":"Et vel.","rareness_score":1,"royalty":0.36896894459373797,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"VmVsIHNpbnQgbWludXMgYXV0ZW0gZWEgb3B0aW8u","thumbnail_2":"Vm9sdXB0YXRlbSBkZXNlcnVudC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftNftSearchBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"nftSearch_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"nftSearch_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftNftSearchResponseBody":{"title":"NftNftSearchResponseBody","type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":5359151959569834645,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/definitions/FuzzyMatchResponseBody"},"description":"Match result details","example":[{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."}]},"nft":{"$ref":"#/definitions/NftSummaryResponseBody"}},"example":{"match_index":8923196674506674897,"matches":[{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"QXV0IGFtZXQgc2VxdWku","thumbnail_2":"U2VxdWkgdmVsLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftRegisterBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"register_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"register_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterPayloadResponse":{"title":"NftRegisterPayloadResponse","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Tenetur ipsam."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponse"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Mollitia est voluptatum quis magnam.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterPayloadResponseBody":{"title":"NftRegisterPayloadResponseBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Quisquam temporibus dolorem a."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Temporibus ab soluta distinctio.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftRegisterRequestBody":{"title":"NftRegisterRequestBody","type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Totam nihil eligendi dignissimos facere amet numquam."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/definitions/ThumbnailcoordinateRequestBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Repellendus fugit.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"NftRegisterResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"description":"RegisterResponseBody result type (default view)","example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"NftRegisterTaskInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTask_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTask_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskResponseBody":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/definitions/TaskStateResponseBody"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponseBody"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Cupiditate nobis nesciunt.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"NftRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterTaskStateResponseBody":{"title":"NftRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"NftRegisterTasksInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTasks_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"NftRegisterUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"register_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftSummaryResponseBody":{"title":"NftSummaryResponseBody","type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"RXQgdm9sdXB0YXRlbS4=","format":"byte"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"T2ZmaWNpYSB2b2x1cHRhdGVtIGV2ZW5pZXQgdm9sdXB0YXRlbSBpdGFxdWUgb2ZmaWNpYSBhdC4=","format":"byte"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UGVyZmVyZW5kaXMgaXN0ZSBzaW1pbGlxdWUgdmVsaXQu","thumbnail_2":"SWxsbyBlYSB2b2x1cHRhcyB2b2x1cHRhdGlidXMgc2ltaWxpcXVlLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"NftTaskResponseTinyCollection":{"title":"Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny","type":"array","items":{"$ref":"#/definitions/TaskResponseTiny"},"description":"NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view)","example":[{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Cupiditate nobis nesciunt.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Cupiditate nobis nesciunt.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"NftUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"NftUploadImageRequestBody":{"title":"NftUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"RWFydW0gZWFxdWUgb21uaXMgdm9sdXB0YXMgbW9kaSBmdWdhLg==","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"SW4gdGVtcG9yYS4="},"required":["file"]},"NftUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image-result; view=default","type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"UploadImageResponseBody result type (default view)","example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"ObserverEvaluationDataResponse":{"title":"ObserverEvaluationDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":2049285499,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Nostrum doloribus accusantium tempore."},"reason":{"type":"string","description":"Reason","example":"Aspernatur consequatur nulla fugit consectetur est distinctio."},"timestamp":{"type":"string","description":"Timestamp","example":"Modi sit dolor quis velit."},"true_hash":{"type":"string","description":"TrueHash","example":"Non quae voluptates in ratione ipsum ipsa."}},"description":"Data of Observer's evaluation","example":{"block":837703987,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":true,"is_recipient_signature_ok":true,"merkelroot":"Ea rerum harum esse et quia sint.","reason":"Eius vitae deleniti.","timestamp":"Dolorem reprehenderit animi.","true_hash":"Ex at necessitatibus numquam."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegistrationAttemptResponseBody":{"title":"RegistrationAttemptResponseBody","type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Quam cum deserunt quibusdam excepturi inventore."},"file_id":{"type":"string","description":"File ID","example":"Dolor recusandae odio voluptate enim."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"1996-03-19T06:40:03Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":7991499059470661584,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":false},"processor_sns":{"type":"string","description":"Processor SNS","example":"Sunt consequuntur."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"2001-01-24T08:03:15Z","format":"date-time"}},"example":{"error_message":"Quia non omnis.","file_id":"Sint perspiciatis autem eos velit facere.","finished_at":"2005-09-07T13:49:48Z","id":7204067934931861460,"is_successful":false,"processor_sns":"Accusamus odio commodi autem.","reg_started_at":"2015-05-01T20:10:30Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicketResponseBody":{"title":"RespondedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"missing_keys":{"type":"array","items":{"type":"string","example":"Assumenda quam."},"example":["Quia aut et.","Perspiciatis debitis consequatur.","Ducimus velit nulla hic provident.","Et quia unde."]},"reconstructed_file_hash":{"type":"string","example":"U3VudCBxdWlhIHZpdGFlIG9mZmljaWlzIGRvbG9yLg==","format":"byte"},"ticket_type":{"type":"string","example":"Ipsa dolores laborum cupiditate omnis qui dolore."},"tx_id":{"type":"string","example":"Consequatur iste soluta ex suscipit."}},"example":{"is_reconstruction_required":true,"missing_keys":["Ex itaque cupiditate.","Maiores ea repudiandae excepturi."],"reconstructed_file_hash":"SXVzdG8gcmVydW0u","ticket_type":"Aut eius.","tx_id":"Eos dolore fugiat asperiores exercitationem sit."}},"ResponseDataResponse":{"title":"ResponseDataResponse","type":"object","properties":{"block":{"type":"integer","description":"Block","example":365784395,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Qui quasi aliquam quo quo molestiae qui."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Ut iusto necessitatibus."},"timestamp":{"type":"string","description":"Timestamp","example":"In non eum enim et."}},"description":"Data of response","example":{"block":1394253007,"hash":"Minima necessitatibus quisquam repudiandae.","merkelroot":"Sit vitae.","timestamp":"Corporis a est rerum officiis."},"required":["timestamp"]},"SCSummaryStatsResponseBody":{"title":"SCSummaryStatsResponseBody","type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":1438589467886703313,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":4690167887119603236,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":28256694005962907,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":2870258502818032716,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":6907507321623683818,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":7529305911933441858,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":2871213842674065484,"format":"int64"}},"description":"Storage-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":5333305187026237112,"no_of_invalid_signatures_observed_by_observers":6622156395643061810,"no_of_slow_responses_observed_by_observers":1112925407092909673,"total_challenges_evaluated_by_challenger":9128761248514114356,"total_challenges_issued":6533700277562465571,"total_challenges_processed_by_recipient":3928034324222267804,"total_challenges_verified":1657461073177263883},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"SHExecutionStatsResponseBody":{"title":"SHExecutionStatsResponseBody","type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":3582289672878588636,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":5778234259972073963,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":8850849015211979105,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":3273753217088137,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":2933399008609954399,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":6218696696414695956,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":6893113450005233820,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":233846548458207736,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":1287028771178144956,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":3596488678482864367,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":5296607256220562564,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":4026816766821672584,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":9026187748382421213,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":4893042138900961471,"total_files_healed":5481717915136777246,"total_reconstruction_not_required_evaluations_approved":5614416024795668921,"total_reconstruction_required_evaluations_approved":6995364301143721660,"total_reconstruction_required_evaluations_not_approved":3308905005922593193,"total_reconstruction_required_hash_mismatch":7224529582747014232,"total_reconstructions_not_required_evaluations_not_approved":30394990174954482,"total_self_healing_events_accepted":955424758112391621,"total_self_healing_events_acknowledged":5534486376050822202,"total_self_healing_events_evaluations_unverified":3802605222208132235,"total_self_healing_events_evaluations_verified":9124039455895407017,"total_self_healing_events_issued":244586377334157790,"total_self_healing_events_rejected":4508756317532729254},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStatsResponseBody":{"title":"SHTriggerStatsResponseBody","type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"Magnam fugit et."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":3265398503658127104,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":4659251110602746591,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":8959183783161377288,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Aperiam amet ullam dolorem."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"Tempora ut sed in doloribus adipisci.","nodes_offline":5478265755911113328,"total_files_identified":5431108744884078352,"total_tickets_identified":8936217064989805246,"trigger_id":"Ullam quas molestiae omnis dolor."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"ScoreGetAggregatedChallengesScoresBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getAggregatedChallengesScores_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getAggregatedChallengesScores_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getAggregatedChallengesScores_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SelfHealingChallengeDataResponseBody":{"title":"SelfHealingChallengeDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":2082802109,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/definitions/EventTicketResponseBody"},"example":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}]},"merkelroot":{"type":"string","example":"Est quis dolore dolorum soluta esse."},"nodes_on_watchlist":{"type":"string","example":"Debitis qui."},"timestamp":{"type":"string","example":"Numquam sunt consequatur ad."}},"example":{"block":108868140,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Nobis iste facere eos architecto.","nodes_on_watchlist":"Ducimus quo eius temporibus doloremque iusto.","timestamp":"Molestiae natus culpa voluptatem placeat."}},"SelfHealingMessageDataResponseBody":{"title":"SelfHealingMessageDataResponseBody","type":"object","properties":{"challenger_id":{"type":"string","example":"Rem sed aut consequatur."},"event_details":{"$ref":"#/definitions/SelfHealingChallengeDataResponseBody"},"recipient_id":{"type":"string","example":"Quo labore voluptas doloribus sint repellendus dolorem."},"response":{"$ref":"#/definitions/SelfHealingResponseDataResponseBody"},"verification":{"$ref":"#/definitions/SelfHealingVerificationDataResponseBody"}},"example":{"challenger_id":"Vitae aspernatur et quia consectetur magni itaque.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Ut et voluptas.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}}},"SelfHealingMessageKVResponseBody":{"title":"SelfHealingMessageKVResponseBody","type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Possimus sint sequi reprehenderit et."},"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageResponseBody"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}},"example":{"message_type":"Aut placeat dolorem ducimus.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}},"SelfHealingMessageResponseBody":{"title":"SelfHealingMessageResponseBody","type":"object","properties":{"data":{"$ref":"#/definitions/SelfHealingMessageDataResponseBody"},"message_type":{"type":"string","example":"Aut sint unde."},"sender_id":{"type":"string","example":"Illum aut voluptate in facere aliquid."},"sender_signature":{"type":"string","example":"RG9sb3JlbSBub2Jpcy4=","format":"byte"},"trigger_id":{"type":"string","example":"Ipsa quia commodi earum."}},"example":{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Veniam vitae dolore voluptas numquam.","sender_id":"Similique sint deleniti.","sender_signature":"RXQgZnVnaWF0IHNlZCBub2Jpcy4=","trigger_id":"Autem et qui ad sed nostrum."}},"SelfHealingReportKVResponseBody":{"title":"SelfHealingReportKVResponseBody","type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Enim iste necessitatibus."},"report":{"$ref":"#/definitions/SelfHealingReportResponseBody"}},"example":{"event_id":"Sint assumenda odio in occaecati adipisci.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}}},"SelfHealingReportResponseBody":{"title":"SelfHealingReportResponseBody","type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/definitions/SelfHealingMessageKVResponseBody"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},"example":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},"SelfHealingResponseDataResponseBody":{"title":"SelfHealingResponseDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":927164459,"format":"int32"},"event_id":{"type":"string","example":"Autem non ea."},"merkelroot":{"type":"string","example":"Porro sed et est rerum similique nulla."},"responded_ticket":{"$ref":"#/definitions/RespondedTicketResponseBody"},"timestamp":{"type":"string","example":"Doloribus nihil quia."},"verifiers":{"type":"array","items":{"type":"string","example":"Doloribus amet debitis esse sed."},"example":["Et laudantium.","Accusantium laudantium non hic beatae iure.","Nihil explicabo aperiam non.","Sequi sed aspernatur et sequi."]}},"example":{"block":1967739888,"event_id":"Ipsa dolores veritatis et.","merkelroot":"Expedita maiores qui eligendi ab ipsum alias.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Ea minima sint.","verifiers":["Deserunt maiores totam.","Libero at fuga.","Iste accusantium repellendus."]}},"SelfHealingVerificationDataResponseBody":{"title":"SelfHealingVerificationDataResponseBody","type":"object","properties":{"block":{"type":"integer","example":1234181341,"format":"int32"},"event_id":{"type":"string","example":"Animi voluptatem est dolorum qui."},"merkelroot":{"type":"string","example":"Quis rerum blanditiis consequatur eum ad rerum."},"timestamp":{"type":"string","example":"Ut qui quasi asperiores."},"verified_ticket":{"$ref":"#/definitions/VerifiedTicketResponseBody"},"verifiers_data":{"type":"object","example":{"Eveniet sit dolorem ratione laudantium voluptatem optio.":"Vm9sdXB0YXRlcyBkb2xvcmlidXMgcXVvIHRlbmV0dXIgbmloaWwgbm9uIHBlcmZlcmVuZGlzLg==","Quod aut dolores.":"Tm9zdHJ1bSBlbGlnZW5kaSBleGNlcHR1cmkgcmVydW0gZXQgY29uc2VjdGV0dXIgYXNwZXJuYXR1ci4=","Vel laudantium cum laudantium aut.":"Q3VscGEgYmxhbmRpdGlpcyBtYWduYW0gbm9uLg=="},"additionalProperties":{"type":"string","example":"TW9sbGl0aWEgY29uc2VxdWF0dXIgZG9sb3JlcyBkb2xvcmVzIHJlcGVsbGVuZHVzIGFzc3VtZW5kYSBjb3Jwb3Jpcy4=","format":"byte"}}},"example":{"block":1054912535,"event_id":"Iusto et doloribus ad.","merkelroot":"Mollitia debitis rerum provident voluptatibus.","timestamp":"Qui quibusdam.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Vero laboriosam dolorem sit omnis accusamus.":"T21uaXMgc2l0IGN1bHBhIGFkLg=="}}},"SenseDownloadInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseDownloadResponseBody":{"title":"SenseDownloadResponseBody","type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"RG9sb3JlIGFtZXQu","format":"byte"}},"example":{"file":"UXVpYSBldCBhY2N1c2FudGl1bSByZXJ1bSBvbW5pcyBxdW9zLg=="},"required":["file"]},"SenseDownloadUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"download_UnAuthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getTaskHistory_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseGetTaskHistoryNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getTaskHistory_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"registerTaskState_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"registerTaskState_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseRegisterTaskStateResponseBody":{"title":"SenseRegisterTaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"SenseStartProcessingBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"startProcessing_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseStartProcessingRequestBody":{"title":"SenseStartProcessingRequestBody","type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Odio ab voluptate."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Eius officia illo provident fuga minima aut.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"SenseStartProcessingResponseBody":{"title":"Mediatype identifier: application/sense.start-processing; view=default","type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"description":"StartProcessingResponseBody result type (default view)","example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"SenseStartProcessingUnAuthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"startProcessing_UnAuthorized_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadImage_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"uploadImage_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SenseUploadImageRequestBody":{"title":"SenseUploadImageRequestBody","type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"VGVtcG9yZSBuZXF1ZSBxdWku","format":"byte"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"T2ZmaWNpaXMgaWxsdW0gZXN0IG1vbGVzdGlhcy4="},"required":["file"]},"SenseUploadImageResponseBody":{"title":"Mediatype identifier: application/vnd.nft.upload-image; view=default","type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"description":"UploadImageResponseBody result type (default view)","example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"StorageChallengeGetDetailedLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_NotFound_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetDetailedLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getDetailedLogs_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_BadRequest_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getSummaryStats_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"StorageChallengeGetSummaryStatsResponseBody":{"title":"Mediatype identifier: application/vnd.summary_stats.result; view=default","type":"object","properties":{"sc_summary_stats":{"$ref":"#/definitions/SCSummaryStatsResponseBody"}},"description":"GetSummaryStatsResponseBody result type (default view)","example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":5854226055096814600,"no_of_invalid_signatures_observed_by_observers":4353527834150504494,"no_of_slow_responses_observed_by_observers":1357252241103533124,"total_challenges_evaluated_by_challenger":3728835119474173051,"total_challenges_issued":6647138861710727929,"total_challenges_processed_by_recipient":5873786866786505808,"total_challenges_verified":6262794736214513307}},"required":["sc_summary_stats"]},"StorageChallengeGetSummaryStatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"getSummaryStats_Unauthorized_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"StorageMessageResponse":{"title":"Mediatype identifier: application/vnd.storage.message; view=default","type":"object","properties":{"challenge":{"$ref":"#/definitions/ChallengeDataResponse"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Suscipit excepturi qui quo officiis."},"challenger_evaluation":{"$ref":"#/definitions/EvaluationDataResponse"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"A non."},"message_type":{"type":"string","description":"type of the message","example":"Dolorem sit est soluta dolorem fuga molestias."},"observer_evaluation":{"$ref":"#/definitions/ObserverEvaluationDataResponse"},"observers":{"type":"array","items":{"type":"string","example":"Cum dolorum error necessitatibus."},"description":"List of observer IDs","example":["Molestias repellendus iure vitae harum.","Vel ex modi.","Consequuntur quis magnam."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Et sapiente asperiores."},"response":{"$ref":"#/definitions/ResponseDataResponse"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Autem non eos et incidunt culpa."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Perspiciatis dolores odit esse dolores."}},"description":"Storage challenge message data (default view)","example":{"challenge":{"block":1533850580,"end_index":3333691379975401886,"file_hash":"Quidem deserunt rem.","merkelroot":"Accusantium qui quod voluptas officiis.","start_index":6009480957455380299,"timestamp":"Quia repellendus labore architecto."},"challenge_id":"Ut et maiores a quis dolor voluptates.","challenger_evaluation":{"block":1162046023,"hash":"Aliquid voluptatum qui sit nemo accusamus.","is_verified":true,"merkelroot":"Id rem omnis iste eveniet eligendi veniam.","timestamp":"Voluptatibus commodi iure ut unde voluptatum."},"challenger_id":"Inventore et ex rerum quasi cum.","message_type":"Rem aut perferendis ratione fugiat.","observer_evaluation":{"block":1933870942,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Voluptates ipsum quibusdam facilis quos.","reason":"Commodi quibusdam voluptatem quam itaque libero.","timestamp":"Ea veniam ipsum esse est.","true_hash":"Quas sit eum laudantium quo."},"observers":["Tempore atque.","Nemo eum hic maiores."],"recipient_id":"Nihil eos placeat sed sit.","response":{"block":816684052,"hash":"Explicabo nihil non occaecati accusamus.","merkelroot":"Exercitationem quisquam id accusantium voluptatibus blanditiis dolorem.","timestamp":"Asperiores pariatur et dolor dolore qui cum."},"sender_id":"Aut accusamus.","sender_signature":"Deleniti fugit fuga iusto cumque beatae sit."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"TaskHistoryResponse":{"title":"TaskHistoryResponse","type":"object","properties":{"details":{"$ref":"#/definitions/DetailsResponse"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"title":"Mediatype identifier: application/vnd.nft.register.task; view=default","type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/definitions/NftRegisterPayloadResponse"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view) (default view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskStateResponseBody":{"title":"TaskStateResponseBody","type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"ThumbnailcoordinateRequestBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponse":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"title":"Mediatype identifier: thumbnailcoordinate; view=default","type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UserImageUploadPayloadRequestBody":{"title":"UserImageUploadPayloadRequestBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserImageUploadPayloadResponseBody":{"title":"UserImageUploadPayloadResponseBody","type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"byte"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserdatasCreateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"createUserdata_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"createUserdata_InternalServerError_response_body result type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasCreateUserdataRequestBody":{"title":"UserdatasCreateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasCreateUserdataResponseBody":{"title":"UserdatasCreateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"UserdatasGetUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getUserdata_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"getUserdata_NotFound_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasGetUserdataResponseBody":{"title":"UserdatasGetUserdataResponseBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadResponseBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"updateUserdata_BadRequest_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataInternalServerErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"updateUserdata_InternalServerError_response_body result type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UserdatasUpdateUserdataRequestBody":{"title":"UserdatasUpdateUserdataRequestBody","type":"object","properties":{"avatar_image":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/definitions/UserImageUploadPayloadRequestBody"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"UserdatasUpdateUserdataResponseBody":{"title":"UserdatasUpdateUserdataResponseBody","type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicketResponseBody":{"title":"VerifiedTicketResponseBody","type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"is_verified":{"type":"boolean","example":true},"message":{"type":"string","example":"Animi delectus assumenda adipisci."},"missing_keys":{"type":"array","items":{"type":"string","example":"Minima officia incidunt sequi sit."},"example":["Aut vel tempora voluptas ut minima.","Dolor est."]},"reconstructed_file_hash":{"type":"string","example":"SW52ZW50b3JlIG5lcXVlIHF1aWJ1c2RhbS4=","format":"byte"},"ticket_type":{"type":"string","example":"Voluptatum dolorum tempora."},"tx_id":{"type":"string","example":"Deleniti hic quibusdam omnis distinctio ut consequatur."}},"example":{"is_reconstruction_required":true,"is_verified":false,"message":"Dolorem aliquid dolorem neque.","missing_keys":["Est itaque in numquam.","Assumenda autem qui minima.","Aut quasi magni."],"reconstructed_file_hash":"T21uaXMgbm9uIGF1dC4=","ticket_type":"Voluptate ea voluptas autem.","tx_id":"Commodi tenetur veniam repellat."}}},"securityDefinitions":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}} \ No newline at end of file diff --git a/walletnode/api/gen/http/openapi.yaml b/walletnode/api/gen/http/openapi.yaml index e98f526c6..4507e5f35 100644 --- a/walletnode/api/gen/http/openapi.yaml +++ b/walletnode/api/gen/http/openapi.yaml @@ -940,15 +940,23 @@ paths: description: File ID returned by Download V2 API required: true type: string - maxLength: 8 - minLength: 8 + maxLength: 6 + minLength: 6 responses: "200": description: OK response. schema: - type: array - items: - $ref: '#/definitions/TaskHistoryResponse' + $ref: '#/definitions/CascadeGetDownloadTaskStateResponseBody' + required: + - total_volumes + - downloaded_volumes + - volumes_download_in_progress + - volumes_download_failed + - task_status + - details + - volumes_pending_download + - size_of_the_file_megabytes + - data_downloaded_megabytes "404": description: Not Found response. schema: @@ -1763,31 +1771,31 @@ definitions: activation_attempt_at: type: string description: Activation Attempt At in datetime format - example: "1994-08-24T10:47:19Z" + example: "2000-12-04T21:27:04Z" format: date-time error_message: type: string description: Error Message - example: Sequi similique delectus. + example: Omnis animi aut dolor ad. file_id: type: string description: File ID - example: Excepturi inventore quia beatae sint. + example: Temporibus sapiente ipsam modi est. id: type: integer description: ID - example: 3778441935395154647 + example: 882096087151031760 format: int64 is_successful: type: boolean description: Indicates if the activation was successful example: false example: - activation_attempt_at: "1980-04-13T23:50:31Z" - error_message: Omnis enim quaerat sint temporibus sapiente. - file_id: Odio commodi autem ullam sunt. - id: 1568822808774503567 - is_successful: true + activation_attempt_at: "1972-07-03T07:30:03Z" + error_message: Voluptas aliquam enim ut. + file_id: Et nam. + id: 6874041490504784698 + is_successful: false required: - id - file_id @@ -1799,34 +1807,34 @@ definitions: drawings: type: number description: drawings nsfw score - example: 0.7990714 + example: 0.8939323 format: float hentai: type: number description: hentai nsfw score - example: 0.54859966 + example: 0.9720343 format: float neutral: type: number description: neutral nsfw score - example: 0.7412531 + example: 0.57417005 format: float porn: type: number description: porn nsfw score - example: 0.9034763 + example: 0.9754997 format: float sexy: type: number description: sexy nsfw score - example: 0.69847727 + example: 0.05291324 format: float example: - drawings: 0.15022062 - hentai: 0.7648291 - neutral: 0.7316899 - porn: 0.8834867 - sexy: 0.7595724 + drawings: 0.61916524 + hentai: 0.92094827 + neutral: 0.23022017 + porn: 0.11588287 + sexy: 0.66029817 CascadeDownloadInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -1850,7 +1858,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -1893,7 +1901,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -1905,7 +1913,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -1920,9 +1928,9 @@ definitions: file_id: type: string description: File path - example: Ut ea rerum deleniti quae natus. + example: Nobis corrupti laborum neque amet eum nisi. example: - file_id: Explicabo vel praesentium similique. + file_id: Odio voluptatem. required: - file_id CascadeDownloadUnAuthorizedResponseBody: @@ -1948,19 +1956,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: download_UnAuthorized_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -2002,8 +2010,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -2018,7 +2026,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2038,10 +2046,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: downloadV2_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -2061,9 +2069,9 @@ definitions: file_id: type: string description: Task ID for the download task - caller can check the status of the download task using this task_id - example: Voluptas vel vel dicta harum ex quas. + example: Eos voluptate. example: - file_id: Accusamus numquam. + file_id: Eaque molestiae sunt explicabo deserunt ducimus voluptate. required: - file_id CascadeDownloadV2UnAuthorizedResponseBody: @@ -2089,14 +2097,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: downloadV2_UnAuthorized_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -2116,7 +2124,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2132,19 +2140,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getDownloadTaskState_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -2159,7 +2167,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2182,11 +2190,11 @@ definitions: example: false description: getDownloadTaskState_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -2195,6 +2203,83 @@ definitions: - temporary - timeout - fault + CascadeGetDownloadTaskStateResponseBody: + title: CascadeGetDownloadTaskStateResponseBody + type: object + properties: + data_downloaded_megabytes: + type: integer + description: data downloaded in megabytes so far + example: 1 + format: int64 + details: + $ref: '#/definitions/DetailsResponseBody' + downloaded_volumes: + type: integer + description: Number of volumes successfully downloaded + example: 1 + format: int64 + message: + type: string + description: message string (if any) + example: Balance less than maximum fee provied in the request, could not gather enough confirmations... + size_of_the_file_megabytes: + type: integer + description: size of the file in megabytes + example: 1 + format: int64 + task_status: + type: string + description: Status of the operation + example: In Progress + enum: + - Completed + - Failed + - In Progress + total_volumes: + type: integer + description: Total Volumes + example: 1 + format: int64 + volumes_download_failed: + type: integer + description: Number of volumes failed to download + example: 1 + format: int64 + volumes_download_in_progress: + type: integer + description: Number of volumes currently being downloaded + example: 1 + format: int64 + volumes_pending_download: + type: integer + description: Number of volumes awaiting schedule + example: 1 + format: int64 + example: + data_downloaded_megabytes: 1 + details: + fields: + Quisquam non.: Voluptates qui aliquid sit atque inventore illo. + message: Image has been downloaded... + downloaded_volumes: 1 + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + size_of_the_file_megabytes: 1 + task_status: In Progress + total_volumes: 1 + volumes_download_failed: 1 + volumes_download_in_progress: 1 + volumes_pending_download: 1 + required: + - total_volumes + - downloaded_volumes + - volumes_download_in_progress + - volumes_download_failed + - task_status + - details + - volumes_pending_download + - size_of_the_file_megabytes + - data_downloaded_megabytes CascadeGetTaskHistoryInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -2222,15 +2307,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getTaskHistory_InternalServerError_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -2245,7 +2330,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2265,14 +2350,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getTaskHistory_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -2288,7 +2373,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2304,7 +2389,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -2315,7 +2400,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -2354,12 +2439,12 @@ definitions: example: false description: registerTaskState_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -2424,6 +2509,8 @@ definitions: - Error Not Enough Downloaded Filed - Error Download Failed - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch - Task Failed - Task Rejected - Task Completed @@ -2440,7 +2527,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2468,7 +2555,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -2483,7 +2570,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2503,15 +2590,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: registrationDetails_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -2530,272 +2617,440 @@ definitions: description: List of files example: - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. description: RegistrationDetailsResponseBody result type (default view) example: files: - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. required: - files CascadeRegistrationDetailsUnAuthorizedResponseBody: @@ -2805,7 +3060,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2828,12 +3083,12 @@ definitions: example: true description: registrationDetails_UnAuthorized_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -2848,7 +3103,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2864,18 +3119,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: restore_BadRequest_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -2891,7 +3146,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -2963,41 +3218,41 @@ definitions: activated_volumes: type: integer description: Total volumes that are activated - example: 2179505416296102007 + example: 8628766991430506722 format: int64 registered_volumes: type: integer description: Total registered volumes - example: 6597285476160611200 + example: 5649605762979780077 format: int64 total_volumes: type: integer description: Total volumes of selected file - example: 7119702643343716727 + example: 7332727558518661660 format: int64 volumes_activated_in_recovery_flow: type: integer description: Total volumes that are activated in restore process - example: 2688818931699507667 + example: 8763859589063613815 format: int64 volumes_registration_in_progress: type: integer description: Total volumes with in-progress registration - example: 1071003580025551546 + example: 1147320522073624158 format: int64 volumes_with_pending_registration: type: integer description: Total volumes with pending registration - example: 1809131097697126008 + example: 7994585038836475833 format: int64 description: RestoreResponseBody result type (default view) example: - activated_volumes: 6197761208295789992 - registered_volumes: 8577705285909327427 - total_volumes: 8346182040873375707 - volumes_activated_in_recovery_flow: 451603711559925012 - volumes_registration_in_progress: 6021041156532863970 - volumes_with_pending_registration: 9023197240308074166 + activated_volumes: 7907423001162063504 + registered_volumes: 8354612647535609718 + total_volumes: 5970296144547881201 + volumes_activated_in_recovery_flow: 7800238495149529790 + volumes_registration_in_progress: 8764773822712906019 + volumes_with_pending_registration: 1700047927483674020 required: - total_volumes - registered_volumes @@ -3078,12 +3333,12 @@ definitions: example: true description: startProcessing_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -3114,7 +3369,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -3125,7 +3380,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -3155,7 +3410,7 @@ definitions: type: array items: type: string - example: Nam ullam quia repellendus cupiditate. + example: Explicabo vel praesentium similique. description: List of Burn transaction IDs for multi-volume registration example: - 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 @@ -3202,7 +3457,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3222,7 +3477,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: startProcessing_UnAuthorized_response_body result type (default view) example: fault: true @@ -3261,14 +3516,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: uploadAsset_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -3311,7 +3566,7 @@ definitions: example: false description: uploadAsset_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -3332,34 +3587,23 @@ definitions: type: string description: File to upload example: - - 69 - - 115 + - 85 - 116 - 32 - - 114 - - 101 - - 114 - - 117 - - 109 - - 32 - - 115 - 97 - - 101 - - 112 - - 101 - - 32 - - 99 - - 111 - - 110 - 115 + - 112 - 101 - - 113 - - 117 - - 117 + - 114 - 110 + - 97 - 116 - 117 - 114 + - 32 + - 97 + - 32 + - 97 - 46 format: byte filename: @@ -3374,53 +3618,47 @@ definitions: format: int64 example: file: - - 67 - - 111 - - 109 - - 109 + - 81 + - 117 + - 105 + - 97 + - 32 - 111 - - 100 + - 102 + - 102 + - 105 + - 99 - 105 + - 97 - 32 - - 113 - - 117 + - 112 + - 101 + - 114 + - 102 + - 101 + - 114 + - 101 + - 110 + - 100 - 105 - - 98 - - 117 - 115 - - 100 + - 32 + - 115 - 97 - - 109 + - 101 + - 112 + - 101 - 32 - - 118 - - 111 - 108 + - 97 - 117 - - 112 - - 116 + - 100 - 97 + - 110 - 116 - - 101 - - 109 - - 32 - - 113 - - 117 - - 97 - - 109 - - 32 - 105 - - 116 - - 97 - - 113 - 117 - - 101 - - 32 - - 108 - - 105 - - 98 - - 101 - - 114 - - 111 + - 109 - 46 required: - file @@ -3470,7 +3708,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3529,18 +3767,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: uploadAssetV2_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -3557,35 +3795,34 @@ definitions: type: string description: File to upload example: - - 83 + - 86 + - 111 + - 108 + - 117 + - 112 + - 116 - 97 + - 116 + - 101 + - 109 + - 32 - 112 - - 105 + - 108 + - 97 + - 99 - 101 - - 110 + - 97 - 116 - - 101 - 32 - - 111 - 109 - - 110 - - 105 - - 115 - - 32 - 111 - - 109 - - 110 - - 105 + - 108 + - 101 - 115 - - 32 - - 99 - - 111 - - 114 - - 114 - - 117 - - 112 - 116 - 105 + - 97 + - 101 - 46 format: byte filename: @@ -3600,22 +3837,48 @@ definitions: format: int64 example: file: - - 69 + - 86 + - 101 + - 114 + - 105 + - 116 + - 97 - 116 + - 105 + - 115 - 32 - - 100 - - 111 - - 108 + - 99 - 111 - - 114 + - 110 + - 115 - 101 + - 113 + - 117 + - 97 + - 116 + - 117 + - 114 + - 32 + - 111 + - 100 + - 105 + - 116 - 32 + - 97 - 100 + - 32 + - 115 - 111 - 108 - - 111 - - 114 - - 101 + - 117 + - 116 + - 97 + - 32 + - 113 + - 117 + - 97 + - 115 + - 105 - 46 required: - file @@ -3633,13 +3896,12 @@ definitions: type: array items: type: number - example: 0.366335541724773 + example: 0.9281737994080741 format: double description: The amounts that's required to be preburned - one per transaction example: - - 0.07989768565530223 - - 0.9643054195750016 - - 0.026381384166493292 + - 0.7880585479847904 + - 0.51914174366952 total_estimated_fee: type: number description: Estimated fee @@ -3651,9 +3913,9 @@ definitions: example: file_id: VK7mpAqZ required_preburn_transaction_amounts: - - 0.640392446585282 - - 0.9646679397509296 - - 0.7193760763377638 + - 0.41407595589152374 + - 0.9916639926323655 + - 0.4195595461761546 total_estimated_fee: 100 required: - file_id @@ -3665,38 +3927,38 @@ definitions: block: type: integer description: Block - example: 875709855 + example: 506177416 format: int32 end_index: type: integer description: End index - example: 5122269723773644481 + example: 2966080710066937075 format: int64 file_hash: type: string description: File hash - example: Non itaque. + example: Voluptatem error corporis dolorem. merkelroot: type: string description: Merkelroot - example: Suscipit eius officia illo provident fuga minima. + example: Corrupti at. start_index: type: integer description: Start index - example: 6542642547904299742 + example: 473168692954412836 format: int64 timestamp: type: string description: Timestamp - example: Nihil deserunt. + example: Dolorem laudantium. description: Data of challenge example: - block: 1779406359 - end_index: 1866814163046970754 - file_hash: Quibusdam molestiae consequatur. - merkelroot: Voluptatem omnis quidem veritatis. - start_index: 1597917383536378215 - timestamp: A adipisci. + block: 1711325536 + end_index: 2736341589909805290 + file_hash: Qui facere id. + merkelroot: Et sed consequuntur maiores consequuntur. + start_index: 7883016745563559198 + timestamp: Atque aut dicta dolores rerum aut. required: - timestamp - file_hash @@ -3709,27 +3971,27 @@ definitions: health_check_challenge_score: type: number description: Total accumulated HC challenge score - example: 0.12859021407559276 + example: 0.9472164228855582 format: double ip_address: type: string description: IPAddress of the node - example: Odio et sit mollitia. + example: Natus voluptatem sed totam aut iste. node_id: type: string description: Specific node id - example: Maxime ex in. + example: Non rerum ut voluptas enim. storage_challenge_score: type: number description: Total accumulated SC challenge score - example: 0.1891036046680823 + example: 0.35208285635880676 format: double description: Combined accumulated scores for HC and SC challenges example: - health_check_challenge_score: 0.2958604036605215 - ip_address: Et ut. - node_id: Veritatis voluptatem. - storage_challenge_score: 0.9764465239514757 + health_check_challenge_score: 0.9613009814342558 + ip_address: Facilis mollitia ipsa eligendi dolor. + node_id: Dignissimos vitae quia. + storage_challenge_score: 0.7377859910979474 required: - node_id - storage_challenge_score @@ -3761,15 +4023,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getTaskHistory_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -3784,7 +4046,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3800,7 +4062,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -3812,7 +4074,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -3854,7 +4116,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -3870,7 +4132,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3890,15 +4152,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: registerCollection_InternalServerError_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -3913,7 +4175,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -3929,7 +4191,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -3941,7 +4203,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -3988,7 +4250,7 @@ definitions: type: array items: type: string - example: Voluptatem ut. + example: Fugiat aliquam maxime enim sequi iure commodi. description: list of authorized contributors example: - apple @@ -4112,8 +4374,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -4144,7 +4406,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -4171,7 +4433,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4187,18 +4449,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: registerTaskState_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -4264,6 +4526,8 @@ definitions: - Error Not Enough Downloaded Filed - Error Download Failed - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch - Task Failed - Task Rejected - Task Completed @@ -4281,7 +4545,28 @@ definitions: type: object description: important fields regarding status history example: - Perferendis saepe laudantium fugit est laborum fugiat.: Inventore doloribus voluptates provident odio. + Harum ex quas molestias accusamus.: Quidem nobis enim quis officia blanditiis aliquid. + Ipsa dolores cupiditate.: Enim voluptas vel vel. + additionalProperties: true + message: + type: string + description: details regarding the status + example: Image has been downloaded... + example: + fields: + Delectus dolorem consequatur neque cumque temporibus.: Cupiditate inventore rem. + Eaque deleniti.: Sequi et. + Numquam rerum aut consequatur molestias blanditiis sint.: Porro et dolorem quas. + message: Image has been downloaded... + DetailsResponseBody: + title: DetailsResponseBody + type: object + properties: + fields: + type: object + description: important fields regarding status history + example: + Qui nisi.: Suscipit non amet voluptatem commodi aut. additionalProperties: true message: type: string @@ -4289,8 +4574,7 @@ definitions: example: Image has been downloaded... example: fields: - Nam doloribus suscipit.: Laboriosam vel dolor. - Qui voluptatem placeat.: Temporibus veritatis consequatur odit ad soluta. + Optio pariatur labore neque inventore.: Laudantium facere eveniet molestiae rerum. message: Image has been downloaded... EvaluationDataResponse: title: EvaluationDataResponse @@ -4299,12 +4583,12 @@ definitions: block: type: integer description: Block - example: 492103627 + example: 269806825 format: int32 hash: type: string description: Hash - example: Est facere ipsam. + example: Rerum error architecto commodi possimus ab sint. is_verified: type: boolean description: IsVerified @@ -4312,18 +4596,18 @@ definitions: merkelroot: type: string description: Merkelroot - example: Sed in voluptatum sint. + example: Incidunt autem et enim corporis. timestamp: type: string description: Timestamp - example: Consequuntur vel maxime culpa quis provident. + example: Atque est sit neque voluptatem. description: Data of evaluation example: - block: 1898436385 - hash: Molestias modi autem non. + block: 669584547 + hash: Et dolor totam fugiat eaque nihil et. is_verified: false - merkelroot: Quo officiis itaque. - timestamp: Sit est soluta dolorem. + merkelroot: Voluptates dolores ut doloremque. + timestamp: Vitae ut illum fugiat quidem necessitatibus unde. required: - timestamp - hash @@ -4337,55 +4621,75 @@ definitions: example: - 81 - 117 + - 97 + - 115 - 105 - 32 - - 99 + - 100 - 117 - - 112 + - 99 - 105 + - 109 + - 117 + - 115 + - 32 - 100 + - 111 + - 108 + - 111 + - 114 + - 101 + - 109 + - 113 + - 117 + - 101 + - 32 + - 102 + - 117 + - 103 - 105 + - 97 - 116 + - 32 - 97 + - 117 - 116 - - 101 - 32 - 101 - - 110 - - 105 - - 109 - - 32 - - 105 - 115 - 116 - - 101 - 46 format: byte missing_keys: type: array items: type: string - example: Rerum facilis mollitia ipsa eligendi. + example: Quasi quibusdam nisi molestiae. example: - - Aliquam nisi fugiat quisquam quasi quia odit. - - Rerum omnis nostrum ipsa maxime. - - Porro deleniti dolores ipsum impedit. - - Nisi nisi qui. + - Voluptatum est. + - Sint cum nisi ea. + - Minima sed amet maiores. + - Ratione omnis autem nihil voluptatem tempora. recipient: type: string - example: Eaque possimus sint sequi. + example: Officia quidem in. ticket_type: type: string - example: Aut iste voluptas recusandae est dignissimos vitae. + example: Ut sit dolores. tx_id: type: string - example: Voluptas enim qui natus voluptatem sed. + example: Voluptatem repellat minima culpa. example: data_hash: - - 79 - - 100 - - 105 + - 69 + - 111 + - 115 + - 32 + - 97 + - 117 - 116 + - 101 + - 109 - 32 - 100 - 111 @@ -4398,21 +4702,41 @@ definitions: - 117 - 101 - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 101 + - 109 + - 32 - 115 + - 97 + - 112 + - 105 + - 101 + - 110 - 116 + - 101 - 32 - - 113 - - 117 - 105 - - 115 + - 110 + - 118 + - 101 + - 110 + - 116 + - 111 + - 114 + - 101 - 46 missing_keys: - - Aut consequatur impedit quo. - - Voluptas doloribus sint repellendus. - recipient: Dolorum soluta esse. - ticket_type: Commodi earum facere aut sint unde hic. - tx_id: Et totam ipsa. + - Et quae. + - Temporibus veritatis fuga omnis consequatur. + - Quaerat adipisci nihil. + - Nesciunt tenetur dolorem veniam ducimus repellendus. + recipient: Molestias magnam voluptatem ex veritatis autem. + ticket_type: Rerum unde et distinctio. + tx_id: Et similique voluptatem ut corporis temporibus. FileResponseBody: title: FileResponseBody type: object @@ -4423,49 +4747,49 @@ definitions: $ref: '#/definitions/ActivationAttemptResponseBody' description: List of activation attempts example: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true activation_txid: type: string description: Activation Transaction ID - example: Est et. + example: Tenetur commodi. base_file_id: type: string description: Base File ID - example: Sunt explicabo deserunt ducimus. + example: Error officia ratione voluptatem quae porro facilis. burn_txn_id: type: string description: Burn Transaction ID - example: Est occaecati. + example: Nobis eaque labore minus ullam recusandae. cascade_metadata_ticket_id: type: string description: Cascade Metadata Ticket ID - example: A recusandae iste qui nisi dolore. + example: Facere et aut velit ut. done_block: type: integer description: Done Block - example: 2693504273438558162 + example: 3815861893461964230 format: int64 file_id: type: string description: File ID - example: Neque cumque temporibus nihil cupiditate. + example: Est ipsam provident. file_index: type: string description: Index of the file - example: Voluptate ea eaque. + example: Quia possimus delectus. hash_of_original_big_file: type: string description: Hash of the Original Big File - example: Pariatur labore neque inventore. + example: Dolor nisi debitis aut odio et omnis. is_concluded: type: boolean description: Indicates if the process is concluded @@ -4473,126 +4797,140 @@ definitions: name_of_original_big_file_with_ext: type: string description: Name of the Original Big File with Extension - example: Laudantium facere eveniet molestiae rerum. + example: Rerum libero et quis. reg_txid: type: string description: Registration Transaction ID - example: Accusantium quidem. + example: A voluptatibus temporibus. registration_attempts: type: array items: $ref: '#/definitions/RegistrationAttemptResponseBody' description: List of registration attempts example: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" req_amount: type: number description: Required Amount - example: 0.8930021225471915 + example: 0.7462762770790603 format: double req_burn_txn_amount: type: number description: Required Burn Transaction Amount - example: 0.45409536176152293 + example: 0.46504190836524634 format: double size_of_original_big_file: type: number description: Size of the Original Big File - example: 0.22020594122264722 + example: 0.35639967818515916 format: double start_block: type: integer description: Start Block - example: 515011423 + example: 166397156 format: int32 task_id: type: string description: Task ID - example: Saepe ipsum harum voluptas. + example: Quia dolor error facilis reprehenderit. upload_timestamp: type: string description: Upload Timestamp in datetime format - example: "1998-09-22T13:33:43Z" + example: "1989-02-19T21:22:27Z" format: date-time uuid_key: type: string description: UUID Key - example: Non amet voluptatem commodi aut id in. + example: Mollitia voluptatem placeat modi quis necessitatibus. example: activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Asperiores vel maiores autem similique quidem dolorum. - base_file_id: Molestiae exercitationem expedita excepturi ut. - burn_txn_id: Nostrum et non deserunt atque. - cascade_metadata_ticket_id: Quam quae quo magnam dolores possimus voluptas. - done_block: 8868352654748958460 - file_id: Est quia adipisci impedit aut est. - file_index: Distinctio id et nam commodi laboriosam asperiores. - hash_of_original_big_file: Neque ut rem exercitationem distinctio quis. + activation_txid: Debitis itaque neque veniam. + base_file_id: Impedit possimus voluptas. + burn_txn_id: Nam quos blanditiis nam. + cascade_metadata_ticket_id: Fugiat impedit aut. + done_block: 6773991293641065998 + file_id: Ut rem exercitationem distinctio quis similique. + file_index: Delectus perferendis ipsa assumenda ut. + hash_of_original_big_file: Quae eum dolore exercitationem et. is_concluded: true - name_of_original_big_file_with_ext: Quia quas. - reg_txid: Consequatur voluptatum magni suscipit. + name_of_original_big_file_with_ext: Sit ea sed omnis. + reg_txid: Velit iste autem autem voluptatibus. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.27763473389923016 - req_burn_txn_amount: 0.6119857638900763 - size_of_original_big_file: 0.10082508271893759 - start_block: 615727266 - task_id: Alias error unde recusandae cum nihil accusantium. - upload_timestamp: "2015-07-05T12:51:38Z" - uuid_key: Enim ut. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.23426044165222878 + req_burn_txn_amount: 0.059445307339604805 + size_of_original_big_file: 0.337245704856618 + start_block: 68949039 + task_id: Tenetur et. + upload_timestamp: "1975-07-16T00:58:20Z" + uuid_key: Deleniti perspiciatis voluptatem ut. required: - file_id - task_id @@ -4613,7 +4951,7 @@ definitions: field_type: type: string description: Field that is matched - example: descr + example: creator_name enum: - creator_name - art_title @@ -4624,30 +4962,31 @@ definitions: type: array items: type: integer - example: 1297848066207075025 + example: 470580182469708437 format: int64 description: The indexes of matched characters. Useful for highlighting matches example: - - 4944821981227295978 - - 7696049836370677537 + - 5920034399636110320 + - 6125114305920374162 + - 5332111026020366249 + - 9194539609994487904 score: type: integer description: Score used to rank matches - example: 3540831787478733547 + example: 1872572559723942530 format: int64 str: type: string description: String that is matched - example: Aliquam dolores qui. + example: Fugit error in quis ipsam esse. example: - field_type: art_title + field_type: series matched_indexes: - - 5781461325567943992 - - 7778000128542107932 - - 393922963514480715 - - 7666036538901003714 - score: 2350702824716827735 - str: Cumque incidunt. + - 605596471779296576 + - 4601653429806057317 + - 4227664647727049516 + score: 700001607825622134 + str: Officia consequuntur sed laboriosam. HCChallengeDataResponse: title: HCChallengeDataResponse type: object @@ -4655,21 +4994,21 @@ definitions: block: type: integer description: Block - example: 1182365695 + example: 943128093 format: int32 merkelroot: type: string description: Merkelroot - example: Iste molestias ut fugiat aliquam. + example: Impedit rerum quia. timestamp: type: string description: Timestamp - example: Enim sequi iure commodi. + example: Possimus quas. description: Data of challenge example: - block: 1901942244 - merkelroot: Aut earum. - timestamp: Alias voluptatibus incidunt. + block: 95110118 + merkelroot: Amet voluptatem est cum molestiae deserunt. + timestamp: Id illum magnam qui ab quia sint. required: - timestamp HCEvaluationDataResponse: @@ -4679,26 +5018,26 @@ definitions: block: type: integer description: Block - example: 197096783 + example: 783252388 format: int32 is_verified: type: boolean description: IsVerified - example: true + example: false merkelroot: type: string description: Merkelroot - example: Optio assumenda. + example: Eum odio delectus eos. timestamp: type: string description: Timestamp - example: Dolores nihil et voluptatibus et. + example: Rerum voluptatibus molestiae. description: Data of evaluation example: - block: 769361874 + block: 1667980720 is_verified: true - merkelroot: Cupiditate laboriosam quo. - timestamp: Sunt excepturi beatae. + merkelroot: Dicta perferendis blanditiis ipsum. + timestamp: Soluta odio error eos. required: - timestamp - is_verified @@ -4709,7 +5048,7 @@ definitions: block: type: integer description: Block - example: 1059087820 + example: 170141757 format: int32 is_challenge_timestamp_ok: type: boolean @@ -4718,11 +5057,11 @@ definitions: is_challenger_signature_ok: type: boolean description: IsChallengerSignatureOK - example: true + example: false is_evaluation_result_ok: type: boolean description: IsEvaluationResultOK - example: false + example: true is_evaluation_timestamp_ok: type: boolean description: IsEvaluationTimestampOK @@ -4730,31 +5069,31 @@ definitions: is_process_timestamp_ok: type: boolean description: IsProcessTimestampOK - example: true + example: false is_recipient_signature_ok: type: boolean description: IsRecipientSignatureOK - example: true + example: false merkelroot: type: string description: Merkelroot - example: Id sed voluptatem illum dolorum ad. + example: Ea cum dolores reiciendis nisi qui atque. timestamp: type: string description: Timestamp - example: Voluptas officiis dolorum accusantium. + example: Nobis facilis et ut iure facilis ipsam. description: Data of Observer's evaluation example: - block: 918637735 - is_challenge_timestamp_ok: false + block: 961210277 + is_challenge_timestamp_ok: true is_challenger_signature_ok: true is_evaluation_result_ok: true is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Rerum quia rem possimus quas ut enim. - timestamp: Id illum magnam qui ab quia sint. - required: + is_process_timestamp_ok: true + is_recipient_signature_ok: false + merkelroot: Animi animi et rerum a. + timestamp: Commodi saepe non nobis iure accusamus quod. + required: - timestamp - is_challenge_timestamp_ok - is_process_timestamp_ok @@ -4769,21 +5108,21 @@ definitions: block: type: integer description: Block - example: 364084968 + example: 310072745 format: int32 merkelroot: type: string description: Merkelroot - example: Sed itaque aspernatur. + example: Quisquam quo esse sed veritatis sunt. timestamp: type: string description: Timestamp - example: Reiciendis iste rerum. + example: Voluptatem laboriosam doloremque qui. description: Data of response example: - block: 711181662 - merkelroot: Nihil voluptates et dolores necessitatibus. - timestamp: Fugit in quasi in nam nulla voluptatum. + block: 147091750 + merkelroot: Sit nesciunt et hic et est maxime. + timestamp: Est libero. required: - timestamp HCSummaryStatsResponseBody: @@ -4793,47 +5132,47 @@ definitions: no_of_invalid_evaluation_observed_by_observers: type: integer description: challenges failed due to invalid evaluation evaluated by observers - example: 4604695734958777723 + example: 8774560265228951533 format: int64 no_of_invalid_signatures_observed_by_observers: type: integer description: challenges failed due to invalid signatures evaluated by observers - example: 7485695140201372489 + example: 1578393658057566138 format: int64 no_of_slow_responses_observed_by_observers: type: integer description: challenges failed due to slow-responses evaluated by observers - example: 1632022695562066844 + example: 1563733030605382049 format: int64 total_challenges_evaluated_by_challenger: type: integer description: Total number of challenges evaluated by the challenger node - example: 674107399872224815 + example: 1232157085605424270 format: int64 total_challenges_issued: type: integer description: Total number of challenges issued - example: 6914397698957621249 + example: 8042722551110325413 format: int64 total_challenges_processed_by_recipient: type: integer description: Total number of challenges processed by the recipient node - example: 4629615492889085672 + example: 6318346467007171400 format: int64 total_challenges_verified: type: integer description: Total number of challenges verified by observers - example: 3352956423211727314 + example: 1757677700899581447 format: int64 description: HealthCheck-Challenge SummaryStats example: - no_of_invalid_evaluation_observed_by_observers: 5649605762979780077 - no_of_invalid_signatures_observed_by_observers: 7332727558518661660 - no_of_slow_responses_observed_by_observers: 3131725833324719182 - total_challenges_evaluated_by_challenger: 1436962756631232283 - total_challenges_issued: 3528725344947929638 - total_challenges_processed_by_recipient: 1010277493024632963 - total_challenges_verified: 3169339276919008696 + no_of_invalid_evaluation_observed_by_observers: 3054501981678493369 + no_of_invalid_signatures_observed_by_observers: 7451310699276511732 + no_of_slow_responses_observed_by_observers: 5865757257444309168 + total_challenges_evaluated_by_challenger: 1400780750413163796 + total_challenges_issued: 6087915999507438889 + total_challenges_processed_by_recipient: 1489368480355944811 + total_challenges_verified: 559668252736766364 required: - total_challenges_issued - total_challenges_processed_by_recipient @@ -4851,77 +5190,80 @@ definitions: challenge_id: type: string description: ID of the challenge - example: Odit molestiae incidunt quod. + example: Est esse cupiditate laboriosam quo voluptatem. challenger_evaluation: $ref: '#/definitions/HCEvaluationDataResponse' challenger_id: type: string description: ID of the challenger - example: Voluptatem aut neque et. + example: Officiis dolorum. message_type: type: string description: type of the message - example: Sed maiores. + example: Excepturi beatae et. observer_evaluation: $ref: '#/definitions/HCObserverEvaluationDataResponse' observers: type: array items: type: string - example: Dolore eveniet cum. + example: Et in eligendi ut voluptate vel. description: List of observer IDs example: - - Aut voluptate laudantium cumque eum. - - Et velit delectus. + - Itaque distinctio. + - Vitae neque. + - Explicabo laudantium numquam. + - Ea facilis aut blanditiis. recipient_id: type: string description: ID of the recipient - example: Debitis ut quis beatae. + example: Animi impedit. response: $ref: '#/definitions/HCResponseDataResponse' sender_id: type: string description: ID of the sender's node - example: Quia molestias fugiat. + example: Voluptatum id sed voluptatem illum dolorum. sender_signature: type: string description: signature of the sender - example: Rerum nisi ratione rerum temporibus blanditiis. + example: Consectetur impedit eaque nam odit dolor itaque. description: HealthCheck challenge message data (default view) example: challenge: - block: 161855103 - merkelroot: Occaecati in reiciendis quia repudiandae. - timestamp: Necessitatibus sed est sunt. - challenge_id: Et in eligendi ut voluptate vel. + block: 1740108809 + merkelroot: Et neque culpa explicabo dolore natus. + timestamp: Voluptatibus hic voluptas doloremque eligendi et magni. + challenge_id: Temporibus voluptatem impedit esse ut. challenger_evaluation: - block: 372559801 - is_verified: false - merkelroot: Impedit quis autem et et neque. - timestamp: Explicabo dolore. - challenger_id: Voluptates quisquam quo esse sed veritatis sunt. - message_type: Et itaque distinctio culpa vitae neque nihil. + block: 1664792371 + is_verified: true + merkelroot: Commodi repellat nihil qui dolores. + timestamp: Suscipit ipsum veniam debitis illum. + challenger_id: Veritatis eum fugiat. + message_type: Consectetur sint. observer_evaluation: - block: 1881554591 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: false + block: 325896074 + is_challenge_timestamp_ok: true + is_challenger_signature_ok: true is_evaluation_result_ok: false is_evaluation_timestamp_ok: true - is_process_timestamp_ok: false + is_process_timestamp_ok: true is_recipient_signature_ok: true - merkelroot: Hic voluptas doloremque eligendi et magni. - timestamp: Perspiciatis earum. + merkelroot: Qui laudantium et nihil libero aut delectus. + timestamp: Id dignissimos qui quaerat. observers: - - Laboriosam doloremque qui et. - - Sit nesciunt et hic et est maxime. - - Est libero. - recipient_id: Sequi eum odio delectus eos officiis. + - Culpa aliquam ad veritatis consequuntur fugiat. + - Officia recusandae fugiat aut. + - Et vitae sit. + - Est id et nihil. + recipient_id: Possimus exercitationem. response: - block: 1874672230 - merkelroot: Voluptate ipsa et ut dicta temporibus ut. - timestamp: Deserunt mollitia est a labore. - sender_id: Laudantium numquam ut ea facilis aut blanditiis. - sender_signature: Animi impedit. + block: 1763433739 + merkelroot: Molestiae voluptas ut. + timestamp: Eaque perspiciatis earum a deserunt consectetur placeat. + sender_id: Aspernatur aut repudiandae repudiandae qui. + sender_signature: Voluptatibus id incidunt. required: - challenge_id - message_type @@ -4936,7 +5278,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4959,12 +5301,12 @@ definitions: example: true description: getDetailedLogs_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -4979,7 +5321,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -4995,19 +5337,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getDetailedLogs_InternalServerError_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -5022,7 +5364,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -5045,7 +5387,7 @@ definitions: example: true description: getDetailedLogs_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -5085,15 +5427,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getDetailedLogs_Unauthorized_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -5128,15 +5470,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getSummaryStats_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -5151,7 +5493,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -5167,7 +5509,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -5179,7 +5521,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -5214,10 +5556,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getSummaryStats_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -5239,13 +5581,13 @@ definitions: description: GetSummaryStatsResponseBody result type (default view) example: hc_summary_stats: - no_of_invalid_evaluation_observed_by_observers: 17085067897739032 - no_of_invalid_signatures_observed_by_observers: 1070531802164886396 - no_of_slow_responses_observed_by_observers: 2452954398688763778 - total_challenges_evaluated_by_challenger: 1497037936453433297 - total_challenges_issued: 5146044089880070113 - total_challenges_processed_by_recipient: 5356106859537814149 - total_challenges_verified: 5844922895958038468 + no_of_invalid_evaluation_observed_by_observers: 5298572403287664370 + no_of_invalid_signatures_observed_by_observers: 3383689589076681506 + no_of_slow_responses_observed_by_observers: 827764771293379553 + total_challenges_evaluated_by_challenger: 8246003579136272374 + total_challenges_issued: 8051655920216908082 + total_challenges_processed_by_recipient: 5129431480100159883 + total_challenges_verified: 6477018306295341268 required: - hc_summary_stats HealthCheckChallengeGetSummaryStatsUnauthorizedResponseBody: @@ -5275,15 +5617,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getSummaryStats_Unauthorized_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -5298,30 +5640,30 @@ definitions: alternative_rare_on_internet_dict_as_json_compressed_b64: type: string description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Non ea dicta ex consequatur consequatur. + example: Consectetur dolor porro enim in porro inventore. earliest_available_date_of_internet_results: type: string description: Earliest Available Date of Internet Results - example: Aut ducimus iure. + example: Perferendis magni dolores molestias iste ut. min_number_of_exact_matches_in_page: type: integer description: Minimum Number of Exact Matches on Page - example: 3655150683 + example: 3259510178 format: int32 rare_on_internet_graph_json_compressed_b64: type: string description: Base64 Compressed JSON of Rare On Internet Graph - example: Dolor eum vel. + example: Ut sint et occaecati. rare_on_internet_summary_table_as_json_compressed_b64: type: string description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Esse reiciendis tenetur iusto nihil sed. + example: Qui in officia. example: - alternative_rare_on_internet_dict_as_json_compressed_b64: Quis ea qui dolore esse quaerat. - earliest_available_date_of_internet_results: Est et quo necessitatibus fuga velit ipsum. - min_number_of_exact_matches_in_page: 3174641601 - rare_on_internet_graph_json_compressed_b64: Est quidem cumque consequuntur et debitis. - rare_on_internet_summary_table_as_json_compressed_b64: Commodi consequatur unde qui adipisci labore voluptate. + alternative_rare_on_internet_dict_as_json_compressed_b64: Sit et. + earliest_available_date_of_internet_results: Ad in rerum et voluptatem aspernatur. + min_number_of_exact_matches_in_page: 1529287164 + rare_on_internet_graph_json_compressed_b64: Voluptates ullam magnam nihil. + rare_on_internet_summary_table_as_json_compressed_b64: Minus quod dolor amet. MetricsGetDetailedLogsBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -5349,14 +5691,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getDetailedLogs_BadRequest_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -5399,8 +5741,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -5415,7 +5757,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -5431,19 +5773,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getDetailedLogs_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -5461,169 +5803,152 @@ definitions: $ref: '#/definitions/SelfHealingReportKVResponseBody' description: Map of challenge ID to SelfHealingReport example: - - event_id: Eum itaque totam dicta. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -5633,241 +5958,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -5877,241 +6196,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -6121,241 +6436,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 + - 112 - 101 - - 32 - - 112 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - 97 - 109 - 32 - - 105 - - 112 - - 115 - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -6365,243 +6674,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -6611,241 +6914,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 + - 86 + - 101 + - 114 + - 111 + - 32 - 110 - - 97 - - 109 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 - 117 - - 109 + - 116 - 32 + - 101 + - 120 + - 112 + - 101 + - 100 - 105 - 116 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - - 114 - - 111 - - 118 - 105 - 100 - - 101 - - 110 - - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 - 32 - 105 - 112 - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - 97 + - 32 - 113 - 117 - - 101 + - 105 - 32 - - 112 - - 114 - - 111 + - 101 - 118 - - 105 - - 100 - 101 - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - 105 - - 116 - 101 - - 99 - 116 - - 111 - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - 105 - - 115 + - 100 - 32 - 97 + - 99 + - 99 - 117 - - 116 - - 32 + - 115 - 97 - - 100 - - 105 - - 112 - - 105 + - 109 + - 117 - 115 - - 99 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 - - 32 - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 - - 97 - - 116 - - 105 + - 115 - 32 - 118 - 111 @@ -6855,241 +7152,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -7099,241 +7392,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -7343,490 +7630,478 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 + - 97 + - 99 + - 99 - 117 - - 112 - - 116 + - 115 - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 + - 114 - 105 + - 111 + - 114 - 101 - - 110 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 - 32 + - 105 - 115 + - 116 - 101 - - 113 - - 117 - - 105 - 32 - - 117 + - 114 + - 101 + - 112 + - 101 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -7836,241 +8111,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8080,241 +8351,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: + Ut culpa.: - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 111 + - 108 + - 108 - 105 - 116 + - 105 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8324,243 +8589,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 + - 115 + - 97 + - 110 + - 100 + - 97 - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8570,241 +8829,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 + - 79 + - 109 + - 110 + - 105 + - 115 - 32 + - 113 + - 117 + - 105 - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 + - 109 - 32 - - 100 - - 105 - - 99 - - 116 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8814,241 +9067,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 + - 86 + - 101 + - 114 + - 111 + - 32 - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 + - 104 - 105 - - 100 - - 101 - - 110 - - 116 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -9058,241 +9307,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 - 97 - - 98 - 32 - - 100 - - 117 + - 114 + - 101 - 99 - - 105 - - 109 - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - 97 - - 112 - - 105 - - 101 - 110 - - 116 + - 100 + - 97 - 101 - 32 - - 115 - - 101 - - 113 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 105 + - 109 - 32 - - 117 - - 108 - - 108 + - 97 + - 112 + - 101 + - 114 + - 105 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -9302,246 +9545,240 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -9551,241 +9788,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -9795,485 +10026,475 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 + - 114 - 105 + - 111 + - 114 - 101 - - 110 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 - 32 + - 105 - 115 + - 116 - 101 - - 113 - - 117 - - 105 - 32 - - 117 + - 114 + - 101 + - 112 + - 101 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -10283,243 +10504,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -10529,241 +10744,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: + Ut culpa.: - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 111 + - 108 + - 108 - 105 - 116 + - 105 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -10773,241 +10982,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 + - 115 + - 97 + - 110 + - 100 + - 97 - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -11017,241 +11222,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 + - 79 + - 109 + - 110 + - 105 + - 115 - 32 + - 113 + - 117 + - 105 - 100 - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 + - 109 - 32 - - 100 - - 105 - - 99 - - 116 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -11261,16126 +11460,10820 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 - - 101 - - 32 - 112 + - 101 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - example: - reports: - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - MetricsGetDetailedLogsUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getDetailedLogs_Unauthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getSummaryStats_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getSummaryStats_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getSummaryStats_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - MetricsGetSummaryStatsResponseBody: - title: 'Mediatype identifier: application/vnd.metrics.result; view=default' - type: object - properties: - self_healing_execution_events_stats: - $ref: '#/definitions/SHExecutionStatsResponseBody' - self_healing_trigger_events_stats: - type: array - items: - $ref: '#/definitions/SHTriggerStatsResponseBody' - description: Self-healing trigger stats - example: - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - description: GetSummaryStatsResponseBody result type (default view) - example: - self_healing_execution_events_stats: - total_file_healing_failed: 5551622164662787660 - total_files_healed: 8671724886982383594 - total_reconstruction_not_required_evaluations_approved: 3509617877318915873 - total_reconstruction_required_evaluations_approved: 2598935111695686044 - total_reconstruction_required_evaluations_not_approved: 645871039112296182 - total_reconstruction_required_hash_mismatch: 6198218032159021896 - total_reconstructions_not_required_evaluations_not_approved: 6224481363842689139 - total_self_healing_events_accepted: 5676342644268881237 - total_self_healing_events_acknowledged: 305624170386109632 - total_self_healing_events_evaluations_unverified: 1687102203985295374 - total_self_healing_events_evaluations_verified: 7201039114224972892 - total_self_healing_events_issued: 7624509276581647432 - total_self_healing_events_rejected: 8106553798825109777 - self_healing_trigger_events_stats: - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - required: - - self_healing_trigger_events_stats - - self_healing_execution_events_stats - MetricsGetSummaryStatsUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getSummaryStats_Unauthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileDetailInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFileDetail_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileDetailNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: ddServiceOutputFileDetail_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileDetailResponseBody: - title: NftDdServiceOutputFileDetailResponseBody - type: object - properties: - alternative_nsfw_scores: - $ref: '#/definitions/AlternativeNSFWScoresResponseBody' - candidate_image_thumbnail_webp_as_base64_string: - type: string - description: candidate image thumbnail as base64 string - example: Perspiciatis et accusantium fuga sit in. - child_probability: - type: number - description: child probability - example: 0.8271751 - format: float - collection_name_string: - type: string - description: name of the collection - example: Quis ex dolor eveniet provident. - cp_probability: - type: number - description: probability of CP - example: 0.9250763 - format: float - creator_name: - type: string - description: name of the creator - example: Alias non magni eum et. - creator_website: - type: string - description: website of creator - example: Recusandae et nulla et et. - creator_written_statement: - type: string - description: written statement of creator - example: At ipsum minima. - does_not_impact_the_following_collection_strings: - type: string - description: does not impact collection strings - example: Voluptatem est quisquam tenetur. - dupe_detection_system_version: - type: string - description: system version of dupe detection - example: Autem ea optio est voluptatem deserunt exercitationem. - file_type: - type: string - description: type of the file - example: Et sit et omnis non ad. - group_rareness_score: - type: number - description: rareness score of the group - example: 0.31847075 - format: float - hash_of_candidate_image_file: - type: string - description: hash of candidate image file - example: Distinctio eum. - image_file_path: - type: string - description: file path of the image - example: At sequi eaque. - image_fingerprint_of_candidate_image_file: - type: array - items: - type: number - example: 0.04346560909053385 - format: double - description: Image fingerprint of candidate image file - example: - - 0.8265343444104936 - - 0.9072128208585332 - - 0.20518572772379823 - internet_rareness: - $ref: '#/definitions/InternetRarenessResponseBody' - is_likely_dupe: - type: boolean - description: is this nft likely a duplicate - example: false - is_pastel_openapi_request: - type: boolean - description: is pastel open API request - example: false - is_rare_on_internet: - type: boolean - description: is this nft rare on the internet - example: false - max_permitted_open_nsfw_score: - type: number - description: max permitted open NSFW score - example: 0.562778188429247 - format: double - nft_creation_video_youtube_url: - type: string - description: nft creation video youtube url - example: In officia quia. - nft_keyword_set: - type: string - description: keywords for NFT - example: Sint et occaecati ad consectetur dolor. - nft_series_name: - type: string - description: series name of NFT - example: Reprehenderit soluta doloremque dolorum rerum dolor facere. - nft_title: - type: string - description: title of NFT - example: Aut voluptatem labore. - open_api_group_id_string: - type: string - description: open api group id string - example: Maiores aspernatur explicabo et nobis. - open_nsfw_score: - type: number - description: open nsfw score - example: 0.0067218044 - format: float - original_file_size_in_bytes: - type: integer - description: original file size in bytes - example: 1727768664143466560 - format: int64 - overall_rareness_score: - type: number - description: pastel rareness score - example: 0.06350944 - format: float - pastel_block_hash_when_request_submitted: - type: string - description: block hash when request submitted - example: Dolorum maxime corrupti magnam et et voluptatem. - pastel_block_height_when_request_submitted: - type: string - description: block Height when request submitted - example: Eligendi laboriosam dignissimos nihil explicabo laboriosam est. - pastel_id_of_registering_supernode_1: - type: string - description: pastel id of registering SN1 - example: Quia dicta eveniet quod. - pastel_id_of_registering_supernode_2: - type: string - description: pastel id of registering SN2 - example: Occaecati quam est. - pastel_id_of_registering_supernode_3: - type: string - description: pastel id of registering SN3 - example: Sed quia corrupti vel. - pastel_id_of_submitter: - type: string - description: pastel id of the submitter - example: Rerum omnis. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: - type: number - description: PCT of top 10 most similar with dupe probe above 25 PCT - example: 0.41605514 - format: float - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: - type: number - description: PCT of top 10 most similar with dupe probe above 33 PCT - example: 0.60499537 - format: float - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: - type: number - description: PCT of top 10 most similar with dupe probe above 50 PCT - example: 0.9858219 - format: float - preview_hash: - type: string - description: preview hash of NFT - example: - - 73 - - 110 - - 32 - - 112 - - 111 - - 114 - - 114 - - 111 - - 32 - - 105 - - 110 - - 118 - - 101 - - 110 - - 116 - - 111 - - 114 - - 101 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 32 - - 105 - - 112 - - 115 - - 97 - - 32 - - 112 - - 101 - - 114 - - 102 - - 101 - - 114 - - 101 - - 110 - - 100 - - 105 - - 115 - - 46 - format: byte - rareness_scores_table_json_compressed_b64: - type: string - description: rareness scores table json compressed b64 - example: Velit non voluptatum et eos porro ipsa. - similarity_score_to_first_entry_in_collection: - type: number - description: similarity score to first entry in collection - example: 0.6376665 - format: float - thumbnail1_hash: - type: string - description: thumbnail1 hash of NFT - example: - - 68 - - 111 - - 108 - - 111 - - 114 - - 101 - - 115 - - 32 - - 109 - - 111 - - 108 - - 101 - - 115 - - 116 - - 105 - - 97 - - 115 - - 32 - - 105 - - 115 - - 116 - - 101 - - 32 - - 117 - - 116 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 117 - - 109 - - 32 - - 109 - - 105 - - 110 - - 117 - - 115 - - 32 - - 113 - - 117 - - 111 - - 100 - - 46 - format: byte - thumbnail2_hash: - type: string - description: thumbnail2 hash of NFT - example: - - 65 - - 109 - - 101 - - 116 - - 32 - - 110 - - 111 - - 98 - - 105 - - 115 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 46 - format: byte - total_copies: - type: integer - description: total copies of NFT - example: 5973698838483140961 - format: int64 - utc_timestamp_when_request_submitted: - type: string - description: timestamp of request when submitted - example: Et vel. - example: - alternative_nsfw_scores: - drawings: 0.053542916 - hentai: 0.17044726 - neutral: 0.01989352 - porn: 0.7542108 - sexy: 0.24790263 - candidate_image_thumbnail_webp_as_base64_string: Magni quo aut aut a accusantium voluptas. - child_probability: 0.2722556 - collection_name_string: Doloribus aut. - cp_probability: 0.080685355 - creator_name: Consequatur asperiores. - creator_website: Ut libero expedita necessitatibus at. - creator_written_statement: Soluta totam ratione est quos fugit omnis. - does_not_impact_the_following_collection_strings: Ea possimus quam. - dupe_detection_system_version: Sint aliquam. - file_type: Repudiandae id non sit. - group_rareness_score: 0.39976165 - hash_of_candidate_image_file: Porro itaque molestias eos officiis. - image_file_path: Est aut nobis ullam quia voluptatem. - image_fingerprint_of_candidate_image_file: - - 0.2337053625785891 - - 0.7606478372985767 - - 0.4816506910655517 - - 0.6600616570929657 - internet_rareness: - alternative_rare_on_internet_dict_as_json_compressed_b64: Magnam pariatur aut facilis. - earliest_available_date_of_internet_results: Sed repudiandae voluptas dolor aut velit voluptatem. - min_number_of_exact_matches_in_page: 1704813535 - rare_on_internet_graph_json_compressed_b64: Aliquid provident eveniet. - rare_on_internet_summary_table_as_json_compressed_b64: Quisquam corporis qui nobis dignissimos. - is_likely_dupe: false - is_pastel_openapi_request: true - is_rare_on_internet: false - max_permitted_open_nsfw_score: 0.21702853924721482 - nft_creation_video_youtube_url: Praesentium ipsam autem. - nft_keyword_set: Doloremque doloribus. - nft_series_name: Eos distinctio et et veniam. - nft_title: Cumque consequatur animi. - open_api_group_id_string: Incidunt est. - open_nsfw_score: 0.32370627 - original_file_size_in_bytes: 430969822399397072 - overall_rareness_score: 0.94536245 - pastel_block_hash_when_request_submitted: Et voluptatem aspernatur. - pastel_block_height_when_request_submitted: Est soluta repudiandae autem occaecati aspernatur est. - pastel_id_of_registering_supernode_1: Dolores beatae magni et cupiditate quidem. - pastel_id_of_registering_supernode_2: Est eos alias pariatur adipisci omnis deleniti. - pastel_id_of_registering_supernode_3: Eaque nesciunt tempore sequi fugit. - pastel_id_of_submitter: Delectus necessitatibus in. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.0005365054 - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.34399658 - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.8091386 - preview_hash: - - 73 - - 100 - - 32 - - 101 - - 116 - - 46 - rareness_scores_table_json_compressed_b64: Magni qui culpa sed quia quam. - similarity_score_to_first_entry_in_collection: 0.9801496 - thumbnail1_hash: - - 82 - - 101 - - 99 - - 117 - - 115 - - 97 - - 110 - - 100 - - 97 - - 101 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 105 - - 111 - - 115 - - 97 - - 109 - - 46 - thumbnail2_hash: - - 80 - - 111 - - 115 - - 115 - - 105 - - 109 - - 117 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 115 - - 117 - - 110 - - 116 - - 32 - - 101 - - 120 - - 112 - - 101 - - 100 - - 105 - - 116 - - 97 - - 32 - - 113 - - 117 - - 105 - - 46 - total_copies: 1640767363046307917 - utc_timestamp_when_request_submitted: Incidunt similique natus consequatur. - required: - - creator_name - - creator_website - - creator_written_statement - - nft_title - - nft_series_name - - nft_creation_video_youtube_url - - nft_keyword_set - - total_copies - - preview_hash - - thumbnail1_hash - - thumbnail2_hash - - original_file_size_in_bytes - - file_type - - max_permitted_open_nsfw_score - NftDdServiceOutputFileDetailUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFile_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: ddServiceOutputFile_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDdServiceOutputFileResponseBody: - title: NftDdServiceOutputFileResponseBody - type: object - properties: - file: - type: string - description: File downloaded - example: Occaecati tenetur non est ea. - example: - file: Sit et consequatur laudantium aut. - required: - - file - NftDdServiceOutputFileUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: ddServiceOutputFile_UnAuthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDownloadInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: download_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDownloadNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: download_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftDownloadResponseBody: - title: NftDownloadResponseBody - type: object - properties: - file_id: - type: string - description: File path - example: Velit temporibus quo quaerat dolores deleniti. - example: - file_id: Et sint. - required: - - file_id - NftDownloadUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: download_UnAuthorized_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftGetTaskHistoryInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getTaskHistory_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftGetTaskHistoryNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getTaskHistory_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftGet_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftGet_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftGet_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftGetResponseBody: - title: NftNftGetResponseBody - type: object - properties: - alt_rare_on_internet_dict_json_b64: - type: string - description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Autem reiciendis aliquam iusto voluptates. - copies: - type: integer - description: Number of copies - default: 1 - example: 1 - format: int64 - minimum: 1 - maximum: 1000 - creator_name: - type: string - description: Name of the artist - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Artist's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: Artist website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - drawing_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - earliest_date_of_results: - type: string - description: Earliest Available Date of Internet Results - example: Quis quos nihil. - green_address: - type: boolean - description: Green address - example: true - hentai_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - is_likely_dupe: - type: boolean - description: Is this image likely a duplicate of another known image - example: false - is_rare_on_internet: - type: boolean - description: is this nft rare on the internet - example: false - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - min_num_exact_matches_on_page: - type: integer - description: Minimum Number of Exact Matches on Page - example: 2347840671 - format: int32 - neutral_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - nsfw_score: - type: number - description: NSFW Average score - example: 1 - format: float - minimum: 0 - maximum: 1 - porn_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - preview_thumbnail: - type: string - description: Preview Image - example: - - 77 - - 105 - - 110 - - 105 - - 109 - - 97 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 116 - - 101 - - 110 - - 101 - - 116 - - 117 - - 114 - - 32 - - 105 - - 112 - - 115 - - 97 - - 109 - - 32 - - 105 - - 100 - - 32 - - 109 - - 111 - - 108 - - 108 - - 105 - - 116 - - 105 - - 97 - - 46 - format: byte - rare_on_internet_graph_json_b64: - type: string - description: Base64 Compressed JSON of Rare On Internet Graph - example: Perspiciatis quam ut accusamus. - rare_on_internet_summary_table_json_b64: - type: string - description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Voluptatum quis magnam molestias harum repellendus et. - rareness_score: - type: number - description: Average pastel rareness score - example: 1 - format: float - minimum: 0 - maximum: 1 - royalty: - type: number - description: how much artist should get on all future resales - example: 0.2540148801977663 - format: double - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - sexy_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - storage_fee: - type: integer - description: Storage fee % - example: 100 - format: int64 - thumbnail_1: - type: string - description: Thumbnail_1 image - example: - - 69 - - 97 - - 113 - - 117 - - 101 - - 32 - - 111 - - 109 - - 110 - - 105 - - 115 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 115 - - 32 - - 109 - - 111 - - 100 - - 105 - - 32 - - 102 - - 117 - - 103 - - 97 - - 46 - format: byte - thumbnail_2: - type: string - description: Thumbnail_2 image - example: - - 73 - - 110 - - 32 - - 116 - - 101 - - 109 - - 112 - - 111 - - 114 - - 97 - - 46 - format: byte - title: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - version: - type: integer - description: version - example: 1 - format: int64 - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - example: - alt_rare_on_internet_dict_json_b64: Voluptas voluptatibus similique omnis. - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - drawing_nsfw_score: 1 - earliest_date_of_results: Error in quis ipsam esse sequi. - green_address: true - hentai_nsfw_score: 1 - is_likely_dupe: false - is_rare_on_internet: false - keywords: Renaissance, sfumato, portrait - min_num_exact_matches_on_page: 3236303469 - neutral_nsfw_score: 1 - nsfw_score: 1 - porn_nsfw_score: 1 - preview_thumbnail: - - 81 - - 117 - - 97 - - 115 - - 105 - - 32 - - 111 - - 102 - - 102 - - 105 - - 99 - - 105 - - 97 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 109 - - 32 - - 101 - - 118 - - 101 - - 110 - - 105 - - 101 - - 116 - - 46 - rare_on_internet_graph_json_b64: Iste similique velit accusamus illo. - rare_on_internet_summary_table_json_b64: Itaque officia at deleniti. - rareness_score: 1 - royalty: 0.4964943668435947 - series_name: Famous artist - sexy_nsfw_score: 1 - storage_fee: 100 - thumbnail_1: - - 69 - - 97 - - 113 - - 117 - - 101 - - 32 - - 101 - - 120 - - 112 - - 108 - - 105 - - 99 - - 97 - - 98 - - 111 - - 32 - - 101 - - 108 - - 105 - - 103 - - 101 - - 110 - - 100 - - 105 - - 32 - - 97 - - 117 - - 116 - - 46 - thumbnail_2: - - 68 - - 111 - - 108 - - 111 - - 114 - - 105 - - 98 - - 117 - - 115 - - 32 - - 110 - - 111 - - 98 - - 105 - - 115 - - 32 - - 111 - - 102 - - 102 - - 105 - - 99 - - 105 - - 97 - - 32 - - 99 - - 111 - - 110 - - 115 - - 101 - - 113 - - 117 - - 117 - - 110 - - 116 - - 117 - - 114 - - 32 - - 115 - - 101 - - 100 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 105 - - 111 - - 115 - - 97 - - 109 - - 32 - - 109 - - 111 - - 108 - - 101 - - 115 - - 116 - - 105 - - 97 - - 101 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - version: 1 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - rareness_score - - nsfw_score - - is_likely_dupe - - is_rare_on_internet - - title - - description - - creator_name - - copies - - creator_pastelid - - txid - NftNftSearchBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftSearch_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftSearchInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: nftSearch_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftNftSearchResponseBody: - title: NftNftSearchResponseBody - type: object - properties: - match_index: - type: integer - description: Sort index of the match based on score.This must be used to sort results on UI. - example: 4366201559533369601 - format: int64 - matches: - type: array - items: - $ref: '#/definitions/FuzzyMatchResponseBody' - description: Match result details - example: - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - nft: - $ref: '#/definitions/NftSummaryResponseBody' - example: - match_index: 2902776548633802113 - matches: - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - nft: - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - is_likely_dupe: false - keywords: Renaissance, sfumato, portrait - nsfw_score: 1 - rareness_score: 1 - series_name: Famous artist - thumbnail_1: - - 82 - - 97 - - 116 - - 105 - - 111 - - 110 - - 101 - - 32 - - 101 - - 115 - - 116 - - 32 - - 102 - - 97 - - 99 - - 105 - - 108 - - 105 - - 115 - - 46 - thumbnail_2: - - 78 - - 117 - - 108 - - 108 - - 97 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 117 - - 109 - - 32 - - 113 - - 117 - - 111 - - 115 - - 32 - - 118 - - 101 - - 108 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - nft - - matches - - match_index - NftRegisterBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: register_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: register_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterPayloadResponse: - title: NftRegisterPayloadResponse - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - key: - type: string - description: Passphrase of the owner's PastelID - example: Basic abcdef12345 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Accusantium possimus exercitationem iusto debitis cumque. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/definitions/ThumbnailcoordinateResponse' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: Request of the registration NFT - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Et et. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - - key - NftRegisterPayloadResponseBody: - title: NftRegisterPayloadResponseBody - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - key: - type: string - description: Passphrase of the owner's PastelID - example: Basic abcdef12345 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Optio mollitia. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/definitions/ThumbnailcoordinateResponseBody' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: Request of the registration NFT - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Aliquam ad veritatis consequuntur fugiat. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - - key - NftRegisterRequestBody: - title: NftRegisterRequestBody - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - image_id: - type: string - description: Uploaded image ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Et rerum a voluptas dolor similique vero. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/definitions/ThumbnailcoordinateRequestBody' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - image_id: VK7mpAqZ - issued_copies: 1 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ex necessitatibus commodi saepe non nobis. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - image_id - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - NftRegisterResponseBody: - title: 'Mediatype identifier: application/vnd.nft.register; view=default' - type: object - properties: - task_id: - type: string - description: Task ID of the registration process - example: n6Qn6TFM - minLength: 8 - maxLength: 8 - description: RegisterResponseBody result type (default view) - example: - task_id: n6Qn6TFM - required: - - task_id - NftRegisterTaskInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: registerTask_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: registerTask_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskResponseBody: - title: 'Mediatype identifier: application/vnd.nft.register.task; view=default' - type: object - properties: - id: - type: string - description: JOb ID of the registration process - example: n6Qn6TFM - minLength: 8 - maxLength: 8 - states: - type: array - items: - $ref: '#/definitions/TaskStateResponseBody' - description: List of states from the very beginning of the process - example: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: - type: string - description: Status of the registration process - example: Task Started - enum: - - Task Started - - Connected - - Validated Duplicate Reg Tickets - - Validating Burn Txn - - Burn Txn Validated - - Image Probed - - Image And Thumbnail Uploaded - - Status Gen ReptorQ Symbols - - Preburn Registration Fee - - Downloaded - - Request Accepted - - Request Registered - - Request Activated - - Error Setting up mesh of supernodes - - Error Sending Reg Metadata - - Error Uploading Image - - Error Converting Image to Bytes - - Error Encoding Image - - Error Creating Ticket - - Error Signing Ticket - - Error Uploading Ticket - - Error Activating Ticket - - Error Probing Image - - Error checking dd-server availability before probe image - - Error Generating DD and Fingerprint IDs - - Error comparing suitable storage fee with task request maximum fee - - Error balance not sufficient - - Error getting hash of the image - - Error sending signed ticket to SNs - - Error checking balance - - Error burning reg fee to get reg ticket id - - Error validating reg ticket txn id - - Error validating activate ticket txn id - - Error Insufficient Fee - - Error Signatures Dont Match - - Error Fingerprints Dont Match - - Error ThumbnailHashes Dont Match - - Error GenRaptorQ Symbols Failed - - Error File Don't Match - - Error Not Enough SuperNode - - Error Find Responding SNs - - Error Not Enough Downloaded Filed - - Error Download Failed - - Error Invalid Burn TxID - - Task Failed - - Task Rejected - - Task Completed - ticket: - $ref: '#/definitions/NftRegisterPayloadResponseBody' - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - description: RegisterTaskResponseBody result type (default view) - example: - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - required: - - id - - status - - ticket - NftRegisterTaskStateInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: registerTaskState_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskStateNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: registerTaskState_NotFound_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterTaskStateResponseBody: - title: NftRegisterTaskStateResponseBody - type: object - properties: - date: - type: string - description: Date of the status creation - example: 2006-01-02T15:04:05Z07:00 - status: - type: string - description: Status of the registration process - example: Task Started - enum: - - Task Started - - Connected - - Validated Duplicate Reg Tickets - - Validating Burn Txn - - Burn Txn Validated - - Image Probed - - Image And Thumbnail Uploaded - - Status Gen ReptorQ Symbols - - Preburn Registration Fee - - Downloaded - - Request Accepted - - Request Registered - - Request Activated - - Error Setting up mesh of supernodes - - Error Sending Reg Metadata - - Error Uploading Image - - Error Converting Image to Bytes - - Error Encoding Image - - Error Creating Ticket - - Error Signing Ticket - - Error Uploading Ticket - - Error Activating Ticket - - Error Probing Image - - Error checking dd-server availability before probe image - - Error Generating DD and Fingerprint IDs - - Error comparing suitable storage fee with task request maximum fee - - Error balance not sufficient - - Error getting hash of the image - - Error sending signed ticket to SNs - - Error checking balance - - Error burning reg fee to get reg ticket id - - Error validating reg ticket txn id - - Error validating activate ticket txn id - - Error Insufficient Fee - - Error Signatures Dont Match - - Error Fingerprints Dont Match - - Error ThumbnailHashes Dont Match - - Error GenRaptorQ Symbols Failed - - Error File Don't Match - - Error Not Enough SuperNode - - Error Find Responding SNs - - Error Not Enough Downloaded Filed - - Error Download Failed - - Error Invalid Burn TxID - - Task Failed - - Task Rejected - - Task Completed - example: - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - required: - - date - - status - NftRegisterTasksInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: registerTasks_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftRegisterUnAuthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: register_UnAuthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftSummaryResponseBody: - title: NftSummaryResponseBody - type: object - properties: - copies: - type: integer - description: Number of copies - default: 1 - example: 1 - format: int64 - minimum: 1 - maximum: 1000 - creator_name: - type: string - description: Name of the artist - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Artist's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: Artist website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - is_likely_dupe: - type: boolean - description: Is this image likely a duplicate of another known image - example: false - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - nsfw_score: - type: number - description: NSFW Average score - example: 1 - format: float - minimum: 0 - maximum: 1 - rareness_score: - type: number - description: Average pastel rareness score - example: 1 - format: float - minimum: 0 - maximum: 1 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - thumbnail_1: - type: string - description: Thumbnail_1 image - example: - - 81 - - 117 - - 97 - - 115 - - 105 - - 32 - - 110 - - 111 - - 115 - - 116 - - 114 - - 117 - - 109 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 116 - - 111 - - 116 - - 97 - - 109 - - 32 - - 110 - - 105 - - 104 - - 105 - - 108 - - 32 - - 101 - - 108 - - 105 - - 103 - - 101 - - 110 - - 100 - - 105 - - 46 - format: byte - thumbnail_2: - type: string - description: Thumbnail_2 image - example: - - 70 - - 97 - - 99 - - 101 - - 114 - - 101 - - 32 - - 97 - - 109 - - 101 - - 116 - - 32 - - 110 - - 117 - - 109 - - 113 - - 117 - - 97 - - 109 - - 32 - - 114 - - 101 - - 109 - - 32 - - 114 - - 101 - - 112 - - 101 - - 108 - - 108 - - 101 - - 110 - - 100 - - 117 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 116 - - 32 - - 115 - - 117 - - 110 - - 116 - - 46 - format: byte - title: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: NFT response - example: - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - is_likely_dupe: false - keywords: Renaissance, sfumato, portrait - nsfw_score: 1 - rareness_score: 1 - series_name: Famous artist - thumbnail_1: - - 80 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 32 - - 101 - - 97 - - 113 - - 117 - - 101 - - 46 - thumbnail_2: - - 73 - - 117 - - 115 - - 116 - - 111 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 115 - - 32 - - 110 - - 111 - - 110 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - title - - description - - creator_name - - copies - - creator_pastelid - - txid - NftTaskResponseTinyCollection: - title: 'Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny' - type: array - items: - $ref: '#/definitions/TaskResponseTiny' - description: NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view) - example: - - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - NftUploadImageBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: uploadImage_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - NftUploadImageInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: uploadImage_InternalServerError_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - NftUploadImageRequestBody: - title: NftUploadImageRequestBody - type: object - properties: - file: - type: string - description: File to upload - example: - - 69 - - 118 - - 101 - - 110 - - 105 - - 101 - - 116 - - 32 - - 97 - - 99 - - 99 - - 117 - - 115 - - 97 - - 110 - - 116 - - 105 - - 117 - - 109 - - 32 - - 97 - - 110 - - 105 - - 109 - - 105 - - 32 - - 115 - - 117 - - 110 - - 116 - - 32 - - 98 - - 108 - - 97 - - 110 - - 100 - - 105 - - 116 - - 105 - - 105 - - 115 - - 46 - format: byte - filename: - type: string - description: For internal use - example: - file: - - 86 - - 105 - - 116 - - 97 - - 101 - - 32 - - 118 - - 101 - - 114 - - 105 - - 116 - - 97 - - 116 - - 105 - - 115 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 115 - - 32 - - 101 - - 108 - - 105 - - 103 - - 101 - - 110 - - 100 - - 105 - - 32 - - 114 - - 97 - - 116 - - 105 - - 111 - - 110 - - 101 - - 32 - - 105 - - 100 - - 32 - - 113 - - 117 - - 105 - - 46 - required: - - file - NftUploadImageResponseBody: - title: 'Mediatype identifier: application/vnd.nft.upload-image-result; view=default' - type: object - properties: - estimated_fee: - type: number - description: Estimated fee - default: 1 - example: 100 - format: double - minimum: 1e-05 - expires_in: - type: string - description: Image expiration - example: 2006-01-02T15:04:05Z07:00 - format: date-time - image_id: - type: string - description: Uploaded image ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - description: UploadImageResponseBody result type (default view) - example: - estimated_fee: 100 - expires_in: 2006-01-02T15:04:05Z07:00 - image_id: VK7mpAqZ - required: - - image_id - - expires_in - - estimated_fee - ObserverEvaluationDataResponse: - title: ObserverEvaluationDataResponse - type: object - properties: - block: - type: integer - description: Block - example: 873807682 - format: int32 - is_challenge_timestamp_ok: - type: boolean - description: IsChallengeTimestampOK - example: true - is_challenger_signature_ok: - type: boolean - description: IsChallengerSignatureOK - example: false - is_evaluation_result_ok: - type: boolean - description: IsEvaluationResultOK - example: true - is_evaluation_timestamp_ok: - type: boolean - description: IsEvaluationTimestampOK - example: true - is_process_timestamp_ok: - type: boolean - description: IsProcessTimestampOK - example: true - is_recipient_signature_ok: - type: boolean - description: IsRecipientSignatureOK - example: false - merkelroot: - type: string - description: Merkelroot - example: Culpa est perspiciatis dolores odit. - reason: - type: string - description: Reason - example: Corrupti at. - timestamp: - type: string - description: Timestamp - example: Voluptatem error corporis dolorem. - true_hash: - type: string - description: TrueHash - example: Dolorem laudantium. - description: Data of Observer's evaluation - example: - block: 110168171 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: false - is_evaluation_timestamp_ok: true - is_process_timestamp_ok: true - is_recipient_signature_ok: false - merkelroot: Voluptatem architecto. - reason: Aut dicta. - timestamp: Qui facere id. - true_hash: Rerum aut. - required: - - timestamp - - is_challenge_timestamp_ok - - is_process_timestamp_ok - - is_evaluation_timestamp_ok - - is_recipient_signature_ok - - is_challenger_signature_ok - - is_evaluation_result_ok - - true_hash - RegistrationAttemptResponseBody: - title: RegistrationAttemptResponseBody - type: object - properties: - error_message: - type: string - description: Error Message - example: Necessitatibus inventore dolor nisi debitis aut odio. - file_id: - type: string - description: File ID - example: Eaque officiis aspernatur id et aut. - finished_at: - type: string - description: Finished At in datetime format - example: "2001-03-29T00:00:52Z" - format: date-time - id: - type: integer - description: ID - example: 4860360742236491050 - format: int64 - is_successful: - type: boolean - description: Indicates if the registration was successful - example: false - processor_sns: - type: string - description: Processor SNS - example: Corporis quas et tempore saepe. - reg_started_at: - type: string - description: Registration Started At in datetime format - example: "1993-10-28T21:59:10Z" - format: date-time - example: - error_message: Commodi reiciendis et et ducimus velit quam. - file_id: Impedit rerum libero et quis. - finished_at: "1990-11-23T10:18:07Z" - id: 444954594601192835 - is_successful: false - processor_sns: Id commodi. - reg_started_at: "1993-05-06T16:03:31Z" - required: - - id - - file_id - - reg_started_at - - finished_at - RespondedTicketResponseBody: - title: RespondedTicketResponseBody - type: object - properties: - is_reconstruction_required: - type: boolean - example: false - missing_keys: - type: array - items: - type: string - example: Et similique voluptatem ut corporis temporibus. - example: - - Unde et distinctio consequatur praesentium et. - - Perspiciatis temporibus veritatis fuga omnis consequatur temporibus. - - Adipisci nihil molestiae. - reconstructed_file_hash: - type: string - example: - - 84 - - 101 - - 110 - - 101 - - 116 - - 117 - - 114 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 101 - - 109 - - 46 - format: byte - ticket_type: - type: string - example: Officia quidem in. - tx_id: - type: string - example: Quasi ducimus doloremque fugiat aut est. - example: - is_reconstruction_required: false - missing_keys: - - Ex veritatis autem in. - - Debitis qui. - reconstructed_file_hash: - - 65 - - 117 - - 116 - - 101 - - 109 - - 32 - - 110 - - 111 - - 98 - - 105 - - 115 - - 46 - ticket_type: Sapiente inventore expedita molestias. - tx_id: Repellendus pariatur eos autem doloremque. - ResponseDataResponse: - title: ResponseDataResponse - type: object - properties: - block: - type: integer - description: Block - example: 2128339148 - format: int32 - hash: - type: string - description: Hash - example: Reprehenderit ipsam veritatis accusantium sit repellendus. - merkelroot: - type: string - description: Merkelroot - example: Praesentium numquam odit animi occaecati et nisi. - timestamp: - type: string - description: Timestamp - example: Provident dolore. - description: Data of response - example: - block: 914566760 - hash: Aut rerum et. - merkelroot: Ut quia enim quam commodi. - timestamp: Commodi laudantium. - required: - - timestamp - SCSummaryStatsResponseBody: - title: SCSummaryStatsResponseBody - type: object - properties: - no_of_invalid_evaluation_observed_by_observers: - type: integer - description: challenges failed due to invalid evaluation evaluated by observers - example: 8448058223243749560 - format: int64 - no_of_invalid_signatures_observed_by_observers: - type: integer - description: challenges failed due to invalid signatures evaluated by observers - example: 8359887601648170101 - format: int64 - no_of_slow_responses_observed_by_observers: - type: integer - description: challenges failed due to slow-responses evaluated by observers - example: 7891085395597145694 - format: int64 - total_challenges_evaluated_by_challenger: - type: integer - description: Total number of challenges evaluated by the challenger node - example: 5130594556944153183 - format: int64 - total_challenges_issued: - type: integer - description: Total number of challenges issued - example: 7226997995396706400 - format: int64 - total_challenges_processed_by_recipient: - type: integer - description: Total number of challenges processed by the recipient node - example: 5970798887905028462 - format: int64 - total_challenges_verified: - type: integer - description: Total number of challenges verified by observers - example: 813743049200551551 - format: int64 - description: Storage-Challenge SummaryStats - example: - no_of_invalid_evaluation_observed_by_observers: 2941821598506559608 - no_of_invalid_signatures_observed_by_observers: 3732715178392837689 - no_of_slow_responses_observed_by_observers: 3362298399127573417 - total_challenges_evaluated_by_challenger: 7464852390256145582 - total_challenges_issued: 982894599761507202 - total_challenges_processed_by_recipient: 1709859129074181105 - total_challenges_verified: 4862406093902741602 - required: - - total_challenges_issued - - total_challenges_processed_by_recipient - - total_challenges_evaluated_by_challenger - - total_challenges_verified - - no_of_slow_responses_observed_by_observers - - no_of_invalid_signatures_observed_by_observers - - no_of_invalid_evaluation_observed_by_observers - SHExecutionStatsResponseBody: - title: SHExecutionStatsResponseBody - type: object - properties: - total_file_healing_failed: - type: integer - description: Total number of file healings that failed - example: 7110295239839079318 - format: int64 - total_files_healed: - type: integer - description: Total number of files healed - example: 7273229820220489656 - format: int64 - total_reconstruction_not_required_evaluations_approved: - type: integer - description: Total number of reconstructions not required approved by verifier nodes - example: 7227159664804338091 - format: int64 - total_reconstruction_required_evaluations_approved: - type: integer - description: Total number of reconstructions approved by verifier nodes - example: 1231544901686574894 - format: int64 - total_reconstruction_required_evaluations_not_approved: - type: integer - description: Total number of reconstructions not approved by verifier nodes - example: 7043195386771997812 - format: int64 - total_reconstruction_required_hash_mismatch: - type: integer - description: Total number of reconstructions required with hash mismatch - example: 9127868877782486339 - format: int64 - total_reconstructions_not_required_evaluations_not_approved: - type: integer - description: Total number of reconstructions not required evaluation not approved by verifier nodes - example: 3697305095978270885 - format: int64 - total_self_healing_events_accepted: - type: integer - description: Total number of events accepted (healer node evaluated that reconstruction is required) - example: 6936203582918385714 - format: int64 - total_self_healing_events_acknowledged: - type: integer - description: Total number of events acknowledged by the healer node - example: 7501593075332076902 - format: int64 - total_self_healing_events_evaluations_unverified: - type: integer - description: Total number of challenge evaluations unverified by verifier nodes - example: 7058130195420023276 - format: int64 - total_self_healing_events_evaluations_verified: - type: integer - description: Total number of challenges verified - example: 8648560082570846381 - format: int64 - total_self_healing_events_issued: - type: integer - description: Total number of self-healing events issued - example: 1419664908385881791 - format: int64 - total_self_healing_events_rejected: - type: integer - description: Total number of events rejected (healer node evaluated that reconstruction is not required) - example: 2015002353907856604 - format: int64 - description: Self-healing execution stats - example: - total_file_healing_failed: 2789096299006299988 - total_files_healed: 4419572223275241376 - total_reconstruction_not_required_evaluations_approved: 7748927910636449007 - total_reconstruction_required_evaluations_approved: 9151917778125864507 - total_reconstruction_required_evaluations_not_approved: 7722371150490296838 - total_reconstruction_required_hash_mismatch: 1188714710419999793 - total_reconstructions_not_required_evaluations_not_approved: 8978903766317203870 - total_self_healing_events_accepted: 3106000301119730088 - total_self_healing_events_acknowledged: 2402673399316595345 - total_self_healing_events_evaluations_unverified: 7003916677450707686 - total_self_healing_events_evaluations_verified: 99819049584274399 - total_self_healing_events_issued: 1031509655329780558 - total_self_healing_events_rejected: 4448568758806981285 - required: - - total_self_healing_events_issued - - total_self_healing_events_acknowledged - - total_self_healing_events_rejected - - total_self_healing_events_accepted - - total_self_healing_events_evaluations_verified - - total_reconstruction_required_evaluations_approved - - total_reconstruction_not_required_evaluations_approved - - total_self_healing_events_evaluations_unverified - - total_reconstruction_required_evaluations_not_approved - - total_reconstructions_not_required_evaluations_not_approved - - total_files_healed - - total_file_healing_failed - SHTriggerStatsResponseBody: - title: SHTriggerStatsResponseBody - type: object - properties: - list_of_nodes: - type: string - description: Comma-separated list of offline nodes - example: Vel laudantium cum laudantium aut. - nodes_offline: - type: integer - description: Number of nodes offline - example: 1019773296006369459 - format: int64 - total_files_identified: - type: integer - description: Total number of files identified for self-healing - example: 4068014148055661803 - format: int64 - total_tickets_identified: - type: integer - description: Total number of tickets identified for self-healing - example: 3184655079665461279 - format: int64 - trigger_id: - type: string - description: Unique identifier for the trigger - example: Rerum et consectetur. - description: Self-healing trigger stats - example: - list_of_nodes: Ad non corporis mollitia debitis. - nodes_offline: 435329964148101094 - total_files_identified: 636177187451705191 - total_tickets_identified: 7699273601008932985 - trigger_id: Magnam non odit iusto. - required: - - trigger_id - - nodes_offline - - list_of_nodes - - total_files_identified - - total_tickets_identified - ScoreGetAggregatedChallengesScoresBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getAggregatedChallengesScores_BadRequest_response_body result type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: getAggregatedChallengesScores_InternalServerError_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ScoreGetAggregatedChallengesScoresNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getAggregatedChallengesScores_NotFound_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: getAggregatedChallengesScores_Unauthorized_response_body result type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - SelfHealingChallengeDataResponseBody: - title: SelfHealingChallengeDataResponseBody - type: object - properties: - block: - type: integer - example: 72126167 - format: int32 - event_tickets: - type: array - items: - $ref: '#/definitions/EventTicketResponseBody' - example: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: - type: string - example: In impedit deleniti rerum atque dolore quia. - nodes_on_watchlist: - type: string - example: Sunt consequatur ad enim. - timestamp: - type: string - example: Sint eligendi qui non rerum. - example: - block: 1003810139 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Minima culpa exercitationem ut. - nodes_on_watchlist: Nisi molestiae quia est voluptatum. - timestamp: Dolores ut. - SelfHealingMessageDataResponseBody: - title: SelfHealingMessageDataResponseBody - type: object - properties: - challenger_id: - type: string - example: Qui quisquam sint aliquam veniam. - event_details: - $ref: '#/definitions/SelfHealingChallengeDataResponseBody' - recipient_id: - type: string - example: Veniam perferendis. - response: - $ref: '#/definitions/SelfHealingResponseDataResponseBody' - verification: - $ref: '#/definitions/SelfHealingVerificationDataResponseBody' - example: - challenger_id: Incidunt sequi sit dolor voluptas aut vel. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Voluptas ut minima veritatis. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - SelfHealingMessageKVResponseBody: - title: SelfHealingMessageKVResponseBody - type: object - properties: - message_type: - type: string - description: Message type - example: Ea repellat. - messages: - type: array - items: - $ref: '#/definitions/SelfHealingMessageResponseBody' - description: Self-healing messages - example: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - example: - message_type: Neque omnis non aut temporibus accusantium possimus. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - SelfHealingMessageResponseBody: - title: SelfHealingMessageResponseBody - type: object - properties: - data: - $ref: '#/definitions/SelfHealingMessageDataResponseBody' - message_type: - type: string - example: Hic eos et ab error vel. - sender_id: - type: string - example: Est ea inventore neque quibusdam qui delectus. - sender_signature: - type: string - example: - - 65 - - 110 - - 105 - - 109 - - 105 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 115 - - 115 - - 117 - - 109 - - 101 - - 110 - - 100 - - 97 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 46 - format: byte - trigger_id: - type: string - example: Accusamus assumenda sequi. - example: - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Voluptate ea voluptas autem. - sender_id: Magni est itaque in. - sender_signature: - - 81 - - 117 - - 97 - - 109 - - 32 - - 97 - - 115 - - 115 - - 117 - - 109 - - 101 - - 110 - - 100 - - 97 - - 32 - - 97 - - 117 - - 116 - - 101 - - 109 - - 32 - - 113 - - 117 - - 105 - - 32 - - 109 - - 105 - - 110 - - 105 - - 109 - - 97 - - 32 - - 105 - - 108 - - 108 - - 111 - - 32 - - 97 - - 117 - - 116 - - 46 - trigger_id: Commodi tenetur veniam repellat. - SelfHealingReportKVResponseBody: - title: SelfHealingReportKVResponseBody - type: object - properties: - event_id: - type: string - description: Challenge ID - example: Voluptatem in autem. - report: - $ref: '#/definitions/SelfHealingReportResponseBody' - example: - event_id: Possimus mollitia consequatur dolores dolores repellendus. - report: - messages: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - SelfHealingReportResponseBody: - title: SelfHealingReportResponseBody - type: object - properties: - messages: - type: array - items: - $ref: '#/definitions/SelfHealingMessageKVResponseBody' - description: Map of message type to SelfHealingMessages - example: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + example: + reports: + - event_id: Architecto illo amet et sunt velit repellat. + report: + messages: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. + report: + messages: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. + report: + messages: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + MetricsGetDetailedLogsUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getDetailedLogs_Unauthorized_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getSummaryStats_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getSummaryStats_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getSummaryStats_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + MetricsGetSummaryStatsResponseBody: + title: 'Mediatype identifier: application/vnd.metrics.result; view=default' + type: object + properties: + self_healing_execution_events_stats: + $ref: '#/definitions/SHExecutionStatsResponseBody' + self_healing_trigger_events_stats: + type: array + items: + $ref: '#/definitions/SHTriggerStatsResponseBody' + description: Self-healing trigger stats + example: + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + description: GetSummaryStatsResponseBody result type (default view) + example: + self_healing_execution_events_stats: + total_file_healing_failed: 7768590148358975878 + total_files_healed: 5003517749846764640 + total_reconstruction_not_required_evaluations_approved: 2806992559829453130 + total_reconstruction_required_evaluations_approved: 1107029843099257708 + total_reconstruction_required_evaluations_not_approved: 5899917961438241754 + total_reconstruction_required_hash_mismatch: 7662269731854437673 + total_reconstructions_not_required_evaluations_not_approved: 6465655469488946682 + total_self_healing_events_accepted: 8057201361166306844 + total_self_healing_events_acknowledged: 7507492928430008683 + total_self_healing_events_evaluations_unverified: 5026086393945454809 + total_self_healing_events_evaluations_verified: 7657744171058360435 + total_self_healing_events_issued: 6120797776831447879 + total_self_healing_events_rejected: 4720652167101259254 + self_healing_trigger_events_stats: + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + required: + - self_healing_trigger_events_stats + - self_healing_execution_events_stats + MetricsGetSummaryStatsUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getSummaryStats_Unauthorized_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileDetailInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFileDetail_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileDetailNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFileDetail_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileDetailResponseBody: + title: NftDdServiceOutputFileDetailResponseBody + type: object + properties: + alternative_nsfw_scores: + $ref: '#/definitions/AlternativeNSFWScoresResponseBody' + candidate_image_thumbnail_webp_as_base64_string: + type: string + description: candidate image thumbnail as base64 string + example: At ipsum minima. + child_probability: + type: number + description: child probability + example: 0.23449795 + format: float + collection_name_string: + type: string + description: name of the collection + example: Placeat omnis ratione soluta architecto alias non. + cp_probability: + type: number + description: probability of CP + example: 0.31891298 + format: float + creator_name: + type: string + description: name of the creator + example: Natus consequatur. + creator_website: + type: string + description: website of creator + example: Delectus necessitatibus in. + creator_written_statement: + type: string + description: written statement of creator + example: Dolores beatae magni et cupiditate quidem. + does_not_impact_the_following_collection_strings: + type: string + description: does not impact collection strings + example: Aut voluptatem labore. + dupe_detection_system_version: + type: string + description: system version of dupe detection + example: Voluptate voluptatem est quidem. + file_type: + type: string + description: type of the file + example: Officiis corporis doloribus aut ab incidunt. + group_rareness_score: + type: number + description: rareness score of the group + example: 0.8487243 + format: float + hash_of_candidate_image_file: + type: string + description: hash of candidate image file + example: Velit ipsum eos aut nobis suscipit beatae. + image_file_path: + type: string + description: file path of the image + example: Dolorum rerum dolor. + image_fingerprint_of_candidate_image_file: + type: array + items: + type: number + example: 0.9990024881252295 + format: double + description: Image fingerprint of candidate image file + example: + - 0.34777901953790014 + - 0.705430411114813 + - 0.22019987176462968 + internet_rareness: + $ref: '#/definitions/InternetRarenessResponseBody' + is_likely_dupe: + type: boolean + description: is this nft likely a duplicate + example: false + is_pastel_openapi_request: + type: boolean + description: is pastel open API request + example: false + is_rare_on_internet: + type: boolean + description: is this nft rare on the internet + example: false + max_permitted_open_nsfw_score: + type: number + description: max permitted open NSFW score + example: 0.5927206082581582 + format: double + nft_creation_video_youtube_url: + type: string + description: nft creation video youtube url + example: Ab sint aliquam. + nft_keyword_set: + type: string + description: keywords for NFT + example: Illo minima. + nft_series_name: + type: string + description: series name of NFT + example: Eaque nesciunt tempore sequi fugit. + nft_title: + type: string + description: title of NFT + example: Est eos alias pariatur adipisci omnis deleniti. + open_api_group_id_string: + type: string + description: open api group id string + example: Eum et nam recusandae et nulla et. + open_nsfw_score: + type: number + description: open nsfw score + example: 0.73915386 + format: float + original_file_size_in_bytes: + type: integer + description: original file size in bytes + example: 7933392606086585379 + format: int64 + overall_rareness_score: + type: number + description: pastel rareness score + example: 0.66221505 + format: float + pastel_block_hash_when_request_submitted: + type: string + description: block hash when request submitted + example: Aut non atque nemo at. + pastel_block_height_when_request_submitted: + type: string + description: block Height when request submitted + example: Eaque voluptatibus esse reiciendis. + pastel_id_of_registering_supernode_1: + type: string + description: pastel id of registering SN1 + example: Non ea dicta ex consequatur consequatur. + pastel_id_of_registering_supernode_2: + type: string + description: pastel id of registering SN2 + example: Voluptatem aut ducimus. + pastel_id_of_registering_supernode_3: + type: string + description: pastel id of registering SN3 + example: Sed commodi consequatur unde qui. + pastel_id_of_submitter: + type: string + description: pastel id of the submitter + example: Et dolor eum vel. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: + type: number + description: PCT of top 10 most similar with dupe probe above 25 PCT + example: 0.4351476 + format: float + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: + type: number + description: PCT of top 10 most similar with dupe probe above 33 PCT + example: 0.23593992 + format: float + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: + type: number + description: PCT of top 10 most similar with dupe probe above 50 PCT + example: 0.1508883 + format: float + preview_hash: + type: string + description: preview hash of NFT + example: + - 77 + - 97 + - 103 + - 110 + - 105 + - 32 + - 113 + - 117 + - 105 + - 32 + - 99 + - 117 + - 108 + - 112 + - 97 + - 32 + - 115 + - 101 + - 100 + - 32 + - 113 + - 117 + - 105 + - 97 + - 32 + - 113 + - 117 + - 97 + - 109 + - 46 + format: byte + rareness_scores_table_json_compressed_b64: + type: string + description: rareness scores table json compressed b64 + example: Quis ea qui dolore esse quaerat. + similarity_score_to_first_entry_in_collection: + type: number + description: similarity score to first entry in collection + example: 0.96331656 + format: float + thumbnail1_hash: + type: string + description: thumbnail1 hash of NFT + example: + - 73 + - 110 + - 32 + - 118 + - 105 + - 116 + - 97 + - 101 + - 32 + - 97 + - 117 + - 116 + - 101 + - 109 + - 32 + - 116 + - 101 + - 109 + - 112 + - 111 + - 114 + - 105 + - 98 + - 117 + - 115 + - 46 + format: byte + thumbnail2_hash: + type: string + description: thumbnail2 hash of NFT + example: + - 81 + - 117 + - 111 + - 32 + - 112 + - 111 + - 114 + - 114 + - 111 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 46 + format: byte + total_copies: + type: integer + description: total copies of NFT + example: 7462986072117779346 + format: int64 + utc_timestamp_when_request_submitted: + type: string + description: timestamp of request when submitted + example: Iusto nihil. + example: + alternative_nsfw_scores: + drawings: 0.10935703 + hentai: 0.09246627 + neutral: 0.6267282 + porn: 0.44808388 + sexy: 0.10161177 + candidate_image_thumbnail_webp_as_base64_string: Modi et ducimus error vel. + child_probability: 0.7751423 + collection_name_string: Eos explicabo repudiandae id. + cp_probability: 0.88962495 + creator_name: Sit et consequatur laudantium aut. + creator_website: Labore ut sequi. + creator_written_statement: Nulla officia exercitationem. + does_not_impact_the_following_collection_strings: Facilis expedita. + dupe_detection_system_version: Distinctio et et. + file_type: Praesentium quaerat. + group_rareness_score: 0.44326186 + hash_of_candidate_image_file: Laboriosam et possimus sit sunt expedita. + image_file_path: Occaecati tenetur non est ea. + image_fingerprint_of_candidate_image_file: + - 0.07167349916515192 + - 0.3913938964776676 + internet_rareness: + alternative_rare_on_internet_dict_as_json_compressed_b64: Nihil consequuntur sed et. + earliest_available_date_of_internet_results: Rerum expedita minus. + min_number_of_exact_matches_in_page: 2451569794 + rare_on_internet_graph_json_compressed_b64: Deserunt doloremque in. + rare_on_internet_summary_table_as_json_compressed_b64: Eum reiciendis eum et placeat. + is_likely_dupe: false + is_pastel_openapi_request: true + is_rare_on_internet: false + max_permitted_open_nsfw_score: 0.9905531090874132 + nft_creation_video_youtube_url: Est quo. + nft_keyword_set: Ex in minus odio et sit mollitia. + nft_series_name: Maxime in corrupti. + nft_title: Quae repellendus exercitationem. + open_api_group_id_string: Sit hic eos sequi illo fugit consequatur. + open_nsfw_score: 0.10593063 + original_file_size_in_bytes: 913338949195164520 + overall_rareness_score: 0.750524 + pastel_block_hash_when_request_submitted: Magni magni quo aut aut a accusantium. + pastel_block_height_when_request_submitted: Temporibus ea possimus quam quis. + pastel_id_of_registering_supernode_1: Expedita necessitatibus at. + pastel_id_of_registering_supernode_2: Soluta totam ratione est quos fugit omnis. + pastel_id_of_registering_supernode_3: Cumque consequatur animi. + pastel_id_of_submitter: Quia voluptatem praesentium consequatur asperiores eaque ut. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.034080453 + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.9741878 + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.35369322 + preview_hash: + - 80 + - 108 + - 97 + - 99 + - 101 + - 97 + - 116 + - 32 + - 118 + - 101 + - 114 + - 105 + - 116 + - 97 + - 116 + - 105 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 105 + - 117 + - 114 + - 101 + - 46 + rareness_scores_table_json_compressed_b64: Vero doloremque doloribus similique. + similarity_score_to_first_entry_in_collection: 0.12367769 + thumbnail1_hash: + - 85 + - 116 + - 32 + - 115 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 110 + - 116 + - 105 + - 117 + - 109 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 32 + - 97 + - 117 + - 116 + - 101 + - 109 + - 32 + - 101 + - 116 + - 46 + thumbnail2_hash: + - 76 + - 105 + - 98 + - 101 + - 114 + - 111 + - 32 + - 105 + - 110 + - 32 + - 112 + - 97 + - 114 + - 105 + - 97 + - 116 + - 117 + - 114 + - 32 + - 105 + - 110 + - 32 + - 101 + - 116 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 32 + - 99 + - 117 + - 112 + - 105 + - 100 + - 105 + - 116 + - 97 + - 116 + - 101 + - 46 + total_copies: 1744172899364030546 + utc_timestamp_when_request_submitted: Sunt enim est aut nobis. + required: + - creator_name + - creator_website + - creator_written_statement + - nft_title + - nft_series_name + - nft_creation_video_youtube_url + - nft_keyword_set + - total_copies + - preview_hash + - thumbnail1_hash + - thumbnail2_hash + - original_file_size_in_bytes + - file_type + - max_permitted_open_nsfw_score + NftDdServiceOutputFileDetailUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFileDetail_UnAuthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFile_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: ddServiceOutputFile_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDdServiceOutputFileResponseBody: + title: NftDdServiceOutputFileResponseBody + type: object + properties: + file: + type: string + description: File downloaded + example: Doloremque hic eos et. + example: + file: Error vel dolores qui quisquam. + required: + - file + NftDdServiceOutputFileUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: ddServiceOutputFile_UnAuthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDownloadInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: download_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDownloadNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: download_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftDownloadResponseBody: + title: NftDownloadResponseBody + type: object + properties: + file_id: + type: string + description: File path + example: Quo distinctio eum dolores quis. + example: + file_id: Dolor eveniet provident. + required: + - file_id + NftDownloadUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: download_UnAuthorized_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftGetTaskHistoryInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getTaskHistory_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftGetTaskHistoryNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getTaskHistory_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: nftGet_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: nftGet_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: nftGet_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftGetResponseBody: + title: NftNftGetResponseBody + type: object + properties: + alt_rare_on_internet_dict_json_b64: + type: string + description: Base64 Compressed Json of Alternative Rare On Internet Dict + example: Numquam sit molestiae ipsa. + copies: + type: integer + description: Number of copies + default: 1 + example: 1 + format: int64 + minimum: 1 + maximum: 1000 + creator_name: + type: string + description: Name of the artist + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Artist's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: Artist website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + drawing_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + earliest_date_of_results: + type: string + description: Earliest Available Date of Internet Results + example: Ex eius id repellendus. + green_address: + type: boolean + description: Green address + example: false + hentai_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + is_likely_dupe: + type: boolean + description: Is this image likely a duplicate of another known image + example: false + is_rare_on_internet: + type: boolean + description: is this nft rare on the internet + example: false + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + min_num_exact_matches_on_page: + type: integer + description: Minimum Number of Exact Matches on Page + example: 1745990187 + format: int32 + neutral_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + nsfw_score: + type: number + description: NSFW Average score + example: 1 + format: float + minimum: 0 + maximum: 1 + porn_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + preview_thumbnail: + type: string + description: Preview Image + example: + - 68 + - 111 + - 108 + - 111 + - 114 + - 101 + - 115 + - 32 + - 100 + - 101 + - 108 + - 101 + - 110 + - 105 + - 116 + - 105 + - 32 + - 117 + - 116 + - 46 + format: byte + rare_on_internet_graph_json_b64: + type: string + description: Base64 Compressed JSON of Rare On Internet Graph + example: Accusantium consequuntur. + rare_on_internet_summary_table_json_b64: + type: string + description: Base64 Compressed JSON Table of Rare On Internet Summary + example: Sint quibusdam aut. + rareness_score: + type: number + description: Average pastel rareness score + example: 1 + format: float + minimum: 0 + maximum: 1 + royalty: + type: number + description: how much artist should get on all future resales + example: 0.06882246730710773 + format: double + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + sexy_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + storage_fee: + type: integer + description: Storage fee % + example: 100 + format: int64 + thumbnail_1: + type: string + description: Thumbnail_1 image + example: + - 69 + - 120 + - 99 + - 101 + - 112 + - 116 + - 117 + - 114 + - 105 + - 32 + - 113 + - 117 + - 105 + - 46 + format: byte + thumbnail_2: + type: string + description: Thumbnail_2 image + example: + - 77 + - 97 + - 120 + - 105 + - 109 + - 101 + - 32 + - 99 + - 111 + - 114 + - 114 + - 117 + - 112 + - 116 + - 105 + - 32 + - 109 + - 97 + - 103 + - 110 + - 97 + - 109 + - 32 + - 101 + - 116 + - 32 + - 101 + - 116 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 46 + format: byte + title: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + version: + type: integer + description: version + example: 1 + format: int64 + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + example: + alt_rare_on_internet_dict_json_b64: Quia dicta eveniet quod. + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + drawing_nsfw_score: 1 + earliest_date_of_results: Quam est minus sed quia. + green_address: false + hentai_nsfw_score: 1 + is_likely_dupe: false + is_rare_on_internet: false + keywords: Renaissance, sfumato, portrait + min_num_exact_matches_on_page: 1873635446 + neutral_nsfw_score: 1 + nsfw_score: 1 + porn_nsfw_score: 1 + preview_thumbnail: + - 68 + - 105 + - 103 + - 110 + - 105 + - 115 + - 115 + - 105 + - 109 + - 111 + - 115 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 32 + - 101 + - 120 + - 112 + - 108 + - 105 + - 99 + - 97 + - 98 + - 111 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 105 + - 111 + - 115 + - 97 + - 109 + - 32 + - 101 + - 115 + - 116 + - 46 + rare_on_internet_graph_json_b64: Rerum omnis. + rare_on_internet_summary_table_json_b64: Et vel. + rareness_score: 1 + royalty: 0.36896894459373797 + series_name: Famous artist + sexy_nsfw_score: 1 + storage_fee: 100 + thumbnail_1: + - 86 + - 101 + - 108 + - 32 + - 115 + - 105 + - 110 + - 116 + - 32 + - 109 + - 105 + - 110 + - 117 + - 115 + - 32 + - 97 + - 117 + - 116 + - 101 + - 109 + - 32 + - 101 + - 97 + - 32 + - 111 + - 112 + - 116 + - 105 + - 111 + - 46 + thumbnail_2: + - 86 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 100 + - 101 + - 115 + - 101 + - 114 + - 117 + - 110 + - 116 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + version: 1 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - rareness_score + - nsfw_score + - is_likely_dupe + - is_rare_on_internet + - title + - description + - creator_name + - copies + - creator_pastelid + - txid + NftNftSearchBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: nftSearch_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftSearchInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: nftSearch_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftNftSearchResponseBody: + title: NftNftSearchResponseBody + type: object + properties: + match_index: + type: integer + description: Sort index of the match based on score.This must be used to sort results on UI. + example: 5359151959569834645 + format: int64 + matches: + type: array + items: + $ref: '#/definitions/FuzzyMatchResponseBody' + description: Match result details + example: + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + nft: + $ref: '#/definitions/NftSummaryResponseBody' + example: + match_index: 8923196674506674897 + matches: + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + nft: + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + is_likely_dupe: false + keywords: Renaissance, sfumato, portrait + nsfw_score: 1 + rareness_score: 1 + series_name: Famous artist + thumbnail_1: + - 65 + - 117 + - 116 + - 32 + - 97 + - 109 + - 101 + - 116 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 46 + thumbnail_2: + - 83 + - 101 + - 113 + - 117 + - 105 + - 32 + - 118 + - 101 + - 108 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - nft + - matches + - match_index + NftRegisterBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: register_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: register_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterPayloadResponse: + title: NftRegisterPayloadResponse + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + key: + type: string + description: Passphrase of the owner's PastelID + example: Basic abcdef12345 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Tenetur ipsam. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/definitions/ThumbnailcoordinateResponse' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: Request of the registration NFT + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Mollitia est voluptatum quis magnam. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + - key + NftRegisterPayloadResponseBody: + title: NftRegisterPayloadResponseBody + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + key: + type: string + description: Passphrase of the owner's PastelID + example: Basic abcdef12345 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Quisquam temporibus dolorem a. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/definitions/ThumbnailcoordinateResponseBody' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: Request of the registration NFT + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Temporibus ab soluta distinctio. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + - key + NftRegisterRequestBody: + title: NftRegisterRequestBody + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + image_id: + type: string + description: Uploaded image ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Totam nihil eligendi dignissimos facere amet numquam. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/definitions/ThumbnailcoordinateRequestBody' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + image_id: VK7mpAqZ + issued_copies: 1 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Repellendus fugit. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - image_id + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + NftRegisterResponseBody: + title: 'Mediatype identifier: application/vnd.nft.register; view=default' + type: object + properties: + task_id: + type: string + description: Task ID of the registration process + example: n6Qn6TFM + minLength: 8 + maxLength: 8 + description: RegisterResponseBody result type (default view) + example: + task_id: n6Qn6TFM + required: + - task_id + NftRegisterTaskInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: registerTask_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: registerTask_NotFound_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskResponseBody: + title: 'Mediatype identifier: application/vnd.nft.register.task; view=default' + type: object + properties: + id: + type: string + description: JOb ID of the registration process + example: n6Qn6TFM + minLength: 8 + maxLength: 8 + states: + type: array + items: + $ref: '#/definitions/TaskStateResponseBody' + description: List of states from the very beginning of the process + example: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: + type: string + description: Status of the registration process + example: Task Started + enum: + - Task Started + - Connected + - Validated Duplicate Reg Tickets + - Validating Burn Txn + - Burn Txn Validated + - Image Probed + - Image And Thumbnail Uploaded + - Status Gen ReptorQ Symbols + - Preburn Registration Fee + - Downloaded + - Request Accepted + - Request Registered + - Request Activated + - Error Setting up mesh of supernodes + - Error Sending Reg Metadata + - Error Uploading Image + - Error Converting Image to Bytes + - Error Encoding Image + - Error Creating Ticket + - Error Signing Ticket + - Error Uploading Ticket + - Error Activating Ticket + - Error Probing Image + - Error checking dd-server availability before probe image + - Error Generating DD and Fingerprint IDs + - Error comparing suitable storage fee with task request maximum fee + - Error balance not sufficient + - Error getting hash of the image + - Error sending signed ticket to SNs + - Error checking balance + - Error burning reg fee to get reg ticket id + - Error validating reg ticket txn id + - Error validating activate ticket txn id + - Error Insufficient Fee + - Error Signatures Dont Match + - Error Fingerprints Dont Match + - Error ThumbnailHashes Dont Match + - Error GenRaptorQ Symbols Failed + - Error File Don't Match + - Error Not Enough SuperNode + - Error Find Responding SNs + - Error Not Enough Downloaded Filed + - Error Download Failed + - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch + - Task Failed + - Task Rejected + - Task Completed + ticket: + $ref: '#/definitions/NftRegisterPayloadResponseBody' + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + description: RegisterTaskResponseBody result type (default view) + example: + id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Cupiditate nobis nesciunt. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + required: + - id + - status + - ticket + NftRegisterTaskStateInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: registerTaskState_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskStateNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: registerTaskState_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterTaskStateResponseBody: + title: NftRegisterTaskStateResponseBody + type: object + properties: + date: + type: string + description: Date of the status creation + example: 2006-01-02T15:04:05Z07:00 + status: + type: string + description: Status of the registration process + example: Task Started + enum: + - Task Started + - Connected + - Validated Duplicate Reg Tickets + - Validating Burn Txn + - Burn Txn Validated + - Image Probed + - Image And Thumbnail Uploaded + - Status Gen ReptorQ Symbols + - Preburn Registration Fee + - Downloaded + - Request Accepted + - Request Registered + - Request Activated + - Error Setting up mesh of supernodes + - Error Sending Reg Metadata + - Error Uploading Image + - Error Converting Image to Bytes + - Error Encoding Image + - Error Creating Ticket + - Error Signing Ticket + - Error Uploading Ticket + - Error Activating Ticket + - Error Probing Image + - Error checking dd-server availability before probe image + - Error Generating DD and Fingerprint IDs + - Error comparing suitable storage fee with task request maximum fee + - Error balance not sufficient + - Error getting hash of the image + - Error sending signed ticket to SNs + - Error checking balance + - Error burning reg fee to get reg ticket id + - Error validating reg ticket txn id + - Error validating activate ticket txn id + - Error Insufficient Fee + - Error Signatures Dont Match + - Error Fingerprints Dont Match + - Error ThumbnailHashes Dont Match + - Error GenRaptorQ Symbols Failed + - Error File Don't Match + - Error Not Enough SuperNode + - Error Find Responding SNs + - Error Not Enough Downloaded Filed + - Error Download Failed + - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch + - Task Failed + - Task Rejected + - Task Completed + example: + date: 2006-01-02T15:04:05Z07:00 + status: Task Started + required: + - date + - status + NftRegisterTasksInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: registerTasks_InternalServerError_response_body result type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + NftRegisterUnAuthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: register_UnAuthorized_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftSummaryResponseBody: + title: NftSummaryResponseBody + type: object + properties: + copies: + type: integer + description: Number of copies + default: 1 + example: 1 + format: int64 + minimum: 1 + maximum: 1000 + creator_name: + type: string + description: Name of the artist + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Artist's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: Artist website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + is_likely_dupe: + type: boolean + description: Is this image likely a duplicate of another known image + example: false + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + nsfw_score: + type: number + description: NSFW Average score + example: 1 + format: float + minimum: 0 + maximum: 1 + rareness_score: + type: number + description: Average pastel rareness score + example: 1 + format: float + minimum: 0 + maximum: 1 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + thumbnail_1: + type: string + description: Thumbnail_1 image + example: + - 69 + - 116 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 46 + format: byte + thumbnail_2: + type: string + description: Thumbnail_2 image + example: + - 79 + - 102 + - 102 + - 105 + - 99 + - 105 + - 97 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 111 + - 102 + - 102 + - 105 + - 99 + - 105 + - 97 + - 32 + - 97 + - 116 + - 46 + format: byte + title: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: NFT response + example: + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + is_likely_dupe: false + keywords: Renaissance, sfumato, portrait + nsfw_score: 1 + rareness_score: 1 + series_name: Famous artist + thumbnail_1: + - 80 + - 101 + - 114 + - 102 + - 101 + - 114 + - 101 + - 110 + - 100 + - 105 + - 115 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 115 + - 105 + - 109 + - 105 + - 108 + - 105 + - 113 + - 117 + - 101 + - 32 + - 118 + - 101 + - 108 + - 105 + - 116 + - 46 + thumbnail_2: + - 73 + - 108 + - 108 + - 111 + - 32 + - 101 + - 97 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 115 + - 105 + - 109 + - 105 + - 108 + - 105 + - 113 + - 117 + - 101 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - title + - description + - creator_name + - copies + - creator_pastelid + - txid + NftTaskResponseTinyCollection: + title: 'Mediatype identifier: application/vnd.nft.register.task; type=collection; view=tiny' + type: array + items: + $ref: '#/definitions/TaskResponseTiny' + description: NftTaskResponseTinyCollection is the result type for an array of TaskResponseTiny (default view) + example: + - id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Cupiditate nobis nesciunt. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + - id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Cupiditate nobis nesciunt. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + NftUploadImageBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: uploadImage_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftUploadImageInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: uploadImage_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + NftUploadImageRequestBody: + title: NftUploadImageRequestBody + type: object + properties: + file: + type: string + description: File to upload + example: + - 69 + - 97 + - 114 + - 117 + - 109 + - 32 + - 101 + - 97 + - 113 + - 117 + - 101 + - 32 + - 111 + - 109 + - 110 + - 105 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 115 + - 32 + - 109 + - 111 + - 100 + - 105 + - 32 + - 102 + - 117 + - 103 + - 97 + - 46 + format: byte + filename: + type: string + description: For internal use + example: + file: + - 73 + - 110 + - 32 + - 116 + - 101 + - 109 + - 112 + - 111 + - 114 + - 97 + - 46 + required: + - file + NftUploadImageResponseBody: + title: 'Mediatype identifier: application/vnd.nft.upload-image-result; view=default' + type: object + properties: + estimated_fee: + type: number + description: Estimated fee + default: 1 + example: 100 + format: double + minimum: 1e-05 + expires_in: + type: string + description: Image expiration + example: 2006-01-02T15:04:05Z07:00 + format: date-time + image_id: + type: string + description: Uploaded image ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + description: UploadImageResponseBody result type (default view) + example: + estimated_fee: 100 + expires_in: 2006-01-02T15:04:05Z07:00 + image_id: VK7mpAqZ + required: + - image_id + - expires_in + - estimated_fee + ObserverEvaluationDataResponse: + title: ObserverEvaluationDataResponse + type: object + properties: + block: + type: integer + description: Block + example: 2049285499 + format: int32 + is_challenge_timestamp_ok: + type: boolean + description: IsChallengeTimestampOK + example: true + is_challenger_signature_ok: + type: boolean + description: IsChallengerSignatureOK + example: true + is_evaluation_result_ok: + type: boolean + description: IsEvaluationResultOK + example: true + is_evaluation_timestamp_ok: + type: boolean + description: IsEvaluationTimestampOK + example: true + is_process_timestamp_ok: + type: boolean + description: IsProcessTimestampOK + example: true + is_recipient_signature_ok: + type: boolean + description: IsRecipientSignatureOK + example: false + merkelroot: + type: string + description: Merkelroot + example: Nostrum doloribus accusantium tempore. + reason: + type: string + description: Reason + example: Aspernatur consequatur nulla fugit consectetur est distinctio. + timestamp: + type: string + description: Timestamp + example: Modi sit dolor quis velit. + true_hash: + type: string + description: TrueHash + example: Non quae voluptates in ratione ipsum ipsa. + description: Data of Observer's evaluation + example: + block: 837703987 + is_challenge_timestamp_ok: true + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: true + is_process_timestamp_ok: true + is_recipient_signature_ok: true + merkelroot: Ea rerum harum esse et quia sint. + reason: Eius vitae deleniti. + timestamp: Dolorem reprehenderit animi. + true_hash: Ex at necessitatibus numquam. + required: + - timestamp + - is_challenge_timestamp_ok + - is_process_timestamp_ok + - is_evaluation_timestamp_ok + - is_recipient_signature_ok + - is_challenger_signature_ok + - is_evaluation_result_ok + - true_hash + RegistrationAttemptResponseBody: + title: RegistrationAttemptResponseBody + type: object + properties: + error_message: + type: string + description: Error Message + example: Quam cum deserunt quibusdam excepturi inventore. + file_id: + type: string + description: File ID + example: Dolor recusandae odio voluptate enim. + finished_at: + type: string + description: Finished At in datetime format + example: "1996-03-19T06:40:03Z" + format: date-time + id: + type: integer + description: ID + example: 7991499059470661584 + format: int64 + is_successful: + type: boolean + description: Indicates if the registration was successful + example: false + processor_sns: + type: string + description: Processor SNS + example: Sunt consequuntur. + reg_started_at: + type: string + description: Registration Started At in datetime format + example: "2001-01-24T08:03:15Z" + format: date-time + example: + error_message: Quia non omnis. + file_id: Sint perspiciatis autem eos velit facere. + finished_at: "2005-09-07T13:49:48Z" + id: 7204067934931861460 + is_successful: false + processor_sns: Accusamus odio commodi autem. + reg_started_at: "2015-05-01T20:10:30Z" + required: + - id + - file_id + - reg_started_at + - finished_at + RespondedTicketResponseBody: + title: RespondedTicketResponseBody + type: object + properties: + is_reconstruction_required: + type: boolean + example: true + missing_keys: + type: array + items: + type: string + example: Assumenda quam. + example: + - Quia aut et. + - Perspiciatis debitis consequatur. + - Ducimus velit nulla hic provident. + - Et quia unde. + reconstructed_file_hash: + type: string + example: + - 83 + - 117 + - 110 + - 116 + - 32 + - 113 + - 117 + - 105 + - 97 + - 32 + - 118 + - 105 + - 116 + - 97 + - 101 + - 32 + - 111 + - 102 + - 102 + - 105 + - 99 + - 105 + - 105 + - 115 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 46 + format: byte + ticket_type: + type: string + example: Ipsa dolores laborum cupiditate omnis qui dolore. + tx_id: + type: string + example: Consequatur iste soluta ex suscipit. + example: + is_reconstruction_required: true + missing_keys: + - Ex itaque cupiditate. + - Maiores ea repudiandae excepturi. + reconstructed_file_hash: + - 73 + - 117 + - 115 + - 116 + - 111 + - 32 + - 114 + - 101 + - 114 + - 117 + - 109 + - 46 + ticket_type: Aut eius. + tx_id: Eos dolore fugiat asperiores exercitationem sit. + ResponseDataResponse: + title: ResponseDataResponse + type: object + properties: + block: + type: integer + description: Block + example: 365784395 + format: int32 + hash: + type: string + description: Hash + example: Qui quasi aliquam quo quo molestiae qui. + merkelroot: + type: string + description: Merkelroot + example: Ut iusto necessitatibus. + timestamp: + type: string + description: Timestamp + example: In non eum enim et. + description: Data of response + example: + block: 1394253007 + hash: Minima necessitatibus quisquam repudiandae. + merkelroot: Sit vitae. + timestamp: Corporis a est rerum officiis. + required: + - timestamp + SCSummaryStatsResponseBody: + title: SCSummaryStatsResponseBody + type: object + properties: + no_of_invalid_evaluation_observed_by_observers: + type: integer + description: challenges failed due to invalid evaluation evaluated by observers + example: 1438589467886703313 + format: int64 + no_of_invalid_signatures_observed_by_observers: + type: integer + description: challenges failed due to invalid signatures evaluated by observers + example: 4690167887119603236 + format: int64 + no_of_slow_responses_observed_by_observers: + type: integer + description: challenges failed due to slow-responses evaluated by observers + example: 28256694005962907 + format: int64 + total_challenges_evaluated_by_challenger: + type: integer + description: Total number of challenges evaluated by the challenger node + example: 2870258502818032716 + format: int64 + total_challenges_issued: + type: integer + description: Total number of challenges issued + example: 6907507321623683818 + format: int64 + total_challenges_processed_by_recipient: + type: integer + description: Total number of challenges processed by the recipient node + example: 7529305911933441858 + format: int64 + total_challenges_verified: + type: integer + description: Total number of challenges verified by observers + example: 2871213842674065484 + format: int64 + description: Storage-Challenge SummaryStats + example: + no_of_invalid_evaluation_observed_by_observers: 5333305187026237112 + no_of_invalid_signatures_observed_by_observers: 6622156395643061810 + no_of_slow_responses_observed_by_observers: 1112925407092909673 + total_challenges_evaluated_by_challenger: 9128761248514114356 + total_challenges_issued: 6533700277562465571 + total_challenges_processed_by_recipient: 3928034324222267804 + total_challenges_verified: 1657461073177263883 + required: + - total_challenges_issued + - total_challenges_processed_by_recipient + - total_challenges_evaluated_by_challenger + - total_challenges_verified + - no_of_slow_responses_observed_by_observers + - no_of_invalid_signatures_observed_by_observers + - no_of_invalid_evaluation_observed_by_observers + SHExecutionStatsResponseBody: + title: SHExecutionStatsResponseBody + type: object + properties: + total_file_healing_failed: + type: integer + description: Total number of file healings that failed + example: 3582289672878588636 + format: int64 + total_files_healed: + type: integer + description: Total number of files healed + example: 5778234259972073963 + format: int64 + total_reconstruction_not_required_evaluations_approved: + type: integer + description: Total number of reconstructions not required approved by verifier nodes + example: 8850849015211979105 + format: int64 + total_reconstruction_required_evaluations_approved: + type: integer + description: Total number of reconstructions approved by verifier nodes + example: 3273753217088137 + format: int64 + total_reconstruction_required_evaluations_not_approved: + type: integer + description: Total number of reconstructions not approved by verifier nodes + example: 2933399008609954399 + format: int64 + total_reconstruction_required_hash_mismatch: + type: integer + description: Total number of reconstructions required with hash mismatch + example: 6218696696414695956 + format: int64 + total_reconstructions_not_required_evaluations_not_approved: + type: integer + description: Total number of reconstructions not required evaluation not approved by verifier nodes + example: 6893113450005233820 + format: int64 + total_self_healing_events_accepted: + type: integer + description: Total number of events accepted (healer node evaluated that reconstruction is required) + example: 233846548458207736 + format: int64 + total_self_healing_events_acknowledged: + type: integer + description: Total number of events acknowledged by the healer node + example: 1287028771178144956 + format: int64 + total_self_healing_events_evaluations_unverified: + type: integer + description: Total number of challenge evaluations unverified by verifier nodes + example: 3596488678482864367 + format: int64 + total_self_healing_events_evaluations_verified: + type: integer + description: Total number of challenges verified + example: 5296607256220562564 + format: int64 + total_self_healing_events_issued: + type: integer + description: Total number of self-healing events issued + example: 4026816766821672584 + format: int64 + total_self_healing_events_rejected: + type: integer + description: Total number of events rejected (healer node evaluated that reconstruction is not required) + example: 9026187748382421213 + format: int64 + description: Self-healing execution stats + example: + total_file_healing_failed: 4893042138900961471 + total_files_healed: 5481717915136777246 + total_reconstruction_not_required_evaluations_approved: 5614416024795668921 + total_reconstruction_required_evaluations_approved: 6995364301143721660 + total_reconstruction_required_evaluations_not_approved: 3308905005922593193 + total_reconstruction_required_hash_mismatch: 7224529582747014232 + total_reconstructions_not_required_evaluations_not_approved: 30394990174954482 + total_self_healing_events_accepted: 955424758112391621 + total_self_healing_events_acknowledged: 5534486376050822202 + total_self_healing_events_evaluations_unverified: 3802605222208132235 + total_self_healing_events_evaluations_verified: 9124039455895407017 + total_self_healing_events_issued: 244586377334157790 + total_self_healing_events_rejected: 4508756317532729254 + required: + - total_self_healing_events_issued + - total_self_healing_events_acknowledged + - total_self_healing_events_rejected + - total_self_healing_events_accepted + - total_self_healing_events_evaluations_verified + - total_reconstruction_required_evaluations_approved + - total_reconstruction_not_required_evaluations_approved + - total_self_healing_events_evaluations_unverified + - total_reconstruction_required_evaluations_not_approved + - total_reconstructions_not_required_evaluations_not_approved + - total_files_healed + - total_file_healing_failed + SHTriggerStatsResponseBody: + title: SHTriggerStatsResponseBody + type: object + properties: + list_of_nodes: + type: string + description: Comma-separated list of offline nodes + example: Magnam fugit et. + nodes_offline: + type: integer + description: Number of nodes offline + example: 3265398503658127104 + format: int64 + total_files_identified: + type: integer + description: Total number of files identified for self-healing + example: 4659251110602746591 + format: int64 + total_tickets_identified: + type: integer + description: Total number of tickets identified for self-healing + example: 8959183783161377288 + format: int64 + trigger_id: + type: string + description: Unique identifier for the trigger + example: Aperiam amet ullam dolorem. + description: Self-healing trigger stats + example: + list_of_nodes: Tempora ut sed in doloribus adipisci. + nodes_offline: 5478265755911113328 + total_files_identified: 5431108744884078352 + total_tickets_identified: 8936217064989805246 + trigger_id: Ullam quas molestiae omnis dolor. + required: + - trigger_id + - nodes_offline + - list_of_nodes + - total_files_identified + - total_tickets_identified + ScoreGetAggregatedChallengesScoresBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getAggregatedChallengesScores_BadRequest_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + ScoreGetAggregatedChallengesScoresInternalServerErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: getAggregatedChallengesScores_InternalServerError_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + ScoreGetAggregatedChallengesScoresNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getAggregatedChallengesScores_NotFound_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + ScoreGetAggregatedChallengesScoresUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: getAggregatedChallengesScores_Unauthorized_response_body result type (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + SelfHealingChallengeDataResponseBody: + title: SelfHealingChallengeDataResponseBody + type: object + properties: + block: + type: integer + example: 2082802109 + format: int32 + event_tickets: + type: array + items: + $ref: '#/definitions/EventTicketResponseBody' + example: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: + type: string + example: Est quis dolore dolorum soluta esse. + nodes_on_watchlist: + type: string + example: Debitis qui. + timestamp: + type: string + example: Numquam sunt consequatur ad. + example: + block: 108868140 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Nobis iste facere eos architecto. + nodes_on_watchlist: Ducimus quo eius temporibus doloremque iusto. + timestamp: Molestiae natus culpa voluptatem placeat. + SelfHealingMessageDataResponseBody: + title: SelfHealingMessageDataResponseBody + type: object + properties: + challenger_id: + type: string + example: Rem sed aut consequatur. + event_details: + $ref: '#/definitions/SelfHealingChallengeDataResponseBody' + recipient_id: + type: string + example: Quo labore voluptas doloribus sint repellendus dolorem. + response: + $ref: '#/definitions/SelfHealingResponseDataResponseBody' + verification: + $ref: '#/definitions/SelfHealingVerificationDataResponseBody' example: + challenger_id: Vitae aspernatur et quia consectetur magni itaque. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Ut et voluptas. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + SelfHealingMessageKVResponseBody: + title: SelfHealingMessageKVResponseBody + type: object + properties: + message_type: + type: string + description: Message type + example: Possimus sint sequi reprehenderit et. messages: - - message_type: Recusandae ipsa sit ipsa. - messages: + type: array + items: + $ref: '#/definitions/SelfHealingMessageResponseBody' + description: Self-healing messages + example: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 + - 86 + - 101 + - 114 + - 111 + - 32 - 110 - - 97 - - 109 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 - 117 - - 109 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 - 32 - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 - 116 + - 32 + - 105 + - 112 + - 115 - 97 + - 32 - 113 - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 - 101 + - 116 + - 32 + - 105 + - 100 - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 - 114 + - 105 - 111 + - 114 + - 101 + - 115 + - 32 - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 - 105 - - 100 + - 98 + - 117 + - 115 + - 32 - 101 + - 115 + - 116 + - 32 - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: + Ut culpa.: - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 - - 116 + - 105 - 32 - - 97 - - 100 + - 101 + - 118 + - 101 + - 110 - 105 - - 112 + - 101 + - 116 + - 32 - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 - 115 - - 99 + - 112 + - 101 + - 114 - 105 - - 32 - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 - - 97 - - 116 - - 105 + - 115 - 32 - 118 - 111 @@ -27390,485 +22283,4123 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 + - 86 + - 101 + - 114 + - 111 + - 32 - 110 - - 97 - - 109 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 - 117 - - 109 + - 116 - 32 + - 101 + - 120 + - 112 + - 101 + - 100 - 105 - 116 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - - 114 - - 111 - - 118 - 105 - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 - 101 - - 110 + - 108 + - 105 - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - 32 - 105 - 112 - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - 97 + - 32 - 113 - 117 - - 101 + - 105 - 32 - - 112 - - 114 - - 111 + - 101 - 118 - - 105 - - 100 - 101 - 110 + - 105 + - 101 - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: - 65 + - 115 + - 112 + - 101 - 114 - - 99 - - 104 - 105 - - 116 - - 101 - - 99 - - 116 - 111 + - 114 + - 101 + - 115 - 32 - 118 - - 101 + - 111 - 108 - - 105 + - 117 + - 112 + - 116 + - 97 - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - 105 + - 98 + - 117 - 115 - 32 - - 97 - - 117 + - 101 + - 115 - 116 - 32 - - 97 - - 100 - - 105 - - 112 + - 110 + - 111 + - 110 + - 32 - 105 - 115 - - 99 - - 105 + - 116 + - 101 - 32 - - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 + - 112 + - 101 + - 108 + - 108 - 97 - 116 - - 105 - - 32 - - 118 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - 101 - - 32 - - 115 - - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + example: + message_type: Aut placeat dolorem ducimus. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + SelfHealingMessageResponseBody: + title: SelfHealingMessageResponseBody + type: object + properties: + data: + $ref: '#/definitions/SelfHealingMessageDataResponseBody' + message_type: + type: string + example: Aut sint unde. + sender_id: + type: string + example: Illum aut voluptate in facere aliquid. + sender_signature: + type: string + example: + - 68 + - 111 + - 108 + - 111 + - 114 + - 101 + - 109 + - 32 + - 110 + - 111 + - 98 + - 105 + - 115 + - 46 + format: byte + trigger_id: + type: string + example: Ipsa quia commodi earum. + example: + data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Veniam vitae dolore voluptas numquam. + sender_id: Similique sint deleniti. + sender_signature: + - 69 + - 116 + - 32 + - 102 + - 117 + - 103 + - 105 + - 97 + - 116 + - 32 + - 115 + - 101 + - 100 + - 32 + - 110 + - 111 + - 98 + - 105 + - 115 + - 46 + trigger_id: Autem et qui ad sed nostrum. + SelfHealingReportKVResponseBody: + title: SelfHealingReportKVResponseBody + type: object + properties: + event_id: + type: string + description: Challenge ID + example: Enim iste necessitatibus. + report: + $ref: '#/definitions/SelfHealingReportResponseBody' + example: + event_id: Sint assumenda odio in occaecati adipisci. + report: + messages: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + SelfHealingReportResponseBody: + title: SelfHealingReportResponseBody + type: object + properties: + messages: + type: array + items: + $ref: '#/definitions/SelfHealingMessageKVResponseBody' + description: Map of message type to SelfHealingMessages + example: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + example: + messages: + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -27878,241 +26409,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - 32 + - 110 - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 104 - 105 - - 116 - - 97 - - 113 - - 117 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -28122,243 +26647,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -28368,241 +26887,235 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 - 110 - 105 - - 115 - - 32 - - 97 - - 117 + - 101 - 116 - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - 105 + - 100 - 32 - - 111 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -28612,241 +27125,237 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 - - 116 + - 105 - 32 - - 97 - - 100 + - 101 + - 118 + - 101 + - 110 - 105 - - 112 + - 101 + - 116 + - 32 - 105 - - 115 + - 100 + - 32 + - 97 + - 99 - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 - - 32 - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 - - 97 - - 116 - - 105 + - 115 - 32 - 118 - 111 @@ -28856,610 +27365,704 @@ definitions: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 - 32 - - 97 + - 105 - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 - 112 + - 116 + - 97 + - 116 - 105 + - 98 + - 117 - 115 - - 99 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 - 105 + - 115 + - 116 + - 101 - 32 - - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 + - 112 + - 101 + - 108 + - 108 - 97 - 116 - - 105 - - 32 - - 118 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - 101 - - 32 - - 115 - - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. SelfHealingResponseDataResponseBody: title: SelfHealingResponseDataResponseBody type: object properties: block: type: integer - example: 1777029753 + example: 927164459 format: int32 event_id: type: string - example: At sint. + example: Autem non ea. merkelroot: type: string - example: Ea quis minima sed amet maiores. + example: Porro sed et est rerum similique nulla. responded_ticket: $ref: '#/definitions/RespondedTicketResponseBody' timestamp: type: string - example: Ratione omnis autem nihil voluptatem tempora. + example: Doloribus nihil quia. verifiers: type: array items: type: string - example: Eos architecto aspernatur molestiae natus culpa. + example: Doloribus amet debitis esse sed. example: - - Est eveniet. - - Quo eius. - - Doloremque iusto illo. + - Et laudantium. + - Accusantium laudantium non hic beatae iure. + - Nihil explicabo aperiam non. + - Sequi sed aspernatur et sequi. example: - block: 927164459 - event_id: Non ea. - merkelroot: Porro sed et est rerum similique nulla. + block: 1967739888 + event_id: Ipsa dolores veritatis et. + merkelroot: Expedita maiores qui eligendi ab ipsum alias. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Doloribus nihil quia. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Ea minima sint. verifiers: - - Iste soluta. - - Suscipit aut ipsa dolores laborum cupiditate. + - Deserunt maiores totam. + - Libero at fuga. + - Iste accusantium repellendus. SelfHealingVerificationDataResponseBody: title: SelfHealingVerificationDataResponseBody type: object properties: block: type: integer - example: 1567089120 + example: 1234181341 format: int32 event_id: type: string - example: Qui dolore aut assumenda quam. + example: Animi voluptatem est dolorum qui. merkelroot: type: string - example: Quia aut et. + example: Quis rerum blanditiis consequatur eum ad rerum. timestamp: type: string - example: Perspiciatis debitis consequatur. + example: Ut qui quasi asperiores. verified_ticket: $ref: '#/definitions/VerifiedTicketResponseBody' verifiers_data: type: object example: - Deserunt maiores totam.: - - 76 - - 105 - - 98 + Eveniet sit dolorem ratione laudantium voluptatem optio.: + - 86 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 - 101 + - 115 + - 32 + - 100 + - 111 + - 108 + - 111 - 114 + - 105 + - 98 + - 117 + - 115 + - 32 + - 113 + - 117 - 111 - 32 - - 97 - 116 + - 101 + - 110 + - 101 + - 116 + - 117 + - 114 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 32 + - 110 + - 111 + - 110 - 32 + - 112 + - 101 + - 114 - 102 + - 101 + - 114 + - 101 + - 110 + - 100 + - 105 + - 115 + - 46 + Quod aut dolores.: + - 78 + - 111 + - 115 + - 116 + - 114 - 117 + - 109 + - 32 + - 101 + - 108 + - 105 - 103 + - 101 + - 110 + - 100 + - 105 + - 32 + - 101 + - 120 + - 99 + - 101 + - 112 + - 116 + - 117 + - 114 + - 105 + - 32 + - 114 + - 101 + - 114 + - 117 + - 109 + - 32 + - 101 + - 116 + - 32 + - 99 + - 111 + - 110 + - 115 + - 101 + - 99 + - 116 + - 101 + - 116 + - 117 + - 114 + - 32 + - 97 + - 115 + - 112 + - 101 + - 114 + - 110 - 97 + - 116 + - 117 + - 114 - 46 - Iste accusantium repellendus.: - - 65 + Vel laudantium cum laudantium aut.: + - 67 + - 117 + - 108 + - 112 + - 97 + - 32 + - 98 + - 108 + - 97 - 110 + - 100 + - 105 + - 116 + - 105 - 105 + - 115 + - 32 + - 109 + - 97 + - 103 + - 110 + - 97 - 109 + - 32 + - 110 + - 111 + - 110 + - 46 + additionalProperties: + type: string + example: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 - 105 + - 97 - 32 - - 118 + - 99 - 111 - - 108 + - 110 + - 115 + - 101 + - 113 - 117 - - 112 - - 116 - 97 - 116 - - 101 - - 109 + - 117 + - 114 - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 101 - 115 - - 116 - 32 - 100 - 111 - 108 - 111 - 114 - - 117 - - 109 + - 101 + - 115 - 32 - - 113 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 101 + - 110 + - 100 - 117 - - 105 - - 46 - additionalProperties: - type: string - example: - - 69 - - 97 + - 115 - 32 + - 97 + - 115 + - 115 + - 117 - 109 - - 105 + - 101 - 110 - - 105 - - 109 + - 100 - 97 - 32 - - 115 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 110 - - 116 + - 115 - 46 format: byte example: - block: 1482857114 - event_id: Magni quis rerum. - merkelroot: Eum ad rerum. - timestamp: Ut qui quasi asperiores. + block: 1054912535 + event_id: Iusto et doloribus ad. + merkelroot: Mollitia debitis rerum provident voluptatibus. + timestamp: Qui quibusdam. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Hic quibusdam omnis distinctio.: - - 67 - - 111 + Vero laboriosam dolorem sit omnis accusamus.: + - 79 + - 109 - 110 + - 105 - 115 - - 101 - - 113 - - 117 - - 97 - - 116 - - 117 - - 114 - - 32 - - 114 - - 101 - - 114 - - 117 - - 109 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 + - 115 + - 105 - 116 - - 117 - - 109 - 32 - - 100 - - 111 - - 108 - - 111 - - 114 + - 99 - 117 - - 109 - - 32 - - 116 - - 101 - - 109 + - 108 - 112 - - 111 - - 114 - 97 - 32 - 97 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 109 - - 105 - - 110 - - 105 - - 109 - - 97 + - 100 - 46 SenseDownloadInternalServerErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' @@ -29484,18 +28087,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: download_InternalServerError_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -29527,7 +28130,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -29538,7 +28141,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -29555,61 +28158,57 @@ definitions: type: string description: File downloaded example: - - 78 - - 97 - - 109 - - 32 + - 68 - 111 - - 109 - - 110 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 97 + - 108 + - 111 + - 114 + - 101 - 32 - - 110 - - 117 - - 109 - - 113 - - 117 - 97 - 109 - - 32 - - 117 - - 110 - - 100 - 101 + - 116 - 46 format: byte example: file: - - 83 + - 81 + - 117 + - 105 - 97 - - 101 - - 112 - - 101 - 32 - 101 - 116 - 32 + - 97 + - 99 - 99 - - 111 - - 110 - - 115 - - 101 - - 113 - 117 + - 115 - 97 + - 110 - 116 + - 105 - 117 + - 109 + - 32 - 114 + - 101 + - 114 + - 117 + - 109 + - 32 + - 111 + - 109 + - 110 + - 105 + - 115 - 32 - 113 - 117 - - 105 + - 111 + - 115 - 46 required: - file @@ -29620,7 +28219,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29683,7 +28282,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getTaskHistory_InternalServerError_response_body result type (default view) example: fault: true @@ -29706,7 +28305,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29729,7 +28328,7 @@ definitions: example: true description: getTaskHistory_NotFound_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -29772,12 +28371,12 @@ definitions: example: true description: registerTaskState_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -29792,7 +28391,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29808,18 +28407,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: registerTaskState_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -29885,6 +28484,8 @@ definitions: - Error Not Enough Downloaded Filed - Error Download Failed - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch - Task Failed - Task Rejected - Task Completed @@ -29921,15 +28522,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: startProcessing_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -29960,14 +28561,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: startProcessing_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -30005,7 +28606,7 @@ definitions: type: string description: OpenAPI GroupID string default: PASTEL - example: Doloremque quidem quis. + example: Odio ab voluptate. spendable_address: type: string description: 'Address to use for registration fee ' @@ -30017,7 +28618,7 @@ definitions: app_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - open_api_group_id: Ipsam fugiat delectus animi aperiam amet ullam. + open_api_group_id: Eius officia illo provident fuga minima aut. spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j required: - burn_txid @@ -30044,7 +28645,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30060,11 +28661,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: startProcessing_UnAuthorized_response_body result type (default view) example: fault: false @@ -30072,7 +28673,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -30087,7 +28688,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30103,19 +28704,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: uploadImage_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -30150,14 +28751,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: uploadImage_InternalServerError_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -30174,41 +28775,23 @@ definitions: type: string description: File to upload example: - - 68 - - 111 - - 108 - - 111 - - 114 + - 84 - 101 - 109 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 32 - - 118 - - 111 - - 108 - - 117 - 112 - - 116 - - 97 - - 115 + - 111 + - 114 + - 101 - 32 + - 110 - 101 - - 115 - - 115 + - 113 + - 117 - 101 - 32 - - 110 - - 105 - - 104 + - 113 + - 117 - 105 - - 108 - 46 format: byte filename: @@ -30216,47 +28799,34 @@ definitions: description: For internal use example: file: - - 83 + - 79 + - 102 + - 102 + - 105 + - 99 + - 105 - 105 - - 110 - - 116 - - 32 - - 97 - - 115 - 115 - - 117 - - 109 - - 101 - - 110 - - 100 - - 97 - 32 - - 111 - - 100 - 105 - - 111 + - 108 + - 108 + - 117 + - 109 - 32 - - 105 - - 110 + - 101 + - 115 + - 116 - 32 + - 109 - 111 - - 99 - - 99 - - 97 + - 108 - 101 - - 99 - - 97 + - 115 - 116 - 105 - - 32 - 97 - - 100 - - 105 - - 112 - - 105 - 115 - - 99 - - 105 - 46 required: - file @@ -30322,14 +28892,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getDetailedLogs_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -30369,14 +28939,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getDetailedLogs_InternalServerError_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -30408,7 +28978,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -30420,7 +28990,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -30451,7 +29021,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30478,7 +29048,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30498,15 +29068,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: getSummaryStats_BadRequest_response_body result type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -30537,7 +29107,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30549,7 +29119,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -30592,7 +29162,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -30609,13 +29179,13 @@ definitions: description: GetSummaryStatsResponseBody result type (default view) example: sc_summary_stats: - no_of_invalid_evaluation_observed_by_observers: 2982554539974798863 - no_of_invalid_signatures_observed_by_observers: 804645458629257575 - no_of_slow_responses_observed_by_observers: 6016941875889227877 - total_challenges_evaluated_by_challenger: 9084935928395605172 - total_challenges_issued: 554226313255902356 - total_challenges_processed_by_recipient: 9153767776266110855 - total_challenges_verified: 6924812056467069635 + no_of_invalid_evaluation_observed_by_observers: 5854226055096814600 + no_of_invalid_signatures_observed_by_observers: 4353527834150504494 + no_of_slow_responses_observed_by_observers: 1357252241103533124 + total_challenges_evaluated_by_challenger: 3728835119474173051 + total_challenges_issued: 6647138861710727929 + total_challenges_processed_by_recipient: 5873786866786505808 + total_challenges_verified: 6262794736214513307 required: - sc_summary_stats StorageChallengeGetSummaryStatsUnauthorizedResponseBody: @@ -30670,83 +29240,84 @@ definitions: challenge_id: type: string description: ID of the challenge - example: Et officiis illum est molestias deleniti aliquam. + example: Suscipit excepturi qui quo officiis. challenger_evaluation: $ref: '#/definitions/EvaluationDataResponse' challenger_id: type: string description: ID of the challenger - example: Sit odio. + example: A non. message_type: type: string description: type of the message - example: Voluptatem reprehenderit est. + example: Dolorem sit est soluta dolorem fuga molestias. observer_evaluation: $ref: '#/definitions/ObserverEvaluationDataResponse' observers: type: array items: type: string - example: Eaque iure. + example: Cum dolorum error necessitatibus. description: List of observer IDs example: - - Consequuntur quia et. - - Rerum omnis. + - Molestias repellendus iure vitae harum. + - Vel ex modi. + - Consequuntur quis magnam. recipient_id: type: string description: ID of the recipient - example: Et inventore est et alias est quae. + example: Et sapiente asperiores. response: $ref: '#/definitions/ResponseDataResponse' sender_id: type: string description: ID of the sender's node - example: Impedit amet. + example: Autem non eos et incidunt culpa. sender_signature: type: string description: signature of the sender - example: Consequuntur officiis similique nobis deleniti impedit repudiandae. + example: Perspiciatis dolores odit esse dolores. description: Storage challenge message data (default view) example: challenge: - block: 626674453 - end_index: 1362782358179080945 - file_hash: Molestias aut beatae. - merkelroot: Sint aut repellat consequatur dignissimos voluptatibus. - start_index: 6285852628941175332 - timestamp: Odio deleniti omnis maiores dolorem. - challenge_id: Ullam quasi cum dolorum. + block: 1533850580 + end_index: 3333691379975401886 + file_hash: Quidem deserunt rem. + merkelroot: Accusantium qui quod voluptas officiis. + start_index: 6009480957455380299 + timestamp: Quia repellendus labore architecto. + challenge_id: Ut et maiores a quis dolor voluptates. challenger_evaluation: - block: 346663458 - hash: Voluptatem sint recusandae. + block: 1162046023 + hash: Aliquid voluptatum qui sit nemo accusamus. is_verified: true - merkelroot: Et rem ducimus maxime aut. - timestamp: Fugit eaque nesciunt eum quasi. - challenger_id: Quidem beatae ut. - message_type: Necessitatibus sint voluptas molestias repellendus iure vitae. + merkelroot: Id rem omnis iste eveniet eligendi veniam. + timestamp: Voluptatibus commodi iure ut unde voluptatum. + challenger_id: Inventore et ex rerum quasi cum. + message_type: Rem aut perferendis ratione fugiat. observer_evaluation: - block: 1725989442 + block: 1933870942 is_challenge_timestamp_ok: false is_challenger_signature_ok: true is_evaluation_result_ok: false is_evaluation_timestamp_ok: false is_process_timestamp_ok: false - is_recipient_signature_ok: false - merkelroot: Ut provident pariatur. - reason: Ut quia repellendus. - timestamp: Voluptas exercitationem quisquam id accusantium voluptatibus. - true_hash: Architecto sit quidem deserunt rem dolore aut. + is_recipient_signature_ok: true + merkelroot: Voluptates ipsum quibusdam facilis quos. + reason: Commodi quibusdam voluptatem quam itaque libero. + timestamp: Ea veniam ipsum esse est. + true_hash: Quas sit eum laudantium quo. observers: - - Sed qui quasi aliquam. - - Quo molestiae qui. - recipient_id: In non eum enim et. + - Tempore atque. + - Nemo eum hic maiores. + recipient_id: Nihil eos placeat sed sit. response: - block: 2076283382 - hash: Dolor autem quo vero quia quod omnis. - merkelroot: Et ullam officiis libero. - timestamp: Qui non quibusdam. - sender_id: Veniam vel ex modi enim consequuntur. - sender_signature: Magnam exercitationem et sapiente. + block: 816684052 + hash: Explicabo nihil non occaecati accusamus. + merkelroot: Exercitationem quisquam id accusantium voluptatibus blanditiis dolorem. + timestamp: Asperiores pariatur et dolor dolore qui cum. + sender_id: Aut accusamus. + sender_signature: Deleniti fugit fuga iusto cumque beatae sit. required: - challenge_id - message_type @@ -30842,6 +29413,8 @@ definitions: - Error Not Enough Downloaded Filed - Error Download Failed - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch - Task Failed - Task Rejected - Task Completed @@ -30871,7 +29444,7 @@ definitions: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -30943,6 +29516,8 @@ definitions: - Error Not Enough Downloaded Filed - Error Download Failed - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch - Task Failed - Task Rejected - Task Completed @@ -31136,15 +29711,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: createUserdata_BadRequest_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -31159,7 +29734,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31182,7 +29757,7 @@ definitions: example: true description: createUserdata_InternalServerError_response_body result type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -31381,10 +29956,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getUserdata_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -31420,18 +29995,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getUserdata_InternalServerError_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -31467,15 +30042,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: getUserdata_NotFound_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -31569,7 +30144,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31585,18 +30160,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: updateUserdata_BadRequest_response_body result type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -31628,18 +30203,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: updateUserdata_InternalServerError_response_body result type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -31813,103 +30388,82 @@ definitions: properties: is_reconstruction_required: type: boolean - example: true + example: false is_verified: type: boolean - example: false + example: true message: type: string - example: Excepturi autem iusto rerum. + example: Animi delectus assumenda adipisci. missing_keys: type: array items: type: string - example: Sunt quia vitae officiis dolor. + example: Minima officia incidunt sequi sit. example: - - Eos dolore fugiat asperiores exercitationem sit. - - Aut eius. + - Aut vel tempora voluptas ut minima. + - Dolor est. reconstructed_file_hash: type: string example: - - 86 + - 73 + - 110 + - 118 - 101 - - 108 - - 32 + - 110 + - 116 + - 111 + - 114 - 101 - - 120 - 32 - - 105 - - 116 - - 97 + - 110 + - 101 - 113 - 117 - 101 - 32 - - 99 + - 113 - 117 - - 112 - - 105 - - 100 - 105 - - 116 - - 97 - - 116 - - 101 - - 32 + - 98 + - 117 - 115 + - 100 - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 + - 109 - 46 format: byte ticket_type: type: string - example: Et quia unde. + example: Voluptatum dolorum tempora. tx_id: type: string - example: Ducimus velit nulla hic provident. + example: Deleniti hic quibusdam omnis distinctio ut consequatur. example: - is_reconstruction_required: false + is_reconstruction_required: true is_verified: false - message: Maiores qui eligendi ab ipsum alias. + message: Dolorem aliquid dolorem neque. missing_keys: - - Et laudantium. - - Accusantium laudantium non hic beatae iure. - - Nihil explicabo aperiam non. - - Sequi sed aspernatur et sequi. + - Est itaque in numquam. + - Assumenda autem qui minima. + - Aut quasi magni. reconstructed_file_hash: - - 73 - - 112 + - 79 + - 109 + - 110 + - 105 - 115 - - 97 - 32 - - 100 - - 111 - - 108 + - 110 - 111 - - 114 - - 101 - - 115 + - 110 - 32 - - 118 - - 101 - - 114 - - 105 - - 116 - 97 - - 116 - - 105 - - 115 - - 32 - - 101 + - 117 - 116 - 46 - ticket_type: Debitis esse sed. - tx_id: Veritatis doloribus. + ticket_type: Voluptate ea voluptas autem. + tx_id: Commodi tenetur veniam repellat. securityDefinitions: api_key_header_Authorization: type: apiKey diff --git a/walletnode/api/gen/http/openapi3.json b/walletnode/api/gen/http/openapi3.json index 6fd5047d1..93a4cdeb1 100644 --- a/walletnode/api/gen/http/openapi3.json +++ b/walletnode/api/gen/http/openapi3.json @@ -1 +1 @@ -{"openapi":"3.0.3","info":{"title":"WalletNode REST API","version":"1.0"},"servers":[{"url":"http://localhost:8080"}],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionResponse"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch health-check-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the health check challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HcDetailedLogsMessage"},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HcSummaryStatsResult"},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftDetail"},"example":{"alt_rare_on_internet_dict_json_b64":"Voluptatem sit.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Rerum ea expedita voluptas et molestias animi.","green_address":false,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":2602995302,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"UmVwZWxsYXQgZnVnYSBleCBkb2xvcmlidXMgZG9sb3JlbXF1ZSBuZWNlc3NpdGF0aWJ1cyBub24u","rare_on_internet_graph_json_b64":"Sequi laboriosam sequi vel qui nostrum.","rare_on_internet_summary_table_json_b64":"Sint dolorum cumque illum consectetur unde aut.","rareness_score":1,"royalty":0.5854540372699677,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"T2NjYWVjYXRpIGF1dC4=","thumbnail_2":"QWxpcXVpZCBub2JpcyBjb25zZWN0ZXR1ciB2b2x1cHRhdGVtIGVvcyBpc3RlIHF1YXNpLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Quidem voluptas neque occaecati magnam."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDFPResultFile"},"example":{"file":"Aut repellendus adipisci pariatur accusamus commodi voluptatibus."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDServiceOutputFileResult"},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Itaque illo.","child_probability":0.20116164,"collection_name_string":"Possimus accusamus a qui maiores et aut.","cp_probability":0.90626305,"creator_name":"Voluptatem tempora adipisci modi.","creator_website":"Et qui autem et.","creator_written_statement":"Ab et.","does_not_impact_the_following_collection_strings":"Ipsum nisi officia sit eligendi soluta dolorem.","dupe_detection_system_version":"Sit occaecati rerum ab et.","file_type":"Amet ut explicabo modi aut accusantium non.","group_rareness_score":0.63844717,"hash_of_candidate_image_file":"Ipsam labore minima aut harum.","image_file_path":"Qui deserunt debitis repellat veniam pariatur.","image_fingerprint_of_candidate_image_file":[0.48178958212538464,0.8931785495175332,0.8825172062566221],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":true,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.5505988774455792,"nft_creation_video_youtube_url":"Suscipit voluptas quod placeat ut atque.","nft_keyword_set":"Adipisci et ut distinctio ipsum.","nft_series_name":"Quisquam nulla et accusantium.","nft_title":"In laboriosam expedita.","open_api_group_id_string":"Necessitatibus nulla dolorem.","open_nsfw_score":0.21658306,"original_file_size_in_bytes":1512147843409722071,"overall_rareness_score":0.5565024,"pastel_block_hash_when_request_submitted":"Eaque quis quo dolores at assumenda.","pastel_block_height_when_request_submitted":"A dolorem reiciendis atque.","pastel_id_of_registering_supernode_1":"Distinctio nihil consequuntur sed et.","pastel_id_of_registering_supernode_2":"Laudantium rerum expedita minus voluptatem aspernatur et.","pastel_id_of_registering_supernode_3":"Eligendi omnis excepturi adipisci.","pastel_id_of_submitter":"Reiciendis eum et placeat et deserunt doloremque.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.4710798,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.91616607,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.63995916,"preview_hash":"VXQgcmVydW0u","rareness_scores_table_json_compressed_b64":"Quos quis repellat provident architecto voluptatem sed.","similarity_score_to_first_entry_in_collection":0.15764219,"thumbnail1_hash":"SXBzYSBzaW50Lg==","thumbnail2_hash":"UXVpIHZvbHVwdGF0ZSBleGNlcHR1cmku","total_copies":3163669590710846450,"utc_timestamp_when_request_submitted":"Accusantium optio beatae molestiae est voluptatem est."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskResponseTinyCollection"},"example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterRequestBody"},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Illum inventore in minus.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterResult"},"example":{"task_id":"n6Qn6TFM"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"RXZlbmlldCBxdWlhLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageRes"},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterTaskResponseBody"},"example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","allowEmptyValue":true,"schema":{"type":"string","description":"Artist PastelID or special value; mine","example":"1m0","maxLength":256},"example":"vy1"},{"name":"limit","in":"query","description":"Number of results to be return","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of results to be return","default":10,"example":10,"format":"int64","minimum":10,"maximum":200},"example":10},{"name":"query","in":"query","description":"Query is search query entered by user","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Query is search query entered by user","example":"Debitis optio dolores sint quam dolor."},"example":"Error magni voluptatem quia qui enim facere."},{"name":"creator_name","in":"query","description":"Name of the nft creator","allowEmptyValue":true,"schema":{"type":"boolean","description":"Name of the nft creator","default":true,"example":true},"example":true},{"name":"art_title","in":"query","description":"Title of NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Title of NFT","default":true,"example":false},"example":false},{"name":"series","in":"query","description":"NFT series name","allowEmptyValue":true,"schema":{"type":"boolean","description":"NFT series name","default":true,"example":false},"example":false},{"name":"descr","in":"query","description":"Artist written statement","allowEmptyValue":true,"schema":{"type":"boolean","description":"Artist written statement","default":true,"example":false},"example":false},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Keyword that Artist assigns to NFT","default":true,"example":false},"example":false},{"name":"min_copies","in":"query","description":"Minimum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum number of created copies","example":1,"format":"int64","minimum":1,"maximum":1000},"example":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum number of created copies","example":1000,"format":"int64","minimum":1,"maximum":1000},"example":1000},{"name":"min_block","in":"query","description":"Minimum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum blocknum","default":1,"example":3540439880188411664,"format":"int64","minimum":1},"example":758130406742501945},{"name":"max_block","in":"query","description":"Maximum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum blocknum","example":3446396552371564919,"format":"int64","minimum":1},"example":7544698525104512975},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","allowEmptyValue":true,"schema":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"example":false},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"user_pastelid","in":"header","description":"User's PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"Passphrase of the User PastelID","example":"qwerasdf1234"},"example":"qwerasdf1234"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftSearchResult"},"example":{"match_index":1040234626420727314,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ChallengesScores"},"example":[{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979}]},"example":[{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979},{"health_check_challenge_score":0.04110607293809476,"ip_address":"Officiis ratione velit.","node_id":"Suscipit a laudantium consequatur necessitatibus.","storage_challenge_score":0.8964053134221979}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Accusamus blanditiis corporis ipsam cumque earum."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/downloads/{file_id}/status":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the state of download task","operationId":"cascade#getDownloadTaskState","parameters":[{"name":"file_id","in":"path","description":"File ID returned by Download V2 API","required":true,"schema":{"type":"string","description":"File ID returned by Download V2 API","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Registration"},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreRequestBody"},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreFile"},"example":{"activated_volumes":289633137219330910,"registered_volumes":6759088182095679156,"total_volumes":4401292699067561257,"volumes_activated_in_recovery_flow":8981725034405051899,"volumes_registration_in_progress":2570108940638669276,"volumes_with_pending_registration":2278213866228243539}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"schema":{"type":"string","description":"Uploaded asset file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"TmFtIGEu"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Asset"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/v2/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Starts downloading cascade Artifact.","operationId":"cascade#downloadV2","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Perspiciatis accusantium sed eveniet qui qui."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"QSBldmVuaWV0IG51bXF1YW0gdmVsLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssetV2"},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.008549268204480678,0.6563940678112433,0.5042167703792875,0.7980625121312597],"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DownloadResult"},"example":{"file":"U2FwaWVudGUgYXJjaGl0ZWN0byBvZmZpY2lhIGR1Y2ltdXMgdmVybyBleHBsaWNhYm8u"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"schema":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody2"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Earum quam et.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"TmFtIHF1byBuZXF1ZSBjdW1xdWUu"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Image"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch self-healing reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","allowEmptyValue":true,"schema":{"type":"string","description":"Specific event ID to fetch reports for","example":"event-123"},"example":"event-123"},{"name":"count","in":"query","description":"Number of reports to fetch","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of reports to fetch","example":10,"format":"int64"},"example":10}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SelfHealingReports"},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MetricsResult"},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch storage-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the storage challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StorageMessage"},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SummaryStatsResult"},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"schema":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"ActivationAttempt":{"type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"2004-10-12T07:31:58Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"Sint dignissimos quia."},"file_id":{"type":"string","description":"File ID","example":"Dicta dolore sequi."},"id":{"type":"integer","description":"ID","example":6095623085988049112,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":false}},"example":{"activation_attempt_at":"1975-03-22T18:00:03Z","error_message":"Eos at accusamus sunt.","file_id":"Aspernatur ducimus.","id":1538193004362662237,"is_successful":true},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScores":{"type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.66452837,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.7656112,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.37575012,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.5614808,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.51102895,"format":"float"}},"example":{"drawings":0.5703159,"hentai":0.7167511,"neutral":0.26442868,"porn":0.6442617,"sexy":0.55777264}},"Asset":{"type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"AssetV2":{"type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.847199881862724,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.16201706614597156,0.7965999471882294]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.21282193452890158,0.4491625713743623,0.39008631718165854,0.1885920166769558],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1514370597,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":7665255617375603928,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Eveniet odit voluptas."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Ea culpa distinctio repudiandae."},"start_index":{"type":"integer","description":"Start index","example":5226596782885260246,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Et id expedita qui nostrum."}},"description":"Data of challenge","example":{"block":1245267817,"end_index":547812972672561730,"file_hash":"Aliquid cumque dolore tenetur.","merkelroot":"Aperiam illo consequatur.","start_index":3277213621180435391,"timestamp":"Provident et voluptate distinctio nam ipsa."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScores":{"type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.7640542046355273,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Animi totam laboriosam et qui iure."},"node_id":{"type":"string","description":"Specific node id","example":"Fuga voluptatem ipsum voluptas eius."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.7324959148796738,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.20438164096656727,"ip_address":"Rerum repellat id.","node_id":"Occaecati maiores ut voluptatum dolor provident.","storage_challenge_score":0.5632933038658091},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CreateUserdataRequestBody":{"type":"object","properties":{"avatar_image":{"$ref":"#/components/schemas/UserImageUploadPayload"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/components/schemas/UserImageUploadPayload"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"DDFPResultFile":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Neque omnis tempora."}},"example":{"file":"Ut voluptas cum est molestiae."},"required":["file"]},"DDServiceOutputFileResult":{"type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/components/schemas/AlternativeNSFWScores"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"Qui velit qui iste."},"child_probability":{"type":"number","description":"child probability","example":0.8816837,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Cupiditate perspiciatis voluptatem aut."},"cp_probability":{"type":"number","description":"probability of CP","example":0.86713,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Animi aut itaque qui incidunt minima similique."},"creator_website":{"type":"string","description":"website of creator","example":"Qui iusto voluptas tenetur est hic adipisci."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"Et ut veritatis repudiandae facilis optio non."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Voluptatem corrupti repellendus nihil ipsa."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Alias dolorem aut."},"file_type":{"type":"string","description":"type of the file","example":"Sit ea maiores at nisi."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.60826373,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Eveniet alias exercitationem beatae architecto sequi."},"image_file_path":{"type":"string","description":"file path of the image","example":"Labore error distinctio."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.6895019762337847,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.7297500759675873,0.4307407703835172,0.18231999348297495,0.22517744197696887]},"internet_rareness":{"$ref":"#/components/schemas/InternetRareness"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":true},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.7721841509793138,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"Quia rem."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Qui commodi."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Nostrum omnis suscipit enim exercitationem."},"nft_title":{"type":"string","description":"title of NFT","example":"Dignissimos voluptas est eum est enim."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Occaecati in libero eos."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.21136375,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":4778032498927877012,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.2309514,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"Eius et libero alias hic voluptatibus sit."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Voluptatibus cumque nisi modi consequatur."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Soluta iste quo."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Officia autem quos qui modi."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"In ipsa ut voluptas."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Voluptas enim."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.8764374,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.3732366,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.46130848,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"Tm9uIGFsaWFzIGluIHF1aS4=","format":"binary"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Corporis minima."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.23129384,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"TmloaWwgdmVsaXQgbnVtcXVhbSBhYiBzaW50IGludmVudG9yZSBhdXQu","format":"binary"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"Vm9sdXB0YXRlbSBjdW1xdWUgdWxsYW0gY29ycnVwdGkgZXZlbmlldCB1dCB0ZW1wb3JpYnVzLg==","format":"binary"},"total_copies":{"type":"integer","description":"total copies of NFT","example":6809940013067523041,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Nobis sit eos provident voluptas."}},"example":{"alternative_nsfw_scores":{"drawings":0.053542916,"hentai":0.17044726,"neutral":0.01989352,"porn":0.7542108,"sexy":0.24790263},"candidate_image_thumbnail_webp_as_base64_string":"Rerum fugiat sed reiciendis ut.","child_probability":0.35175335,"collection_name_string":"Explicabo enim dolorem.","cp_probability":0.12968402,"creator_name":"Tempore dignissimos temporibus.","creator_website":"Rem nisi ut.","creator_written_statement":"Deserunt sunt quasi tempora et esse molestiae.","does_not_impact_the_following_collection_strings":"Doloribus ex.","dupe_detection_system_version":"Recusandae excepturi consequatur sapiente.","file_type":"Aliquid ratione blanditiis natus beatae amet.","group_rareness_score":0.6511306,"hash_of_candidate_image_file":"Ea aliquam corrupti distinctio est.","image_file_path":"Ut est.","image_fingerprint_of_candidate_image_file":[0.29919540342492684,0.6985188456775364,0.06740662993158088],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Magnam pariatur aut facilis.","earliest_available_date_of_internet_results":"Sed repudiandae voluptas dolor aut velit voluptatem.","min_number_of_exact_matches_in_page":1704813535,"rare_on_internet_graph_json_compressed_b64":"Aliquid provident eveniet.","rare_on_internet_summary_table_as_json_compressed_b64":"Quisquam corporis qui nobis dignissimos."},"is_likely_dupe":false,"is_pastel_openapi_request":false,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.9090540332421508,"nft_creation_video_youtube_url":"Inventore et iste.","nft_keyword_set":"Quaerat sint.","nft_series_name":"Pariatur tempore.","nft_title":"Non sit nostrum.","open_api_group_id_string":"Debitis dolor et natus.","open_nsfw_score":0.1995445,"original_file_size_in_bytes":5588971587130615713,"overall_rareness_score":0.73171234,"pastel_block_hash_when_request_submitted":"Culpa et sequi et et.","pastel_block_height_when_request_submitted":"Voluptatem eius dolorem quia doloribus autem velit.","pastel_id_of_registering_supernode_1":"Et eveniet id molestiae ut.","pastel_id_of_registering_supernode_2":"Minus perferendis deleniti.","pastel_id_of_registering_supernode_3":"Nobis illo doloribus reiciendis.","pastel_id_of_submitter":"Ut laboriosam sit ex molestiae.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.59682155,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.87328106,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.3961445,"preview_hash":"SW5jaWR1bnQgc2l0IGN1cGlkaXRhdGUgY29uc2VjdGV0dXIu","rareness_scores_table_json_compressed_b64":"Quam velit tempora.","similarity_score_to_first_entry_in_collection":0.8728859,"thumbnail1_hash":"TnVtcXVhbSByZXJ1bSBzdW50IGxhYm9yaW9zYW0gdm9sdXB0YXRpYnVzLg==","thumbnail2_hash":"TmF0dXMgdGVuZXR1ci4=","total_copies":1239003511493090436,"utc_timestamp_when_request_submitted":"Explicabo natus."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"Details":{"type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Eum ut et maiores a quis dolor.":"Ipsum rem aut perferendis ratione fugiat.","Mollitia eius vitae deleniti quia.":"At necessitatibus numquam qui dolorem reprehenderit.","Omnis ad.":"Accusamus quia."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Accusamus animi deleniti fugit fuga iusto cumque.":"Sit mollitia inventore.","Ex rerum quasi cum quia.":"Tempore atque.","Nemo eum hic maiores.":"Nihil eos placeat sed sit."},"message":"Image has been downloaded..."}},"DownloadResult":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"QXV0IHF1YWVyYXQgdXQgcmVtIHN1bnQgYWxpYXMgYXV0ZW0u","format":"binary"}},"example":{"file":"QXV0ZW0gYWNjdXNhbnRpdW0gc2l0IGRvbG9yIHF1YWVyYXQgZXQgYXV0Lg=="},"required":["file"]},"Error":{"type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":168066308,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"At pariatur ullam et."},"is_verified":{"type":"boolean","description":"IsVerified","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Saepe voluptatem autem."},"timestamp":{"type":"string","description":"Timestamp","example":"Unde excepturi corrupti et et."}},"description":"Data of evaluation","example":{"block":318941857,"hash":"Totam aspernatur suscipit est libero tempore totam.","is_verified":false,"merkelroot":"Consectetur distinctio tenetur nostrum doloribus.","timestamp":"Temporibus vitae aliquam incidunt ut autem."},"required":["timestamp","hash","is_verified"]},"EventTicket":{"type":"object","properties":{"data_hash":{"type":"string","example":"TWluaW1hIHF1aXNxdWFtIHNhcGllbnRlIHZvbHVwdGF0dW0gc2ltaWxpcXVlIGF0cXVlLg==","format":"binary"},"missing_keys":{"type":"array","items":{"type":"string","example":"Corrupti eaque laborum."},"example":["Sed voluptatem aliquam est qui.","Aut reiciendis.","Corporis ipsum deleniti eos.","Libero eaque error omnis aut ut."]},"recipient":{"type":"string","example":"Exercitationem molestias enim."},"ticket_type":{"type":"string","example":"Aut voluptatum veritatis qui qui voluptatem."},"tx_id":{"type":"string","example":"Sunt autem est soluta iste omnis."}},"example":{"data_hash":"UGFyaWF0dXIgb2RpbyBxdWkgdmVsIHN1bnQgbWludXMgYWxpYXMu","missing_keys":["Quo id ut quae atque.","Suscipit ut voluptatum explicabo quaerat.","Sit illum ea est occaecati."],"recipient":"Similique doloribus placeat itaque rerum architecto.","ticket_type":"Officia totam unde quia.","tx_id":"Et sed nam distinctio deleniti."}},"File":{"type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/components/schemas/ActivationAttempt"},"description":"List of activation attempts","example":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Rerum id quis accusamus dolores."},"base_file_id":{"type":"string","description":"Base File ID","example":"Ea blanditiis."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Nam quasi et autem quod expedita."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"Reiciendis velit modi dignissimos quasi."},"done_block":{"type":"integer","description":"Done Block","example":6156290738512412607,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Accusantium ea maxime."},"file_index":{"type":"string","description":"Index of the file","example":"Consequuntur accusamus maiores quo vel."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Architecto voluptas dolore dolorem."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":false},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Aut cumque consequuntur iure ea illum nam."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"Fugiat praesentium minus illum ducimus id."},"registration_attempts":{"type":"array","items":{"$ref":"#/components/schemas/RegistrationAttempt"},"description":"List of registration attempts","example":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.9392335712666725,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.881792511024194,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.4246467510622976,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":898403306,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Minus suscipit."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"2006-12-29T00:55:23Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Autem velit quibusdam laboriosam maiores possimus."}},"example":{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Ex eos nam neque dolore.","base_file_id":"Blanditiis at.","burn_txn_id":"Quia explicabo vel.","cascade_metadata_ticket_id":"Est debitis ipsa.","done_block":4919011026986690408,"file_id":"Aperiam minus.","file_index":"Amet sapiente inventore quo sit exercitationem.","hash_of_original_big_file":"Libero et delectus veniam.","is_concluded":false,"name_of_original_big_file_with_ext":"Nostrum est voluptatibus cupiditate.","reg_txid":"Mollitia unde quibusdam enim voluptatem sit.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.7366533305728714,"req_burn_txn_amount":0.7432564875575534,"size_of_original_big_file":0.6588947677341078,"start_block":490931683,"task_id":"Iure placeat accusantium id et aut minus.","upload_timestamp":"1995-10-31T05:51:58Z","uuid_key":"Nam molestiae et."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FileDownloadResult":{"type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"At provident."}},"example":{"file_id":"Expedita recusandae laboriosam est."},"required":["file_id"]},"FuzzyMatch":{"type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"keyword","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":6102026387781643114,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[6796449924094537885,959140564434932267]},"score":{"type":"integer","description":"Score used to rank matches","example":3009724268324206974,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Animi sed consequatur sit ipsa."}},"example":{"field_type":"series","matched_indexes":[2705673492284656983,5654908727100686296],"score":3177851692914113633,"str":"Autem doloribus aut numquam."}},"HCChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":255194099,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Ut consequatur ex et et ut alias."},"timestamp":{"type":"string","description":"Timestamp","example":"Consectetur qui consectetur id saepe."}},"description":"Data of challenge","example":{"block":1908546163,"merkelroot":"Facilis voluptatibus soluta id omnis accusamus.","timestamp":"Nemo ut nostrum sit natus molestiae eos."},"required":["timestamp"]},"HCEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1613011766,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Unde quo voluptatibus magnam quaerat esse consequatur."},"timestamp":{"type":"string","description":"Timestamp","example":"Et quia."}},"description":"Data of evaluation","example":{"block":255672509,"is_verified":true,"merkelroot":"Ducimus odio aut sapiente.","timestamp":"Perspiciatis amet adipisci porro ea vel eveniet."},"required":["timestamp","is_verified"]},"HCObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1837709241,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":false},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":false},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Harum soluta recusandae harum ut."},"timestamp":{"type":"string","description":"Timestamp","example":"Ipsum totam excepturi reiciendis quis."}},"description":"Data of Observer's evaluation","example":{"block":112508918,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":false,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Et earum cupiditate voluptas suscipit ipsa.","timestamp":"Architecto dolore qui magni."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCSummaryStats":{"type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":1807062504447446222,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":8248181690542126150,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":3177489983924016672,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":4711640194374212281,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":5299326988258299892,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":8818547790092084190,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":7249719424045644874,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":4494881681012147907,"no_of_invalid_signatures_observed_by_observers":6093051522462056040,"no_of_slow_responses_observed_by_observers":9055426637750004947,"total_challenges_evaluated_by_challenger":5707090490098316729,"total_challenges_issued":7749705948070744961,"total_challenges_processed_by_recipient":6515646547329763792,"total_challenges_verified":6645127549352825865},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/HCChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Perspiciatis dolore sit."},"challenger_evaluation":{"$ref":"#/components/schemas/HCEvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Architecto totam."},"message_type":{"type":"string","description":"type of the message","example":"Et id est optio sit."},"observer_evaluation":{"$ref":"#/components/schemas/HCObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Asperiores harum."},"description":"List of observer IDs","example":["Fugit aut quis unde velit velit.","Non fugit minus rerum perspiciatis.","Reprehenderit dolorum excepturi magnam officiis facilis laborum.","Consequatur laudantium voluptate labore similique."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Eum reprehenderit voluptas."},"response":{"$ref":"#/components/schemas/HCChallengeData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Recusandae placeat iure ut labore provident."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Natus accusantium."}},"description":"HealthCheck challenge message data","example":{"challenge":{"block":161855103,"merkelroot":"Occaecati in reiciendis quia repudiandae.","timestamp":"Necessitatibus sed est sunt."},"challenge_id":"Eligendi at modi cupiditate.","challenger_evaluation":{"block":372559801,"is_verified":false,"merkelroot":"Impedit quis autem et et neque.","timestamp":"Explicabo dolore."},"challenger_id":"Corporis explicabo est.","message_type":"Fugiat aspernatur facilis.","observer_evaluation":{"block":1881554591,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":false,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Hic voluptas doloremque eligendi et magni.","timestamp":"Perspiciatis earum."},"observers":["Quia laboriosam neque odit.","Et ipsum."],"recipient_id":"Ut voluptates dolor.","response":{"block":1874672230,"merkelroot":"Voluptate ipsa et ut dicta temporibus ut.","timestamp":"Deserunt mollitia est a labore."},"sender_id":"Praesentium similique itaque ea enim autem impedit.","sender_signature":"Alias velit tempore."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HcSummaryStatsResult":{"type":"object","properties":{"hc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":17085067897739032,"no_of_invalid_signatures_observed_by_observers":1070531802164886396,"no_of_slow_responses_observed_by_observers":2452954398688763778,"total_challenges_evaluated_by_challenger":1497037936453433297,"total_challenges_issued":5146044089880070113,"total_challenges_processed_by_recipient":5356106859537814149,"total_challenges_verified":5844922895958038468}},"required":["hc_summary_stats"]},"Image":{"type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"ImageRes":{"type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"InternetRareness":{"type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Ipsam inventore est."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Aut voluptates et beatae consequatur."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":3900146870,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Dolores et."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Voluptatum sed mollitia sint."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Numquam et.","earliest_available_date_of_internet_results":"Ut laboriosam aut ratione voluptatem.","min_number_of_exact_matches_in_page":4281481948,"rare_on_internet_graph_json_compressed_b64":"Ex sed.","rare_on_internet_summary_table_as_json_compressed_b64":"Voluptatem aliquid aspernatur."}},"MetricsResult":{"type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/components/schemas/SHExecutionStats"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/components/schemas/SHTriggerStats"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]}},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":5551622164662787660,"total_files_healed":8671724886982383594,"total_reconstruction_not_required_evaluations_approved":3509617877318915873,"total_reconstruction_required_evaluations_approved":2598935111695686044,"total_reconstruction_required_evaluations_not_approved":645871039112296182,"total_reconstruction_required_hash_mismatch":6198218032159021896,"total_reconstructions_not_required_evaluations_not_approved":6224481363842689139,"total_self_healing_events_accepted":5676342644268881237,"total_self_healing_events_acknowledged":305624170386109632,"total_self_healing_events_evaluations_unverified":1687102203985295374,"total_self_healing_events_evaluations_verified":7201039114224972892,"total_self_healing_events_issued":7624509276581647432,"total_self_healing_events_rejected":8106553798825109777},"self_healing_trigger_events_stats":[{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."},{"list_of_nodes":"Nesciunt autem vel est.","nodes_offline":4186693389945997111,"total_files_identified":5916702575799384876,"total_tickets_identified":3422563547898111768,"trigger_id":"Accusamus cumque voluptatem exercitationem ab."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"NftDetail":{"type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Voluptatibus ut qui qui eos."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Repudiandae eos voluptatibus voluptas laudantium dolor."},"green_address":{"type":"boolean","description":"Green address","example":true},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":1095823983,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"UGFyaWF0dXIgZWEgZW9zIGRlbGVjdHVzIGVhcXVlIGlzdGUgYXQu","format":"binary"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Nostrum laudantium ea dolores occaecati incidunt."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Quae necessitatibus quia amet necessitatibus est."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.3989923141701758,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"SWQgbGFib3Jpb3NhbSBtb2xlc3RpYXMgYmxhbmRpdGlpcyB2b2x1cHRhdGUgYWxpcXVpZCBjb25zZXF1YXR1ci4=","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"RWEgdml0YWUu","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Et hic sed deleniti repellendus.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Enim perspiciatis maxime asperiores.","green_address":true,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":1288258079,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"UmVwcmVoZW5kZXJpdCBzZWQu","rare_on_internet_graph_json_b64":"Vero optio maiores hic provident recusandae rem.","rare_on_internet_summary_table_json_b64":"Quia recusandae ipsam est quia incidunt.","rareness_score":1,"royalty":0.36445655653960873,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"U3VzY2lwaXQgZXNzZSBuaXNpIGFwZXJpYW0gZGVsZWN0dXMgZWEgZXhwbGljYWJvLg==","thumbnail_2":"UXVpYSBlYSBvbW5pcyBhZCBtYWduaS4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftRegisterPayload":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Consequatur voluptates voluptas qui commodi deleniti qui."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Minima et eligendi fuga repudiandae beatae laudantium.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftSearchResult":{"type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":8815865718703222196,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/components/schemas/FuzzyMatch"},"description":"Match result details","example":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}]},"nft":{"$ref":"#/components/schemas/NftSummary"}},"example":{"match_index":914775292025259545,"matches":[{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."},{"field_type":"art_title","matched_indexes":[3612816769359928583,2434896289749192084,6872177758464281011],"score":3987001657133176801,"str":"Corrupti natus sit velit consequatur."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"UmF0aW9uZSBlc3QgZmFjaWxpcy4=","thumbnail_2":"TnVsbGEgbGFib3J1bSBxdW9zIHZlbC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftSummary":{"type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"UXVhcyBhYiBkb2xvcmVzIGFwZXJpYW0u","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"UmVtIGV0IHV0IHF1b2Qu","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"U3VudCBpcHNhbSBjdW1xdWUgcmVydW0gZG9sb3IgZXhlcmNpdGF0aW9uZW0u","thumbnail_2":"T3B0aW8gc2l0IGVhcnVtLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"ObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":2022086719,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":false},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":true},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Minus repellendus quaerat explicabo molestiae dolorem."},"reason":{"type":"string","description":"Reason","example":"Fuga dolorem ea reprehenderit quia."},"timestamp":{"type":"string","description":"Timestamp","example":"Accusamus veniam."},"true_hash":{"type":"string","description":"TrueHash","example":"Dicta explicabo aperiam consequatur."}},"description":"Data of Observer's evaluation","example":{"block":1828914406,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Esse voluptatem quibusdam nihil.","reason":"Nam aut.","timestamp":"Porro eius dolorem est.","true_hash":"Consequatur iusto repudiandae reprehenderit est."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegisterCollectionRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Sunt officiis magnam ea."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"RegisterCollectionResponse":{"type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"RegisterRequestBody":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Quis sit et consectetur quisquam repellat sequi."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/Thumbnailcoordinate"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Esse non impedit.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"RegisterResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"RegisterTaskResponseBody":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/components/schemas/TaskState"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Ut eos et quos autem.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"Registration":{"type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/components/schemas/File"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]}},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."},{"activation_attempts":[{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true},{"activation_attempt_at":"1976-01-17T20:08:30Z","error_message":"Adipisci vero ut provident.","file_id":"Animi non.","id":8187970716996098639,"is_successful":true}],"activation_txid":"Voluptatem aliquam molestias.","base_file_id":"Dignissimos id dolorem et totam.","burn_txn_id":"Repellat commodi.","cascade_metadata_ticket_id":"Inventore molestias perferendis unde qui qui dicta.","done_block":649100778871101980,"file_id":"Inventore illo.","file_index":"Qui eum et dolorum esse dicta aut.","hash_of_original_big_file":"Ipsa deserunt qui velit quasi quia.","is_concluded":true,"name_of_original_big_file_with_ext":"Officia quis.","reg_txid":"Numquam voluptas.","registration_attempts":[{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"},{"error_message":"Consectetur quas.","file_id":"Veniam accusantium.","finished_at":"1999-11-22T20:03:19Z","id":8874338336868617,"is_successful":false,"processor_sns":"Sit aliquam dolorem deserunt tenetur distinctio voluptas.","reg_started_at":"2006-02-20T22:03:54Z"}],"req_amount":0.8217214546342201,"req_burn_txn_amount":0.0062028958461957965,"size_of_original_big_file":0.8474169125149866,"start_block":256891858,"task_id":"Et autem.","upload_timestamp":"1989-07-01T07:51:12Z","uuid_key":"Doloribus alias qui est."}]},"required":["files"]},"RegistrationAttempt":{"type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Voluptatem consequatur architecto possimus."},"file_id":{"type":"string","description":"File ID","example":"Qui incidunt velit."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"2003-02-01T10:02:34Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":1612055692617853928,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":false},"processor_sns":{"type":"string","description":"Processor SNS","example":"Omnis ipsam illum."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"2012-05-14T04:22:17Z","format":"date-time"}},"example":{"error_message":"Eum voluptatem hic consequatur qui veritatis.","file_id":"Aut libero nobis qui sit.","finished_at":"1996-11-10T22:28:46Z","id":5895971488814617698,"is_successful":true,"processor_sns":"Officia consequuntur sequi itaque doloremque qui qui.","reg_started_at":"1998-07-10T20:17:43Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":true},"missing_keys":{"type":"array","items":{"type":"string","example":"Quis adipisci amet voluptas nisi explicabo."},"example":["In debitis quia atque molestias.","Asperiores culpa sunt sit.","Similique porro voluptatem cum consequatur ut et."]},"reconstructed_file_hash":{"type":"string","example":"QWRpcGlzY2kgZXggcmVydW0gcXVpIHF1YW0gaXRhcXVlIGluLg==","format":"binary"},"ticket_type":{"type":"string","example":"Doloremque vel doloremque facere."},"tx_id":{"type":"string","example":"In voluptatem sed enim impedit."}},"example":{"is_reconstruction_required":false,"missing_keys":["Iure aperiam ut sapiente.","Quaerat est quae architecto deleniti.","In officiis aspernatur deserunt.","Ut officia."],"reconstructed_file_hash":"SXVzdG8gZXhjZXB0dXJpIGxhYm9yaW9zYW0gb2NjYWVjYXRpIGFjY3VzYW50aXVtLg==","ticket_type":"Cum dolor.","tx_id":"Alias quo amet voluptatem."}},"ResponseData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1830926455,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Et fuga quos odio."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Est amet labore rerum consequuntur numquam autem."},"timestamp":{"type":"string","description":"Timestamp","example":"Et culpa doloremque id corrupti minima amet."}},"description":"Data of response","example":{"block":1743298666,"hash":"Sed reprehenderit harum quas ab quaerat.","merkelroot":"Vero laborum sunt tenetur exercitationem et reprehenderit.","timestamp":"Nulla reiciendis sit."},"required":["timestamp"]},"RestoreFile":{"type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":806571868897374333,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":7545780460008396473,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":1665300231075412669,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":398681028404636651,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":1357198289991579544,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":3396363195058332263,"format":"int64"}},"example":{"activated_volumes":5650439815539890343,"registered_volumes":3031149071443920694,"total_volumes":7161817749037530316,"volumes_activated_in_recovery_flow":6024487610152049805,"volumes_registration_in_progress":5792437328606046464,"volumes_with_pending_registration":4365828140604197761},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"RestoreRequestBody":{"type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"SHExecutionStats":{"type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":879295683357536917,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":561289090697403675,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":3740670154458596332,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":7082670242566329789,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":1139166420317043116,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":4987601387876620942,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":2088254083994164728,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":8188130298552292266,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":5951863253232021290,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":3799024174070481865,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":6564643128404903284,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":2700767640222453508,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":587181744822064718,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":4132569794906174981,"total_files_healed":299449972248189702,"total_reconstruction_not_required_evaluations_approved":3948085026758093264,"total_reconstruction_required_evaluations_approved":7890445729771450423,"total_reconstruction_required_evaluations_not_approved":3761061347061502409,"total_reconstruction_required_hash_mismatch":8670542380715302054,"total_reconstructions_not_required_evaluations_not_approved":4323782701548225820,"total_self_healing_events_accepted":6384457494329020345,"total_self_healing_events_acknowledged":1502303318195151610,"total_self_healing_events_evaluations_unverified":611683296482964614,"total_self_healing_events_evaluations_verified":1700215197640479597,"total_self_healing_events_issued":2872196506620467630,"total_self_healing_events_rejected":3503350653128617398},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStats":{"type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"Amet quaerat blanditiis consequatur et perferendis."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":7038159273472894165,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":4928475190187598797,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":5291546525723281204,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Dolorum atque sequi."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"Et ratione fuga nobis incidunt est.","nodes_offline":2634691086720156436,"total_files_identified":4911447140705622375,"total_tickets_identified":7697835316004070642,"trigger_id":"Non explicabo."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"SelfHealingChallengeData":{"type":"object","properties":{"block":{"type":"integer","example":1677968800,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/components/schemas/EventTicket"},"example":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}]},"merkelroot":{"type":"string","example":"Eveniet iure id corporis et."},"nodes_on_watchlist":{"type":"string","example":"Sunt est dolor hic."},"timestamp":{"type":"string","example":"In velit suscipit id."}},"example":{"block":983726503,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Accusantium rerum aspernatur et debitis.","nodes_on_watchlist":"Mollitia magni aut molestiae similique.","timestamp":"Qui nostrum et harum enim voluptates et."}},"SelfHealingMessage":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/SelfHealingMessageData"},"message_type":{"type":"string","example":"Ipsa molestiae."},"sender_id":{"type":"string","example":"Repellat enim a ullam qui."},"sender_signature":{"type":"string","example":"TW9sZXN0aWFzIGFzcGVyaW9yZXMgcmVpY2llbmRpcyBxdW9zIHF1aWJ1c2RhbSBxdWFzaS4=","format":"binary"},"trigger_id":{"type":"string","example":"Sit amet eligendi beatae commodi itaque."}},"example":{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Odio et nihil voluptatum.","sender_id":"Dolorum qui accusantium blanditiis voluptas aut fugiat.","sender_signature":"U2l0IGluY2lkdW50Lg==","trigger_id":"Quod autem repellendus fugiat beatae officia voluptatem."}},"SelfHealingMessageData":{"type":"object","properties":{"challenger_id":{"type":"string","example":"Magni quod architecto ipsa laborum consectetur praesentium."},"event_details":{"$ref":"#/components/schemas/SelfHealingChallengeData"},"recipient_id":{"type":"string","example":"Consequatur vel sed."},"response":{"$ref":"#/components/schemas/SelfHealingResponseData"},"verification":{"$ref":"#/components/schemas/SelfHealingVerificationData"}},"example":{"challenger_id":"Qui quisquam cum quasi dolores quod.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Modi incidunt dolore dolor a eligendi.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}}},"SelfHealingMessageKV":{"type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Magnam ipsum corrupti iste sequi."},"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessage"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"example":{"message_type":"Quasi eveniet harum qui.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}},"SelfHealingReport":{"type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessageKV"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"example":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},"SelfHealingReportKV":{"type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Praesentium ducimus ea voluptates optio et sed."},"report":{"$ref":"#/components/schemas/SelfHealingReport"}},"example":{"event_id":"Dolorum velit aliquam eum quod aut.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}},"SelfHealingReports":{"type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingReportKV"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"example":{"reports":[{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}},{"event_id":"Eum itaque totam dicta.","report":{"messages":[{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]},{"message_type":"Recusandae ipsa sit ipsa.","messages":[{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."},{"data":{"challenger_id":"Omnis in quaerat molestiae iusto.","event_details":{"block":1202389484,"event_tickets":[{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."},{"data_hash":"TWFnbmFtIGlwc3VtIGl0YXF1ZSBwcm92aWRlbnQu","missing_keys":["Totam qui.","Aliquam quidem."],"recipient":"Aliquid voluptatem.","ticket_type":"Repellat qui reprehenderit id ex ea.","tx_id":"Amet et sunt."}],"merkelroot":"Aperiam voluptates magnam.","nodes_on_watchlist":"Et iste nisi eos.","timestamp":"Voluptatem nobis."},"recipient_id":"Sed a cupiditate repellat at non et.","response":{"block":1982812630,"event_id":"Sapiente nulla ipsum qui.","merkelroot":"Totam et.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Sunt consectetur laudantium.","verifiers":["Quibusdam sit id pariatur.","Est consectetur aut voluptas repellat."]},"verification":{"block":125244077,"event_id":"Voluptatibus sint modi voluptas quisquam quisquam.","merkelroot":"Quo quia doloribus aut numquam deleniti.","timestamp":"Esse dolorem id molestiae iusto.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Voluptas nihil et voluptates sed.":"U2FwaWVudGUgc2VxdWkgdWxsYW0gbmVxdWUu"}}},"message_type":"Delectus aut rerum.","sender_id":"Quas ut natus beatae voluptatem quis dolorum.","sender_signature":"VXQgZG9sb3IgZGVsZWN0dXMgYXV0IGRpY3RhLg==","trigger_id":"Ut omnis."}]}]}}]}},"SelfHealingResponseData":{"type":"object","properties":{"block":{"type":"integer","example":15564711,"format":"int32"},"event_id":{"type":"string","example":"Consequuntur necessitatibus eveniet."},"merkelroot":{"type":"string","example":"Dolor harum laborum non qui."},"responded_ticket":{"$ref":"#/components/schemas/RespondedTicket"},"timestamp":{"type":"string","example":"Unde soluta ad."},"verifiers":{"type":"array","items":{"type":"string","example":"Qui ut qui ut."},"example":["Sequi veritatis fuga consequuntur maxime aut.","Voluptas est."]}},"example":{"block":1344120165,"event_id":"Quas id id ut consectetur.","merkelroot":"Quia a adipisci esse.","responded_ticket":{"is_reconstruction_required":true,"missing_keys":["Nihil molestias.","Quia aut.","Expedita ea nostrum fuga excepturi."],"reconstructed_file_hash":"QXJjaGl0ZWN0byB2ZWxpdC4=","ticket_type":"Veniam porro corrupti voluptates consequatur.","tx_id":"Ipsam qui voluptatibus aspernatur ducimus omnis."},"timestamp":"Excepturi laudantium consectetur fugit quibusdam sit.","verifiers":["Rem dicta.","Id labore.","Modi accusamus et perspiciatis cumque praesentium.","Ut ipsa odit."]}},"SelfHealingVerificationData":{"type":"object","properties":{"block":{"type":"integer","example":1701068661,"format":"int32"},"event_id":{"type":"string","example":"Dicta non."},"merkelroot":{"type":"string","example":"Magnam omnis debitis consequatur aspernatur excepturi."},"timestamp":{"type":"string","example":"Numquam consectetur voluptatum."},"verified_ticket":{"$ref":"#/components/schemas/VerifiedTicket"},"verifiers_data":{"type":"object","example":{"Et et iure.":"Vm9sdXB0YXR1bSByZXB1ZGlhbmRhZSBpbmNpZHVudCB2ZW5pYW0gZGViaXRpcyByZXBlbGxlbmR1cyBtb2RpLg==","Voluptas atque magni qui dolore et rerum.":"RmFjZXJlIHJlcHVkaWFuZGFlLg=="},"additionalProperties":{"type":"string","example":"Q29uc2VjdGV0dXIgZXhwZWRpdGEgZG9sb3IgZWEgcXVvcy4=","format":"binary"}}},"example":{"block":469848106,"event_id":"Voluptatum est.","merkelroot":"Quo consequuntur id.","timestamp":"Est vero qui itaque facilis ut et.","verified_ticket":{"is_reconstruction_required":false,"is_verified":true,"message":"Libero et alias.","missing_keys":["Et quia.","Qui vel dolor."],"reconstructed_file_hash":"T21uaXMgYXV0IGFkaXBpc2NpIG9jY2FlY2F0aSB2b2x1cHRhdGVzIGFiIGR1Y2ltdXMu","ticket_type":"Dolor qui aut expedita.","tx_id":"Saepe excepturi nisi est est veritatis."},"verifiers_data":{"Consequuntur saepe qui.":"Q3VtIHByYWVzZW50aXVtIGV4IHF1aSBxdWkgc2FlcGUu","Deserunt omnis nesciunt et eos dolores.":"SXN0ZSBuYXR1cyBlbmltIGlzdGUu","Sed reprehenderit molestias odio sit facere repellat.":"U2ludCBxdWkgaXVyZSBpcHNhLg=="}}},"StartProcessingRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Rerum harum esse et."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"StartProcessingRequestBody2":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Nulla eveniet non vitae qui ducimus."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Similique nam et odio vero consectetur.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"StartProcessingResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"StorageMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/ChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Amet qui voluptatibus magni consectetur voluptate."},"challenger_evaluation":{"$ref":"#/components/schemas/EvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Numquam sed et eos a officia iusto."},"message_type":{"type":"string","description":"type of the message","example":"Et nulla laudantium."},"observer_evaluation":{"$ref":"#/components/schemas/ObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Laboriosam vero fuga illum mollitia non ducimus."},"description":"List of observer IDs","example":["Laudantium animi architecto ea.","Veniam quidem quia amet et qui."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Rerum ut cum quo et."},"response":{"$ref":"#/components/schemas/ResponseData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Sint explicabo molestias aliquam repellendus nobis."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Mollitia qui laudantium maiores."}},"description":"Storage challenge message data","example":{"challenge":{"block":626674453,"end_index":1362782358179080945,"file_hash":"Molestias aut beatae.","merkelroot":"Sint aut repellat consequatur dignissimos voluptatibus.","start_index":6285852628941175332,"timestamp":"Odio deleniti omnis maiores dolorem."},"challenge_id":"Provident voluptas dolorem.","challenger_evaluation":{"block":346663458,"hash":"Voluptatem sint recusandae.","is_verified":true,"merkelroot":"Et rem ducimus maxime aut.","timestamp":"Fugit eaque nesciunt eum quasi."},"challenger_id":"Omnis non neque ducimus alias magni rerum.","message_type":"Voluptas odit quae quo ut saepe aperiam.","observer_evaluation":{"block":1725989442,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Ut provident pariatur.","reason":"Ut quia repellendus.","timestamp":"Voluptas exercitationem quisquam id accusantium voluptatibus.","true_hash":"Architecto sit quidem deserunt rem dolore aut."},"observers":["Qui dignissimos quae.","Dolores dolor ut totam vel officia."],"recipient_id":"Fuga voluptatem libero tempora vel consectetur.","response":{"block":2076283382,"hash":"Dolor autem quo vero quia quod omnis.","merkelroot":"Et ullam officiis libero.","timestamp":"Qui non quibusdam."},"sender_id":"Sunt libero hic.","sender_signature":"Molestiae non fuga animi architecto."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"SummaryStatsResult":{"type":"object","properties":{"sc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":2982554539974798863,"no_of_invalid_signatures_observed_by_observers":804645458629257575,"no_of_slow_responses_observed_by_observers":6016941875889227877,"total_challenges_evaluated_by_challenger":9084935928395605172,"total_challenges_issued":554226313255902356,"total_challenges_processed_by_recipient":9153767776266110855,"total_challenges_verified":6924812056467069635}},"required":["sc_summary_stats"]},"TaskHistory":{"type":"object","properties":{"details":{"$ref":"#/components/schemas/Details"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskResponseTinyCollection":{"type":"array","items":{"$ref":"#/components/schemas/TaskResponseTiny"},"description":"RegisterTasksResponseBody is the result type for an array of TaskResponse (tiny view)","example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Dolorem repellendus omnis.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"TaskState":{"type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"Thumbnailcoordinate":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UploadAssetRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"UmVtIGV4Y2VwdHVyaSBlYXJ1bSB0ZW1wb3JlIHRlbXBvcmlidXMgcXVpcyBhc3Blcm5hdHVyLg==","format":"binary"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"TnVsbGEgZnVnaXQgY29uc2VjdGV0dXIgZXN0IGRpc3RpbmN0aW8gbWFnbmku"},"required":["file"]},"UploadImageRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"TW9sZXN0aWFlIGxhYm9ydW0gcXVpYnVzZGFtLg==","format":"binary"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"Vm9sdXB0YXRlbSBpcHNhbSBudWxsYSBmYWNlcmUu"},"required":["file"]},"UserImageUploadPayload":{"type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"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","format":"binary"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserdataProcessResult":{"type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"is_verified":{"type":"boolean","example":true},"message":{"type":"string","example":"Mollitia quibusdam vel saepe dignissimos impedit consequatur."},"missing_keys":{"type":"array","items":{"type":"string","example":"Adipisci quod non dignissimos veniam porro et."},"example":["Reiciendis sit.","Voluptas repellendus aut velit nesciunt.","Aut aut.","Et quia maiores minima dolor."]},"reconstructed_file_hash":{"type":"string","example":"Q3VwaWRpdGF0ZSBpcHNhLg==","format":"binary"},"ticket_type":{"type":"string","example":"Ipsum recusandae illum voluptatum."},"tx_id":{"type":"string","example":"Qui reprehenderit est."}},"example":{"is_reconstruction_required":true,"is_verified":false,"message":"Laborum unde officiis ipsum quidem qui et.","missing_keys":["Soluta ullam provident ea.","Ea et nisi.","Omnis provident aperiam molestiae."],"reconstructed_file_hash":"QXV0ZW0gYXRxdWUgYXV0IGVuaW0gY29uc2VxdWF0dXIu","ticket_type":"Ea molestias.","tx_id":"Debitis voluptatem."}}},"securitySchemes":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}},"tags":[{"name":"cascade","description":"OpenAPI Cascade service"},{"name":"collection","description":"OpenAPI Collection service"},{"name":"HealthCheckChallenge","description":"HealthCheck Challenge service for to return health check related data"},{"name":"nft","description":"Pastel NFT"},{"name":"Score","description":"Score service for return score related to challenges"},{"name":"metrics","description":"Metrics service for fetching data over a specified time range"},{"name":"sense","description":"OpenAPI Sense service"},{"name":"StorageChallenge","description":"Storage Challenge service for to return storage-challenge related data"},{"name":"userdatas","description":"Pastel Process User Specified Data"}]} \ No newline at end of file +{"openapi":"3.0.3","info":{"title":"WalletNode REST API","version":"1.0"},"servers":[{"url":"http://localhost:8080"}],"paths":{"/collection/register":{"post":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerCollection","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterCollectionResponse"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/collection/{taskId}/history":{"get":{"tags":["collection"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"collection#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/collection/{taskId}/state":{"get":{"tags":["collection"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"collection#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/healthcheck_challenge/detailed_logs":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches health-check-challenge reports","description":"Fetches health-check-challenge reports","operationId":"HealthCheckChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch health-check-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch health-check-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the health check challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the health check challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HcDetailedLogsMessage"},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]},"example":[{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."},{"challenge":{"block":386439617,"merkelroot":"Dolorum quaerat.","timestamp":"Et nesciunt."},"challenge_id":"Consequatur repudiandae ut natus odit.","challenger_evaluation":{"block":1648580362,"is_verified":true,"merkelroot":"Similique odit.","timestamp":"Modi est velit minus qui occaecati veritatis."},"challenger_id":"Ut rem.","message_type":"Assumenda saepe laboriosam unde ab in.","observer_evaluation":{"block":2134312480,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Eius excepturi et sed.","timestamp":"Tenetur voluptatem nemo eum aliquid."},"observers":["Aut voluptatem dolor.","Possimus dolorem ut veritatis vitae eum magni.","Mollitia fugiat."],"recipient_id":"Debitis exercitationem.","response":{"block":1559432072,"merkelroot":"Rerum aliquam.","timestamp":"Aut repellendus dolorem cumque perspiciatis."},"sender_id":"Sint commodi.","sender_signature":"Aut accusamus vitae."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/healthcheck_challenge/summary_stats":{"get":{"tags":["HealthCheckChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"HealthCheckChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HcSummaryStatsResult"},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":5298572403287664370,"no_of_invalid_signatures_observed_by_observers":3383689589076681506,"no_of_slow_responses_observed_by_observers":827764771293379553,"total_challenges_evaluated_by_challenger":8246003579136272374,"total_challenges_issued":8051655920216908082,"total_challenges_processed_by_recipient":5129431480100159883,"total_challenges_verified":6477018306295341268}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts":{"get":{"tags":["nft"],"summary":"Returns the detail of NFT","description":"Gets the NFT detail","operationId":"nft#nftGet","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftDetail"},"example":{"alt_rare_on_internet_dict_json_b64":"Animi enim aliquid quis ab quisquam corporis.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Dignissimos expedita aliquid provident.","green_address":false,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":2606069223,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"RGVzZXJ1bnQgbW9sZXN0aWFlIGhhcnVtIG5hbSBpcHN1bSBhdHF1ZSB0ZW5ldHVyLg==","rare_on_internet_graph_json_b64":"Occaecati magnam vel sunt consequatur error.","rare_on_internet_summary_table_json_b64":"Sit quia quidem voluptas.","rareness_score":1,"royalty":0.37466959397701977,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"UXVvcyBtYWduYW0gcGFyaWF0dXIgYXV0IGZhY2lsaXMgYWxpcXVpZC4=","thumbnail_2":"U2VkIHJlcHVkaWFuZGFlIHZvbHVwdGFzIGRvbG9yIGF1dCB2ZWxpdCB2b2x1cHRhdGVtLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/download":{"get":{"tags":["nft"],"summary":"Downloads NFT","description":"Download registered NFT.","operationId":"nft#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"At assumenda illum a dolorem."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_result_file":{"get":{"tags":["nft"],"summary":"Duplication detection output file","description":"Duplication detection output file","operationId":"nft#ddServiceOutputFile","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDFPResultFile"},"example":{"file":"Eum itaque totam dicta."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/get_dd_results":{"get":{"tags":["nft"],"summary":"Duplication detection output file details","description":"Duplication detection output file details","operationId":"nft#ddServiceOutputFileDetail","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DDServiceOutputFileResult"},"example":{"alternative_nsfw_scores":{"drawings":0.10935703,"hentai":0.09246627,"neutral":0.6267282,"porn":0.44808388,"sexy":0.10161177},"candidate_image_thumbnail_webp_as_base64_string":"Laboriosam expedita dolor quisquam nulla et accusantium.","child_probability":0.28098175,"collection_name_string":"Adipisci modi suscipit et qui autem et.","cp_probability":0.15282713,"creator_name":"Ipsa sint.","creator_website":"Qui voluptate excepturi.","creator_written_statement":"Blanditiis amet ut.","does_not_impact_the_following_collection_strings":"Suscipit voluptas quod placeat ut atque.","dupe_detection_system_version":"Nulla dolorem sint qui itaque illo dignissimos.","file_type":"Vel quisquam ratione vel repudiandae.","group_rareness_score":0.42818454,"hash_of_candidate_image_file":"Veniam pariatur magni voluptatem.","image_file_path":"Distinctio ipsum eum accusantium ut rerum.","image_fingerprint_of_candidate_image_file":[0.35358476465369687,0.560102656036787,0.09707347225012299,0.30333032692990525],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Nihil consequuntur sed et.","earliest_available_date_of_internet_results":"Rerum expedita minus.","min_number_of_exact_matches_in_page":2451569794,"rare_on_internet_graph_json_compressed_b64":"Deserunt doloremque in.","rare_on_internet_summary_table_as_json_compressed_b64":"Eum reiciendis eum et placeat."},"is_likely_dupe":false,"is_pastel_openapi_request":false,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.7647798836316313,"nft_creation_video_youtube_url":"Necessitatibus impedit aut repellendus adipisci pariatur accusamus.","nft_keyword_set":"Voluptatibus et.","nft_series_name":"Consequatur enim excepturi eum.","nft_title":"Modi aut accusantium non facere reiciendis velit.","open_api_group_id_string":"Ab et.","open_nsfw_score":0.90626305,"original_file_size_in_bytes":8267879701506341356,"overall_rareness_score":0.34288576,"pastel_block_hash_when_request_submitted":"Excepturi adipisci.","pastel_block_height_when_request_submitted":"Est sit occaecati rerum ab.","pastel_id_of_registering_supernode_1":"Pariatur facilis.","pastel_id_of_registering_supernode_2":"Sint autem ipsam labore minima aut harum.","pastel_id_of_registering_supernode_3":"Possimus accusamus a qui maiores et aut.","pastel_id_of_submitter":"Quos quis repellat provident architecto voluptatem sed.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.5577595,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.6363819,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.3000636,"preview_hash":"RXhwZWRpdGEgZWFxdWUgYXV0IHRlbXBvcmUu","rareness_scores_table_json_compressed_b64":"Soluta dolorem voluptatem.","similarity_score_to_first_entry_in_collection":0.8905235,"thumbnail1_hash":"SXRhcXVlIHJlbSBzdXNjaXBpdCBhIGxhdWRhbnRpdW0gY29uc2VxdWF0dXIgbmVjZXNzaXRhdGlidXMu","thumbnail2_hash":"T2ZmaWNpaXMgcmF0aW9uZSB2ZWxpdC4=","total_copies":7616812477290052815,"utc_timestamp_when_request_submitted":"Nihil et aspernatur perspiciatis."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register":{"get":{"tags":["nft"],"summary":"Returns list of tasks","description":"List of all tasks.","operationId":"nft#registerTasks","responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskResponseTinyCollection"},"example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"post":{"tags":["nft"],"summary":"Registers a new NFT","description":"Runs a new registration process for the new NFT.","operationId":"nft#register","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterRequestBody"},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Distinctio eos et excepturi temporibus.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterResult"},"example":{"task_id":"n6Qn6TFM"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/nfts/register/upload":{"post":{"tags":["nft"],"summary":"Uploads an image","description":"Upload the image that is used when registering a new NFT.","operationId":"nft#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"UXVhZSBleHBlZGl0YSBjb25zZXF1YXR1ciB0ZW5ldHVyIGVhcXVlIHF1aSBpcHNhbS4="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageRes"},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}":{"get":{"tags":["nft"],"summary":"Find task by ID","description":"Returns a single task.","operationId":"nft#registerTask","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterTaskResponseBody"},"example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Cupiditate nobis nesciunt.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/register/{taskId}/state":{"get":{"tags":["nft"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"nft#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/search":{"get":{"tags":["nft"],"summary":"Streams the search result for NFT","description":"Streams the search result for NFT","operationId":"nft#nftSearch","parameters":[{"name":"artist","in":"query","description":"Artist PastelID or special value; mine","allowEmptyValue":true,"schema":{"type":"string","description":"Artist PastelID or special value; mine","example":"zkt","maxLength":256},"example":"6b1"},{"name":"limit","in":"query","description":"Number of results to be return","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of results to be return","default":10,"example":10,"format":"int64","minimum":10,"maximum":200},"example":10},{"name":"query","in":"query","description":"Query is search query entered by user","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Query is search query entered by user","example":"Ut ipsa quos doloremque numquam labore."},"example":"Accusamus suscipit qui natus quia."},{"name":"creator_name","in":"query","description":"Name of the nft creator","allowEmptyValue":true,"schema":{"type":"boolean","description":"Name of the nft creator","default":true,"example":false},"example":true},{"name":"art_title","in":"query","description":"Title of NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Title of NFT","default":true,"example":true},"example":true},{"name":"series","in":"query","description":"NFT series name","allowEmptyValue":true,"schema":{"type":"boolean","description":"NFT series name","default":true,"example":false},"example":false},{"name":"descr","in":"query","description":"Artist written statement","allowEmptyValue":true,"schema":{"type":"boolean","description":"Artist written statement","default":true,"example":true},"example":true},{"name":"keyword","in":"query","description":"Keyword that Artist assigns to NFT","allowEmptyValue":true,"schema":{"type":"boolean","description":"Keyword that Artist assigns to NFT","default":true,"example":false},"example":false},{"name":"min_copies","in":"query","description":"Minimum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum number of created copies","example":1,"format":"int64","minimum":1,"maximum":1000},"example":1},{"name":"max_copies","in":"query","description":"Maximum number of created copies","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum number of created copies","example":1000,"format":"int64","minimum":1,"maximum":1000},"example":1000},{"name":"min_block","in":"query","description":"Minimum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Minimum blocknum","default":1,"example":819158788871735519,"format":"int64","minimum":1},"example":3451739609851933793},{"name":"max_block","in":"query","description":"Maximum blocknum","allowEmptyValue":true,"schema":{"type":"integer","description":"Maximum blocknum","example":4311331108156701436,"format":"int64","minimum":1},"example":6797847945989994641},{"name":"is_likely_dupe","in":"query","description":"Is this image likely a duplicate of another known image","allowEmptyValue":true,"schema":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"example":false},{"name":"min_rareness_score","in":"query","description":"Minimum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_rareness_score","in":"query","description":"Maximum pastel rareness score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum pastel rareness score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"min_nsfw_score","in":"query","description":"Minimum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Minimum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"max_nsfw_score","in":"query","description":"Maximum nsfw score","allowEmptyValue":true,"schema":{"type":"number","description":"Maximum nsfw score","example":1,"format":"double","minimum":0,"maximum":1},"example":1},{"name":"user_pastelid","in":"header","description":"User's PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"},{"name":"user_passphrase","in":"header","description":"Passphrase of the User PastelID","allowEmptyValue":true,"schema":{"type":"string","description":"Passphrase of the User PastelID","example":"qwerasdf1234"},"example":"qwerasdf1234"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftSearchResult"},"example":{"match_index":2895109895671128574,"matches":[{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"QXV0IGFtZXQgc2VxdWku","thumbnail_2":"U2VxdWkgdmVsLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nfts/{taskId}/history":{"get":{"tags":["nft"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"nft#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/nodes/challenges_score":{"get":{"tags":["Score"],"summary":"Fetches aggregated challenges score for sc and hc","description":"Fetches aggregated challenges score for SC and HC","operationId":"Score#getAggregatedChallengesScores","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ChallengesScores"},"example":[{"health_check_challenge_score":0.4163028130825925,"ip_address":"In quaerat.","node_id":"Illo delectus aut rerum placeat.","storage_challenge_score":0.1218089363406377},{"health_check_challenge_score":0.4163028130825925,"ip_address":"In quaerat.","node_id":"Illo delectus aut rerum placeat.","storage_challenge_score":0.1218089363406377},{"health_check_challenge_score":0.4163028130825925,"ip_address":"In quaerat.","node_id":"Illo delectus aut rerum placeat.","storage_challenge_score":0.1218089363406377},{"health_check_challenge_score":0.4163028130825925,"ip_address":"In quaerat.","node_id":"Illo delectus aut rerum placeat.","storage_challenge_score":0.1218089363406377}]},"example":[{"health_check_challenge_score":0.4163028130825925,"ip_address":"In quaerat.","node_id":"Illo delectus aut rerum placeat.","storage_challenge_score":0.1218089363406377},{"health_check_challenge_score":0.4163028130825925,"ip_address":"In quaerat.","node_id":"Illo delectus aut rerum placeat.","storage_challenge_score":0.1218089363406377}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Download cascade Artifact.","operationId":"cascade#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Accusamus blanditiis corporis ipsam cumque earum."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/downloads/{file_id}/status":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the state of download task","operationId":"cascade#getDownloadTaskState","parameters":[{"name":"file_id","in":"path","description":"File ID returned by Download V2 API","required":true,"schema":{"type":"string","description":"File ID returned by Download V2 API","example":"n6Qn6TFM","minLength":6,"maxLength":6},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DownloadTaskStatus"},"example":{"data_downloaded_megabytes":1,"details":{"fields":{"Quisquam non.":"Voluptates qui aliquid sit atque inventore illo."},"message":"Image has been downloaded..."},"downloaded_volumes":1,"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","size_of_the_file_megabytes":1,"task_status":"In Progress","total_volumes":1,"volumes_download_failed":1,"volumes_download_in_progress":1,"volumes_pending_download":1}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/registration_details/{base_file_id}":{"get":{"tags":["cascade"],"summary":"Get the file registration details","description":"Get the file registration details","operationId":"cascade#registrationDetails","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Registration"},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/restore/{base_file_id}":{"post":{"tags":["cascade"],"summary":"Restore the file details for registration, activation and multi-volume pastel","description":"Restore the files cascade registration","operationId":"cascade#restore","parameters":[{"name":"base_file_id","in":"path","description":"Base file ID","required":true,"schema":{"type":"string","description":"Base file ID","example":"VK7mpAqZ","maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreRequestBody"},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RestoreFile"},"example":{"activated_volumes":9195318951333339066,"registered_volumes":7356549181015977188,"total_volumes":8298670012583158670,"volumes_activated_in_recovery_flow":1009889794126534593,"volumes_registration_in_progress":4104109627466131444,"volumes_with_pending_registration":7072892730217358566}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{file_id}":{"post":{"tags":["cascade"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"cascade#startProcessing","parameters":[{"name":"file_id","in":"path","description":"Uploaded asset file ID","required":true,"schema":{"type":"string","description":"Uploaded asset file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/start/{taskId}/state":{"get":{"tags":["cascade"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"cascade#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/upload":{"post":{"tags":["cascade"],"summary":"Uploads Action Data","description":"Upload the asset file","operationId":"cascade#uploadAsset","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"TmFtIGEu"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Asset"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/v2/download":{"get":{"tags":["cascade"],"summary":"Downloads cascade artifact","description":"Starts downloading cascade Artifact.","operationId":"cascade#downloadV2","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileDownloadResult"},"example":{"file_id":"Perspiciatis accusantium sed eveniet qui qui."}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/cascade/v2/upload":{"post":{"tags":["cascade"],"summary":"Uploads Cascade File","description":"Upload the asset file - This endpoint is for the new version of the upload endpoint that supports larger files as well.","operationId":"cascade#uploadAssetV2","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadAssetRequestBody"},"example":{"file":"QSBldmVuaWV0IG51bXF1YW0gdmVsLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssetV2"},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.008549268204480678,0.6563940678112433,0.5042167703792875,0.7980625121312597],"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/cascade/{taskId}/history":{"get":{"tags":["cascade"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"cascade#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/download":{"get":{"tags":["sense"],"summary":"Download sense result; duplication detection results file.","description":"Download sense result; duplication detection results file.","operationId":"sense#download","parameters":[{"name":"txid","in":"query","description":"Nft Registration Request transaction ID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Nft Registration Request transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"name":"pid","in":"query","description":"Owner's PastelID","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"Owner's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DownloadResult"},"example":{"file":"UXVvIHZlcm8gcXVpYSBxdW9kLg=="}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{image_id}":{"post":{"tags":["sense"],"summary":"Starts processing the image","description":"Start processing the image","operationId":"sense#startProcessing","parameters":[{"name":"image_id","in":"path","description":"Uploaded image ID","required":true,"schema":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"example":"VK7mpAqZ"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingRequestBody2"},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Officiis quaerat sint aut.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StartProcessingResult"},"example":{"task_id":"VK7mpAqZ"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"UnAuthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/openapi/sense/start/{taskId}/state":{"get":{"tags":["sense"],"summary":"Streams state by task ID","description":"Streams the state of the registration process.","operationId":"sense#registerTaskState","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"101":{"description":"Switching Protocols response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskState"},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/upload":{"post":{"tags":["sense"],"summary":"Uploads Action Data","description":"Upload the image","operationId":"sense#uploadImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadImageRequestBody"},"example":{"file":"SW52ZW50b3JlIGRlYml0aXMgYW1ldCBvZmZpY2lpcyBxdWkgZnVnaWF0IG9tbmlzLg=="}}}},"responses":{"201":{"description":"Created response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Image"},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/openapi/sense/{taskId}/history":{"get":{"tags":["sense"],"summary":"Get history of states as a json string with a list of state objects.","description":"Gets the history of the task's states.","operationId":"sense#getTaskHistory","parameters":[{"name":"taskId","in":"path","description":"Task ID of the registration process","required":true,"schema":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"example":"n6Qn6TFM"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TaskHistory"},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]},"example":[{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"}]}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/self_healing/detailed_logs":{"get":{"tags":["metrics"],"summary":"Fetches self-healing reports","description":"Fetches self-healing reports","operationId":"metrics#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch self-healing reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch self-healing reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"event_id","in":"query","description":"Specific event ID to fetch reports for","allowEmptyValue":true,"schema":{"type":"string","description":"Specific event ID to fetch reports for","example":"event-123"},"example":"event-123"},{"name":"count","in":"query","description":"Number of reports to fetch","allowEmptyValue":true,"schema":{"type":"integer","description":"Number of reports to fetch","example":10,"format":"int64"},"example":10}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SelfHealingReports"},"example":{"reports":[{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/self_healing/summary_stats":{"get":{"tags":["metrics"],"summary":"Fetches metrics data","description":"Fetches metrics data over a specified time range","operationId":"metrics#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MetricsResult"},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":7768590148358975878,"total_files_healed":5003517749846764640,"total_reconstruction_not_required_evaluations_approved":2806992559829453130,"total_reconstruction_required_evaluations_approved":1107029843099257708,"total_reconstruction_required_evaluations_not_approved":5899917961438241754,"total_reconstruction_required_hash_mismatch":7662269731854437673,"total_reconstructions_not_required_evaluations_not_approved":6465655469488946682,"total_self_healing_events_accepted":8057201361166306844,"total_self_healing_events_acknowledged":7507492928430008683,"total_self_healing_events_evaluations_unverified":5026086393945454809,"total_self_healing_events_evaluations_verified":7657744171058360435,"total_self_healing_events_issued":6120797776831447879,"total_self_healing_events_rejected":4720652167101259254},"self_healing_trigger_events_stats":[{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."}]}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/detailed_logs":{"get":{"tags":["StorageChallenge"],"summary":"Fetches storage-challenge reports","description":"Fetches storage-challenge reports","operationId":"StorageChallenge#getDetailedLogs","parameters":[{"name":"pid","in":"query","description":"PastelID of the user to fetch storage-challenge reports for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch storage-challenge reports for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."},{"name":"challenge_id","in":"query","description":"ChallengeID of the storage challenge to fetch their logs","allowEmptyValue":true,"schema":{"type":"string","description":"ChallengeID of the storage challenge to fetch their logs","example":"jXYJ"},"example":"jXYJ"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StorageMessage"},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]},"example":[{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."},{"challenge":{"block":133233139,"end_index":3896885101814506590,"file_hash":"Asperiores quidem.","merkelroot":"Quidem nostrum laudantium quo qui laboriosam sed.","start_index":1614189715015821619,"timestamp":"Molestias neque sed quos voluptate."},"challenge_id":"Dolorum ex.","challenger_evaluation":{"block":1965065906,"hash":"Ratione laborum est omnis sit.","is_verified":false,"merkelroot":"Alias itaque eveniet cum.","timestamp":"Autem libero deserunt aspernatur."},"challenger_id":"Rerum natus ut beatae sed maiores corporis.","message_type":"Necessitatibus sunt.","observer_evaluation":{"block":1126733571,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Placeat mollitia.","reason":"Aut dignissimos autem ut velit provident.","timestamp":"Repellendus aut.","true_hash":"Voluptas asperiores."},"observers":["Qui aperiam id sunt consequatur voluptas voluptatem.","Voluptatem optio enim iure pariatur quia minus.","Dicta et natus amet.","Asperiores et ea."],"recipient_id":"Qui corrupti neque quod omnis.","response":{"block":1915105945,"hash":"Ut quam beatae libero rerum.","merkelroot":"Aperiam quo reiciendis corrupti reiciendis.","timestamp":"Veritatis accusantium corporis."},"sender_id":"Laudantium neque ratione sint eum sed ullam.","sender_signature":"Autem quia neque adipisci."}]}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/storage_challenges/summary_stats":{"get":{"tags":["StorageChallenge"],"summary":"Fetches summary stats","description":"Fetches summary stats data over a specified time range","operationId":"StorageChallenge#getSummaryStats","parameters":[{"name":"from","in":"query","description":"Start time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"Start time for the metrics data range","example":"2023-01-01T00:00:00Z","format":"date-time"},"example":"2023-01-01T00:00:00Z"},{"name":"to","in":"query","description":"End time for the metrics data range","allowEmptyValue":true,"schema":{"type":"string","description":"End time for the metrics data range","example":"2023-01-02T00:00:00Z","format":"date-time"},"example":"2023-01-02T00:00:00Z"},{"name":"pid","in":"query","description":"PastelID of the user to fetch metrics for","allowEmptyValue":true,"required":true,"schema":{"type":"string","description":"PastelID of the user to fetch metrics for","example":"jXYJud3rm..."},"example":"jXYJud3rm..."}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SummaryStatsResult"},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":5854226055096814600,"no_of_invalid_signatures_observed_by_observers":4353527834150504494,"no_of_slow_responses_observed_by_observers":1357252241103533124,"total_challenges_evaluated_by_challenger":3728835119474173051,"total_challenges_issued":6647138861710727929,"total_challenges_processed_by_recipient":5873786866786505808,"total_challenges_verified":6262794736214513307}}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Unauthorized response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"security":[{"api_key_header_Authorization":[]}]}},"/userdatas/create":{"post":{"tags":["userdatas"],"summary":"Create new user data","description":"Create new user data","operationId":"userdatas#createUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/update":{"post":{"tags":["userdatas"],"summary":"Update user data for an existing user","description":"Update user data for an existing user","operationId":"userdatas#updateUserdata","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserdataProcessResult"},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/userdatas/{pastelid}":{"get":{"tags":["userdatas"],"summary":"Returns the detail of Userdata","description":"Gets the Userdata detail","operationId":"userdatas#getUserdata","parameters":[{"name":"pastelid","in":"path","description":"Artist's PastelID","required":true,"schema":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS"}],"responses":{"200":{"description":"OK response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateUserdataRequestBody"},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"}}}},"400":{"description":"BadRequest: Bad Request response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"NotFound: Not Found response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"InternalServerError: Internal Server Error response.","content":{"application/vnd.goa.error":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"ActivationAttempt":{"type":"object","properties":{"activation_attempt_at":{"type":"string","description":"Activation Attempt At in datetime format","example":"2004-03-10T19:54:00Z","format":"date-time"},"error_message":{"type":"string","description":"Error Message","example":"At suscipit iure placeat accusantium id et."},"file_id":{"type":"string","description":"File ID","example":"Minus ad deleniti reiciendis quis vel animi."},"id":{"type":"integer","description":"ID","example":6635050774088561625,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the activation was successful","example":true}},"example":{"activation_attempt_at":"1983-01-20T12:08:05Z","error_message":"Animi illum modi voluptate et sunt officiis.","file_id":"Consequatur mollitia unde quibusdam enim voluptatem sit.","id":3750382235025234773,"is_successful":true},"required":["id","file_id","activation_attempt_at"]},"AlternativeNSFWScores":{"type":"object","properties":{"drawings":{"type":"number","description":"drawings nsfw score","example":0.393297,"format":"float"},"hentai":{"type":"number","description":"hentai nsfw score","example":0.5458527,"format":"float"},"neutral":{"type":"number","description":"neutral nsfw score","example":0.7422886,"format":"float"},"porn":{"type":"number","description":"porn nsfw score","example":0.6511306,"format":"float"},"sexy":{"type":"number","description":"sexy nsfw score","example":0.4401386,"format":"float"}},"example":{"drawings":0.7850286,"hentai":0.9919498,"neutral":0.8171564,"porn":0.06300681,"sexy":0.3325743}},"Asset":{"type":"object","properties":{"expires_in":{"type":"string","description":"File expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","file_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["file_id","expires_in","total_estimated_fee"]},"AssetV2":{"type":"object","properties":{"file_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_transaction_amounts":{"type":"array","items":{"type":"number","example":0.36694836852401885,"format":"double"},"description":"The amounts that's required to be preburned - one per transaction","example":[0.5377481047121024,0.881792511024194]},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"file_id":"VK7mpAqZ","required_preburn_transaction_amounts":[0.8783134220396522,0.5268771209243681],"total_estimated_fee":100},"required":["file_id","total_estimated_fee"]},"ChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1347335611,"format":"int32"},"end_index":{"type":"integer","description":"End index","example":1443664336129365015,"format":"int64"},"file_hash":{"type":"string","description":"File hash","example":"Unde excepturi corrupti et et."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Quas ab quaerat illo nulla reiciendis."},"start_index":{"type":"integer","description":"Start index","example":6344929330784324471,"format":"int64"},"timestamp":{"type":"string","description":"Timestamp","example":"Explicabo sunt saepe voluptatem autem."}},"description":"Data of challenge","example":{"block":151081210,"end_index":2137971282208015444,"file_hash":"Temporibus vitae aliquam incidunt ut autem.","merkelroot":"Et consequatur asperiores corporis.","start_index":5883693332615049783,"timestamp":"Distinctio tenetur nostrum doloribus."},"required":["timestamp","file_hash","start_index","end_index"]},"ChallengesScores":{"type":"object","properties":{"health_check_challenge_score":{"type":"number","description":"Total accumulated HC challenge score","example":0.9703800933093893,"format":"double"},"ip_address":{"type":"string","description":"IPAddress of the node","example":"Est occaecati officia."},"node_id":{"type":"string","description":"Specific node id","example":"Voluptatum explicabo quaerat aspernatur sit illum."},"storage_challenge_score":{"type":"number","description":"Total accumulated SC challenge score","example":0.0686911122262466,"format":"double"}},"description":"Combined accumulated scores for HC and SC challenges","example":{"health_check_challenge_score":0.7918354934679862,"ip_address":"Similique doloribus placeat itaque rerum architecto.","node_id":"Vel sunt minus alias.","storage_challenge_score":0.686744339486576},"required":["node_id","storage_challenge_score","health_check_challenge_score"]},"CreateUserdataRequestBody":{"type":"object","properties":{"avatar_image":{"$ref":"#/components/schemas/UserImageUploadPayload"},"biography":{"type":"string","description":"Biography of the user","example":"I'm a digital artist based in Paris, France. ...","maxLength":1024},"categories":{"type":"string","description":"The categories of user's work, separate by ,","example":"Manga\u0026Anime,3D,Comics"},"cover_photo":{"$ref":"#/components/schemas/UserImageUploadPayload"},"facebook_link":{"type":"string","description":"Facebook link of the user","example":"https://www.facebook.com/Williams_Scottish","maxLength":128},"location":{"type":"string","description":"Location of the user","example":"New York, US","maxLength":256},"native_currency":{"type":"string","description":"Native currency of user in ISO 4217 Alphabetic Code","example":"USD","minLength":3,"maxLength":3},"primary_language":{"type":"string","description":"Primary language of the user, follow ISO 639-2 standard","example":"en","maxLength":30},"realname":{"type":"string","description":"Real name of the user","example":"Williams Scottish","maxLength":256},"twitter_link":{"type":"string","description":"Twitter link of the user","example":"https://www.twitter.com/@Williams_Scottish","maxLength":128},"user_pastelid":{"type":"string","description":"User's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"user_pastelid_passphrase":{"type":"string","description":"Passphrase of the user's PastelID","example":"qwerasdf1234"}},"example":{"avatar_image":{"content":"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","filename":"image_name.png"},"biography":"I'm a digital artist based in Paris, France. ...","categories":"Manga\u0026Anime,3D,Comics","cover_photo":{"content":"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","filename":"image_name.png"},"facebook_link":"https://www.facebook.com/Williams_Scottish","location":"New York, US","native_currency":"USD","primary_language":"en","realname":"Williams Scottish","twitter_link":"https://www.twitter.com/@Williams_Scottish","user_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","user_pastelid_passphrase":"qwerasdf1234"},"required":["user_pastelid","user_pastelid_passphrase"]},"DDFPResultFile":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"Id ut quae."}},"example":{"file":"Ut suscipit."},"required":["file"]},"DDServiceOutputFileResult":{"type":"object","properties":{"alternative_nsfw_scores":{"$ref":"#/components/schemas/AlternativeNSFWScores"},"candidate_image_thumbnail_webp_as_base64_string":{"type":"string","description":"candidate image thumbnail as base64 string","example":"Eius dolorem quia."},"child_probability":{"type":"number","description":"child probability","example":0.09279177,"format":"float"},"collection_name_string":{"type":"string","description":"name of the collection","example":"Maiores at nisi hic."},"cp_probability":{"type":"number","description":"probability of CP","example":0.8636645,"format":"float"},"creator_name":{"type":"string","description":"name of the creator","example":"Doloribus ex."},"creator_website":{"type":"string","description":"website of creator","example":"Sapiente rerum."},"creator_written_statement":{"type":"string","description":"written statement of creator","example":"Ut est."},"does_not_impact_the_following_collection_strings":{"type":"string","description":"does not impact collection strings","example":"Autem velit molestias explicabo natus."},"dupe_detection_system_version":{"type":"string","description":"system version of dupe detection","example":"Rem rerum qui commodi facere distinctio."},"file_type":{"type":"string","description":"type of the file","example":"Laboriosam voluptatibus iure natus tenetur error."},"group_rareness_score":{"type":"number","description":"rareness score of the group","example":0.38544258,"format":"float"},"hash_of_candidate_image_file":{"type":"string","description":"hash of candidate image file","example":"Temporibus sunt in sit."},"image_file_path":{"type":"string","description":"file path of the image","example":"Ex molestiae veritatis et eveniet id."},"image_fingerprint_of_candidate_image_file":{"type":"array","items":{"type":"number","example":0.9296564369426022,"format":"double"},"description":"Image fingerprint of candidate image file","example":[0.9257838662558961,0.4210962938546765,0.17243348242039355]},"internet_rareness":{"$ref":"#/components/schemas/InternetRareness"},"is_likely_dupe":{"type":"boolean","description":"is this nft likely a duplicate","example":false},"is_pastel_openapi_request":{"type":"boolean","description":"is pastel open API request","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"max_permitted_open_nsfw_score":{"type":"number","description":"max permitted open NSFW score","example":0.4298777191641779,"format":"double"},"nft_creation_video_youtube_url":{"type":"string","description":"nft creation video youtube url","example":"Deserunt sunt quasi tempora et esse molestiae."},"nft_keyword_set":{"type":"string","description":"keywords for NFT","example":"Non sit nostrum."},"nft_series_name":{"type":"string","description":"series name of NFT","example":"Rem nisi ut."},"nft_title":{"type":"string","description":"title of NFT","example":"Tempore dignissimos temporibus."},"open_api_group_id_string":{"type":"string","description":"open api group id string","example":"Culpa et sequi et et."},"open_nsfw_score":{"type":"number","description":"open nsfw score","example":0.92024887,"format":"float"},"original_file_size_in_bytes":{"type":"integer","description":"original file size in bytes","example":7816697105492004062,"format":"int64"},"overall_rareness_score":{"type":"number","description":"pastel rareness score","example":0.78057414,"format":"float"},"pastel_block_hash_when_request_submitted":{"type":"string","description":"block hash when request submitted","example":"In quia ea omnis iste laudantium et."},"pastel_block_height_when_request_submitted":{"type":"string","description":"block Height when request submitted","example":"Ea animi aut itaque."},"pastel_id_of_registering_supernode_1":{"type":"string","description":"pastel id of registering SN1","example":"Et ut veritatis repudiandae facilis optio non."},"pastel_id_of_registering_supernode_2":{"type":"string","description":"pastel id of registering SN2","example":"Dignissimos voluptas est eum est enim."},"pastel_id_of_registering_supernode_3":{"type":"string","description":"pastel id of registering SN3","example":"Nostrum omnis suscipit enim exercitationem."},"pastel_id_of_submitter":{"type":"string","description":"pastel id of the submitter","example":"Qui iusto voluptas tenetur est hic adipisci."},"pct_of_top_10_most_similar_with_dupe_prob_above_25pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 25 PCT","example":0.008753272,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 33 PCT","example":0.4484356,"format":"float"},"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":{"type":"number","description":"PCT of top 10 most similar with dupe probe above 50 PCT","example":0.29624,"format":"float"},"preview_hash":{"type":"string","description":"preview hash of NFT","example":"VGVtcG9yZSB2b2x1cHRhdGVtIGludmVudG9yZS4=","format":"binary"},"rareness_scores_table_json_compressed_b64":{"type":"string","description":"rareness scores table json compressed b64","example":"Nihil velit numquam ab sint inventore aut."},"similarity_score_to_first_entry_in_collection":{"type":"number","description":"similarity score to first entry in collection","example":0.37307566,"format":"float"},"thumbnail1_hash":{"type":"string","description":"thumbnail1 hash of NFT","example":"SXN0ZSBldCBxdWFlcmF0IHNpbnQgY29uc2VxdXVudHVyIG1heGltZS4=","format":"binary"},"thumbnail2_hash":{"type":"string","description":"thumbnail2 hash of NFT","example":"U2l0IGN1cGlkaXRhdGUgY29uc2VjdGV0dXIgcXVvIG51bXF1YW0u","format":"binary"},"total_copies":{"type":"integer","description":"total copies of NFT","example":7460552679591907032,"format":"int64"},"utc_timestamp_when_request_submitted":{"type":"string","description":"timestamp of request when submitted","example":"Incidunt minima similique."}},"example":{"alternative_nsfw_scores":{"drawings":0.10935703,"hentai":0.09246627,"neutral":0.6267282,"porn":0.44808388,"sexy":0.10161177},"candidate_image_thumbnail_webp_as_base64_string":"Eveniet iure id corporis et.","child_probability":0.85841125,"collection_name_string":"Laborum consectetur praesentium.","cp_probability":0.020185858,"creator_name":"Veritatis qui qui.","creator_website":"Enim corrupti eaque.","creator_written_statement":"Quis placeat sed voluptatem.","does_not_impact_the_following_collection_strings":"In velit suscipit id.","dupe_detection_system_version":"Sequi ut praesentium ducimus ea.","file_type":"Totam unde quia magni.","group_rareness_score":0.7813651,"hash_of_candidate_image_file":"Earum ipsa molestiae sequi magni quod architecto.","image_file_path":"Soluta iste omnis qui aut.","image_fingerprint_of_candidate_image_file":[0.6438323104374452,0.9329325562583228,0.932782678053973,0.053544899534881556],"internet_rareness":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Nihil consequuntur sed et.","earliest_available_date_of_internet_results":"Rerum expedita minus.","min_number_of_exact_matches_in_page":2451569794,"rare_on_internet_graph_json_compressed_b64":"Deserunt doloremque in.","rare_on_internet_summary_table_as_json_compressed_b64":"Eum reiciendis eum et placeat."},"is_likely_dupe":false,"is_pastel_openapi_request":true,"is_rare_on_internet":false,"max_permitted_open_nsfw_score":0.31090327792601796,"nft_creation_video_youtube_url":"Corporis ipsum deleniti eos.","nft_keyword_set":"Libero eaque error omnis aut ut.","nft_series_name":"Aut reiciendis.","nft_title":"Est qui.","open_api_group_id_string":"Consequatur vel sed.","open_nsfw_score":0.020267392,"original_file_size_in_bytes":6170748445122680850,"overall_rareness_score":0.68623006,"pastel_block_hash_when_request_submitted":"Ratione blanditiis.","pastel_block_height_when_request_submitted":"Beatae amet maiores sed neque omnis.","pastel_id_of_registering_supernode_1":"Et qui iure dignissimos omnis.","pastel_id_of_registering_supernode_2":"Occaecati maiores ut voluptatum dolor provident.","pastel_id_of_registering_supernode_3":"Rerum repellat id.","pastel_id_of_submitter":"Voluptatem ipsum voluptas eius porro animi totam.","pct_of_top_10_most_similar_with_dupe_prob_above_25pct":0.97560793,"pct_of_top_10_most_similar_with_dupe_prob_above_33pct":0.1190811,"pct_of_top_10_most_similar_with_dupe_prob_above_50pct":0.12013802,"preview_hash":"UXVpc3F1YW0gc2FwaWVudGUgdm9sdXB0YXR1bSBzaW1pbGlxdWUgYXRxdWUu","rareness_scores_table_json_compressed_b64":"Magnam ipsum corrupti iste sequi.","similarity_score_to_first_entry_in_collection":0.6906927,"thumbnail1_hash":"RXhlcmNpdGF0aW9uZW0gbW9sZXN0aWFzIGVuaW0u","thumbnail2_hash":"RXQgc2VkIG5hbSBkaXN0aW5jdGlvIGRlbGVuaXRpLg==","total_copies":8886973211525526541,"utc_timestamp_when_request_submitted":"Nam ut voluptas cum est molestiae eius."},"required":["creator_name","creator_website","creator_written_statement","nft_title","nft_series_name","nft_creation_video_youtube_url","nft_keyword_set","total_copies","preview_hash","thumbnail1_hash","thumbnail2_hash","original_file_size_in_bytes","file_type","max_permitted_open_nsfw_score"]},"Details":{"type":"object","properties":{"fields":{"type":"object","description":"important fields regarding status history","example":{"Reiciendis velit modi dignissimos quasi.":"Autem velit quibusdam laboriosam maiores possimus."},"additionalProperties":true},"message":{"type":"string","description":"details regarding the status","example":"Image has been downloaded..."}},"example":{"fields":{"Voluptas dolore dolorem et aut.":"Consequuntur iure."},"message":"Image has been downloaded..."}},"DownloadResult":{"type":"object","properties":{"file":{"type":"string","description":"File downloaded","example":"VXQgY3VtIHF1by4=","format":"binary"}},"example":{"file":"RXhlcmNpdGF0aW9uZW0gc2VkIGVzdCBhbWV0IGxhYm9yZSByZXJ1bS4="},"required":["file"]},"DownloadTaskStatus":{"type":"object","properties":{"data_downloaded_megabytes":{"type":"integer","description":"data downloaded in megabytes so far","example":1,"format":"int64"},"details":{"$ref":"#/components/schemas/Details"},"downloaded_volumes":{"type":"integer","description":"Number of volumes successfully downloaded","example":1,"format":"int64"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"size_of_the_file_megabytes":{"type":"integer","description":"size of the file in megabytes","example":1,"format":"int64"},"task_status":{"type":"string","description":"Status of the operation","example":"In Progress","enum":["Completed","Failed","In Progress"]},"total_volumes":{"type":"integer","description":"Total Volumes","example":1,"format":"int64"},"volumes_download_failed":{"type":"integer","description":"Number of volumes failed to download","example":1,"format":"int64"},"volumes_download_in_progress":{"type":"integer","description":"Number of volumes currently being downloaded","example":1,"format":"int64"},"volumes_pending_download":{"type":"integer","description":"Number of volumes awaiting schedule","example":1,"format":"int64"}},"example":{"data_downloaded_megabytes":1,"details":{"fields":{"Quisquam non.":"Voluptates qui aliquid sit atque inventore illo."},"message":"Image has been downloaded..."},"downloaded_volumes":1,"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","size_of_the_file_megabytes":1,"task_status":"In Progress","total_volumes":1,"volumes_download_failed":1,"volumes_download_in_progress":1,"volumes_pending_download":1},"required":["total_volumes","downloaded_volumes","volumes_download_in_progress","volumes_download_failed","task_status","details","volumes_pending_download","size_of_the_file_megabytes","data_downloaded_megabytes"]},"Error":{"type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1352248337,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Non fuga animi architecto sed omnis non."},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Odit quae quo ut saepe aperiam laudantium."},"timestamp":{"type":"string","description":"Timestamp","example":"Libero hic et."}},"description":"Data of evaluation","example":{"block":2072291157,"hash":"Quo dolores dolor ut.","is_verified":false,"merkelroot":"Magni rerum.","timestamp":"Enim qui dignissimos."},"required":["timestamp","hash","is_verified"]},"EventTicket":{"type":"object","properties":{"data_hash":{"type":"string","example":"QWRpcGlzY2kgZXggcmVydW0gcXVpIHF1YW0gaXRhcXVlIGluLg==","format":"binary"},"missing_keys":{"type":"array","items":{"type":"string","example":"Quis adipisci amet voluptas nisi explicabo."},"example":["In debitis quia atque molestias.","Asperiores culpa sunt sit.","Similique porro voluptatem cum consequatur ut et."]},"recipient":{"type":"string","example":"Optio alias quo amet voluptatem est cum."},"ticket_type":{"type":"string","example":"Doloremque vel doloremque facere."},"tx_id":{"type":"string","example":"In voluptatem sed enim impedit."}},"example":{"data_hash":"RG9sb3IgcXVpIHV0IHF1aSB1dCBwb3NzaW11cy4=","missing_keys":["In officiis aspernatur deserunt.","Ut officia.","Iusto excepturi laboriosam occaecati accusantium."],"recipient":"Sequi veritatis fuga consequuntur maxime aut.","ticket_type":"Est quae architecto.","tx_id":"Debitis aut iure aperiam ut sapiente aspernatur."}},"File":{"type":"object","properties":{"activation_attempts":{"type":"array","items":{"$ref":"#/components/schemas/ActivationAttempt"},"description":"List of activation attempts","example":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}]},"activation_txid":{"type":"string","description":"Activation Transaction ID","example":"Eos doloribus iste ut sit dolore est."},"base_file_id":{"type":"string","description":"Base File ID","example":"Quae magni laudantium consequatur."},"burn_txn_id":{"type":"string","description":"Burn Transaction ID","example":"Quos ut repellendus."},"cascade_metadata_ticket_id":{"type":"string","description":"Cascade Metadata Ticket ID","example":"Autem suscipit rerum nihil neque voluptatum voluptas."},"done_block":{"type":"integer","description":"Done Block","example":4456201531387665463,"format":"int64"},"file_id":{"type":"string","description":"File ID","example":"Velit distinctio maiores expedita quasi."},"file_index":{"type":"string","description":"Index of the file","example":"Et voluptatem sapiente."},"hash_of_original_big_file":{"type":"string","description":"Hash of the Original Big File","example":"Voluptatem consequatur architecto possimus."},"is_concluded":{"type":"boolean","description":"Indicates if the process is concluded","example":true},"name_of_original_big_file_with_ext":{"type":"string","description":"Name of the Original Big File with Extension","example":"Est aut."},"reg_txid":{"type":"string","description":"Registration Transaction ID","example":"Illo quasi debitis corrupti omnis consequatur."},"registration_attempts":{"type":"array","items":{"$ref":"#/components/schemas/RegistrationAttempt"},"description":"List of registration attempts","example":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}]},"req_amount":{"type":"number","description":"Required Amount","example":0.9296029408572861,"format":"double"},"req_burn_txn_amount":{"type":"number","description":"Required Burn Transaction Amount","example":0.3390959026262366,"format":"double"},"size_of_original_big_file":{"type":"number","description":"Size of the Original Big File","example":0.9621408527378433,"format":"double"},"start_block":{"type":"integer","description":"Start Block","example":1849977542,"format":"int32"},"task_id":{"type":"string","description":"Task ID","example":"Ipsum perferendis autem."},"upload_timestamp":{"type":"string","description":"Upload Timestamp in datetime format","example":"1991-05-30T07:34:27Z","format":"date-time"},"uuid_key":{"type":"string","description":"UUID Key","example":"Veritatis ipsa."}},"example":{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Pariatur fugit aut quis unde.","base_file_id":"Facilis voluptatibus soluta id omnis accusamus.","burn_txn_id":"Perferendis non fugit.","cascade_metadata_ticket_id":"Vitae reprehenderit dolorum excepturi magnam.","done_block":4799311747582476900,"file_id":"Quis libero eius mollitia magni voluptas.","file_index":"Saepe doloremque.","hash_of_original_big_file":"Similique dolorum eum reprehenderit voluptas ut et.","is_concluded":true,"name_of_original_big_file_with_ext":"Quo voluptatibus magnam.","reg_txid":"Asperiores harum.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.7894765105761659,"req_burn_txn_amount":0.4628575016205468,"size_of_original_big_file":0.4320393643933143,"start_block":500203753,"task_id":"Nemo ut nostrum sit natus molestiae eos.","upload_timestamp":"2014-01-17T14:36:31Z","uuid_key":"Facilis laborum earum consequatur laudantium voluptate."},"required":["file_id","task_id","upload_timestamp","base_file_id","registration_attempts","activation_attempts","req_burn_txn_amount","req_amount","cascade_metadata_ticket_id","hash_of_original_big_file","name_of_original_big_file_with_ext","size_of_original_big_file"]},"FileDownloadResult":{"type":"object","properties":{"file_id":{"type":"string","description":"File path","example":"Nam dolorem voluptate et."}},"example":{"file_id":"Consequatur qui."},"required":["file_id"]},"FuzzyMatch":{"type":"object","properties":{"field_type":{"type":"string","description":"Field that is matched","example":"creator_name","enum":["creator_name","art_title","series","descr","keyword"]},"matched_indexes":{"type":"array","items":{"type":"integer","example":7327100705529937634,"format":"int64"},"description":"The indexes of matched characters. Useful for highlighting matches","example":[1948203020921215349,3439362256873029095]},"score":{"type":"integer","description":"Score used to rank matches","example":3391603739219505659,"format":"int64"},"str":{"type":"string","description":"String that is matched","example":"Enim a soluta iste quo qui officia."}},"example":{"field_type":"series","matched_indexes":[3514820691546776495,4798601420640589548,2130150614634239824,8083708308528182434],"score":3442499907269367633,"str":"Ut voluptas molestiae."}},"HCChallengeData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1852408021,"format":"int32"},"merkelroot":{"type":"string","description":"Merkelroot","example":"Praesentium similique itaque ea enim autem impedit."},"timestamp":{"type":"string","description":"Timestamp","example":"Alias velit tempore."}},"description":"Data of challenge","example":{"block":1004177845,"merkelroot":"Explicabo est quaerat voluptas quia.","timestamp":"Neque odit."},"required":["timestamp"]},"HCEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":408356242,"format":"int32"},"is_verified":{"type":"boolean","description":"IsVerified","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Qui commodi deleniti qui ut minima."},"timestamp":{"type":"string","description":"Timestamp","example":"Eligendi fuga repudiandae beatae."}},"description":"Data of evaluation","example":{"block":1389608811,"is_verified":true,"merkelroot":"Voluptatem molestiae laborum quibusdam magnam voluptatem.","timestamp":"Nulla facere ut quas ab."},"required":["timestamp","is_verified"]},"HCObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":1206668699,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":true},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":false},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":false},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":true},"merkelroot":{"type":"string","description":"Merkelroot","example":"Rem et ut quod."},"timestamp":{"type":"string","description":"Timestamp","example":"Molestiae optio sit."}},"description":"Data of Observer's evaluation","example":{"block":1096271289,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":true,"is_evaluation_result_ok":true,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":false,"merkelroot":"Earum animi sed consequatur sit ipsa ut.","timestamp":"Doloribus aut."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok"]},"HCSummaryStats":{"type":"object","properties":{"no_of_invalid_evaluation_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid evaluation evaluated by observers","example":728503584389264566,"format":"int64"},"no_of_invalid_signatures_observed_by_observers":{"type":"integer","description":"challenges failed due to invalid signatures evaluated by observers","example":5265598959677038068,"format":"int64"},"no_of_slow_responses_observed_by_observers":{"type":"integer","description":"challenges failed due to slow-responses evaluated by observers","example":6224984180198786822,"format":"int64"},"total_challenges_evaluated_by_challenger":{"type":"integer","description":"Total number of challenges evaluated by the challenger node","example":6092881920952109301,"format":"int64"},"total_challenges_issued":{"type":"integer","description":"Total number of challenges issued","example":4139038066016460499,"format":"int64"},"total_challenges_processed_by_recipient":{"type":"integer","description":"Total number of challenges processed by the recipient node","example":6200705247364471466,"format":"int64"},"total_challenges_verified":{"type":"integer","description":"Total number of challenges verified by observers","example":9003639930340756907,"format":"int64"}},"description":"HealthCheck-Challenge SummaryStats","example":{"no_of_invalid_evaluation_observed_by_observers":3758307129551045300,"no_of_invalid_signatures_observed_by_observers":7216199585246499219,"no_of_slow_responses_observed_by_observers":4708410375453246748,"total_challenges_evaluated_by_challenger":319401182285872720,"total_challenges_issued":4247816628451739144,"total_challenges_processed_by_recipient":4685610385311218462,"total_challenges_verified":9100485264281593584},"required":["total_challenges_issued","total_challenges_processed_by_recipient","total_challenges_evaluated_by_challenger","total_challenges_verified","no_of_slow_responses_observed_by_observers","no_of_invalid_signatures_observed_by_observers","no_of_invalid_evaluation_observed_by_observers"]},"HcDetailedLogsMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/HCChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Eligendi et earum cupiditate."},"challenger_evaluation":{"$ref":"#/components/schemas/HCEvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Dolorum fugiat aspernatur."},"message_type":{"type":"string","description":"type of the message","example":"Suscipit ipsa minima."},"observer_evaluation":{"$ref":"#/components/schemas/HCObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Et ipsum."},"description":"List of observer IDs","example":["Voluptates dolor placeat eum quis sit et.","Quisquam repellat sequi voluptatum."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Non impedit ex a consectetur consequatur."},"response":{"$ref":"#/components/schemas/HCChallengeData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Sit asperiores debitis vel et architecto."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Qui magni laborum eligendi at modi."}},"description":"HealthCheck challenge message data","example":{"challenge":{"block":1740108809,"merkelroot":"Et neque culpa explicabo dolore natus.","timestamp":"Voluptatibus hic voluptas doloremque eligendi et magni."},"challenge_id":"Itaque qui cumque recusandae.","challenger_evaluation":{"block":1664792371,"is_verified":true,"merkelroot":"Commodi repellat nihil qui dolores.","timestamp":"Suscipit ipsum veniam debitis illum."},"challenger_id":"Facilis nostrum laudantium ea dolores.","message_type":"Quam quis illo consequatur non dolor pariatur.","observer_evaluation":{"block":325896074,"is_challenge_timestamp_ok":true,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":true,"is_recipient_signature_ok":true,"merkelroot":"Qui laudantium et nihil libero aut delectus.","timestamp":"Id dignissimos qui quaerat."},"observers":["Ipsum voluptatibus.","Qui qui eos voluptas voluptas repudiandae eos.","Voluptas laudantium dolor."],"recipient_id":"Id laboriosam molestias blanditiis voluptate aliquid consequatur.","response":{"block":1763433739,"merkelroot":"Molestiae voluptas ut.","timestamp":"Eaque perspiciatis earum a deserunt consectetur placeat."},"sender_id":"Eos delectus eaque iste at recusandae.","sender_signature":"Necessitatibus quia amet necessitatibus."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"HcSummaryStatsResult":{"type":"object","properties":{"hc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"hc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":5298572403287664370,"no_of_invalid_signatures_observed_by_observers":3383689589076681506,"no_of_slow_responses_observed_by_observers":827764771293379553,"total_challenges_evaluated_by_challenger":8246003579136272374,"total_challenges_issued":8051655920216908082,"total_challenges_processed_by_recipient":5129431480100159883,"total_challenges_verified":6477018306295341268}},"required":["hc_summary_stats"]},"Image":{"type":"object","properties":{"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"required_preburn_amount":{"type":"number","description":"The amount that's required to be preburned","default":1,"example":20,"format":"double","minimum":0.00001},"total_estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001}},"example":{"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ","required_preburn_amount":20,"total_estimated_fee":100},"required":["image_id","expires_in","total_estimated_fee"]},"ImageRes":{"type":"object","properties":{"estimated_fee":{"type":"number","description":"Estimated fee","default":1,"example":100,"format":"double","minimum":0.00001},"expires_in":{"type":"string","description":"Image expiration","example":"2006-01-02T15:04:05Z07:00","format":"date-time"},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"estimated_fee":100,"expires_in":"2006-01-02T15:04:05Z07:00","image_id":"VK7mpAqZ"},"required":["image_id","expires_in","estimated_fee"]},"InternetRareness":{"type":"object","properties":{"alternative_rare_on_internet_dict_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Illo doloribus reiciendis quia."},"earliest_available_date_of_internet_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Excepturi consequatur sapiente ex aspernatur molestiae."},"min_number_of_exact_matches_in_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":4067716565,"format":"int32"},"rare_on_internet_graph_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Deleniti at."},"rare_on_internet_summary_table_as_json_compressed_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Ut harum minus."}},"example":{"alternative_rare_on_internet_dict_as_json_compressed_b64":"Ea aliquam corrupti distinctio est.","earliest_available_date_of_internet_results":"Enim dolorem ad debitis.","min_number_of_exact_matches_in_page":3197925170,"rare_on_internet_graph_json_compressed_b64":"Molestias sint.","rare_on_internet_summary_table_as_json_compressed_b64":"Sunt quam velit tempora aspernatur ad."}},"MetricsResult":{"type":"object","properties":{"self_healing_execution_events_stats":{"$ref":"#/components/schemas/SHExecutionStats"},"self_healing_trigger_events_stats":{"type":"array","items":{"$ref":"#/components/schemas/SHTriggerStats"},"description":"Self-healing trigger stats","example":[{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."}]}},"example":{"self_healing_execution_events_stats":{"total_file_healing_failed":7768590148358975878,"total_files_healed":5003517749846764640,"total_reconstruction_not_required_evaluations_approved":2806992559829453130,"total_reconstruction_required_evaluations_approved":1107029843099257708,"total_reconstruction_required_evaluations_not_approved":5899917961438241754,"total_reconstruction_required_hash_mismatch":7662269731854437673,"total_reconstructions_not_required_evaluations_not_approved":6465655469488946682,"total_self_healing_events_accepted":8057201361166306844,"total_self_healing_events_acknowledged":7507492928430008683,"total_self_healing_events_evaluations_unverified":5026086393945454809,"total_self_healing_events_evaluations_verified":7657744171058360435,"total_self_healing_events_issued":6120797776831447879,"total_self_healing_events_rejected":4720652167101259254},"self_healing_trigger_events_stats":[{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."},{"list_of_nodes":"Et deleniti accusantium delectus qui corporis quam.","nodes_offline":1258661763829104839,"total_files_identified":5876576034719855274,"total_tickets_identified":1677436103568749246,"trigger_id":"Nobis doloremque dolores nobis ut."}]},"required":["self_healing_trigger_events_stats","self_healing_execution_events_stats"]},"NftDetail":{"type":"object","properties":{"alt_rare_on_internet_dict_json_b64":{"type":"string","description":"Base64 Compressed Json of Alternative Rare On Internet Dict","example":"Occaecati in libero eos."},"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"drawing_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"earliest_date_of_results":{"type":"string","description":"Earliest Available Date of Internet Results","example":"Qui velit qui iste."},"green_address":{"type":"boolean","description":"Green address","example":false},"hentai_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"is_rare_on_internet":{"type":"boolean","description":"is this nft rare on the internet","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"min_num_exact_matches_on_page":{"type":"integer","description":"Minimum Number of Exact Matches on Page","example":2612472777,"format":"int32"},"neutral_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"porn_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"preview_thumbnail":{"type":"string","description":"Preview Image","example":"TWFnbmkgcXVpIGRvbG9ydW0gZGlnbmlzc2ltb3MgZXN0IGVuaW0gZXZlbmlldC4=","format":"binary"},"rare_on_internet_graph_json_b64":{"type":"string","description":"Base64 Compressed JSON of Rare On Internet Graph","example":"Perspiciatis voluptatem aut."},"rare_on_internet_summary_table_json_b64":{"type":"string","description":"Base64 Compressed JSON Table of Rare On Internet Summary","example":"Exercitationem beatae architecto sequi magnam."},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"royalty":{"type":"number","description":"how much artist should get on all future resales","example":0.21136374743169004,"format":"double"},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"sexy_nsfw_score":{"type":"number","description":"nsfw score","example":1,"format":"float","minimum":0,"maximum":1},"storage_fee":{"type":"integer","description":"Storage fee %","example":100,"format":"int64"},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"Vm9sdXB0YXRlbSBjb3JydXB0aSByZXBlbGxlbmR1cyBuaWhpbCBpcHNhLg==","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"QXJjaGl0ZWN0byBxdWFzIGxhdWRhbnRpdW0gbGFib3JlIGVycm9yIGRpc3RpbmN0aW8gYWQu","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"version":{"type":"integer","description":"version","example":1,"format":"int64"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"alt_rare_on_internet_dict_json_b64":"Provident ex.","copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","drawing_nsfw_score":1,"earliest_date_of_results":"Numquam et.","green_address":false,"hentai_nsfw_score":1,"is_likely_dupe":false,"is_rare_on_internet":false,"keywords":"Renaissance, sfumato, portrait","min_num_exact_matches_on_page":2034231454,"neutral_nsfw_score":1,"nsfw_score":1,"porn_nsfw_score":1,"preview_thumbnail":"U2ludCBmdWdpYXQgZG9sb3JlcyBldCByZXJ1bSBpcHNhbS4=","rare_on_internet_graph_json_b64":"Et voluptatem aliquid.","rare_on_internet_summary_table_json_b64":"Est modi corporis aut voluptates et beatae.","rareness_score":1,"royalty":0.904486260011567,"series_name":"Famous artist","sexy_nsfw_score":1,"storage_fee":100,"thumbnail_1":"TmVzY2l1bnQgdXQgbGFib3Jpb3NhbSBhdXQu","thumbnail_2":"Vm9sdXB0YXRlbSByZXBlbGxhdC4=","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","version":1,"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["rareness_score","nsfw_score","is_likely_dupe","is_rare_on_internet","title","description","creator_name","copies","creator_pastelid","txid"]},"NftRegisterPayload":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"key":{"type":"string","description":"Passphrase of the owner's PastelID","example":"Basic abcdef12345"},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Vero optio maiores hic provident recusandae rem."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/ThumbnailcoordinateResponseBody"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"Request of the registration NFT","example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Et hic sed deleniti repellendus.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["creator_name","name","creator_pastelid","spendable_address","maximum_fee","key"]},"NftSearchResult":{"type":"object","properties":{"match_index":{"type":"integer","description":"Sort index of the match based on score.This must be used to sort results on UI.","example":339062948188476620,"format":"int64"},"matches":{"type":"array","items":{"$ref":"#/components/schemas/FuzzyMatch"},"description":"Match result details","example":[{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."}]},"nft":{"$ref":"#/components/schemas/NftSummary"}},"example":{"match_index":1720479694923405058,"matches":[{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."},{"field_type":"keyword","matched_indexes":[5818914520330390061,8674536662246191115,6506012960807764347,5168155951224844731],"score":7675232511310410690,"str":"Nostrum incidunt voluptatem sit velit et."}],"nft":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"QXV0IGFtZXQgc2VxdWku","thumbnail_2":"U2VxdWkgdmVsLg==","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"}},"required":["nft","matches","match_index"]},"NftSummary":{"type":"object","properties":{"copies":{"type":"integer","description":"Number of copies","default":1,"example":1,"format":"int64","minimum":1,"maximum":1000},"creator_name":{"type":"string","description":"Name of the artist","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Artist's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"Artist website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"is_likely_dupe":{"type":"boolean","description":"Is this image likely a duplicate of another known image","example":false},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"nsfw_score":{"type":"number","description":"NSFW Average score","example":1,"format":"float","minimum":0,"maximum":1},"rareness_score":{"type":"number","description":"Average pastel rareness score","example":1,"format":"float","minimum":0,"maximum":1},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"thumbnail_1":{"type":"string","description":"Thumbnail_1 image","example":"RWEgb21uaXMgYWQgbWFnbmkgaW52ZW50b3JlLg==","format":"binary"},"thumbnail_2":{"type":"string","description":"Thumbnail_2 image","example":"RXQgbGliZXJvIGFsaWFzIGhpYyB2b2x1cHRhdGlidXMu","format":"binary"},"title":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"description":"NFT response","example":{"copies":1,"creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","is_likely_dupe":false,"keywords":"Renaissance, sfumato, portrait","nsfw_score":1,"rareness_score":1,"series_name":"Famous artist","thumbnail_1":"RXQgdm9sdXB0YXRpYnVzIGN1bXF1ZSBuaXNpIG1vZGkgY29uc2VxdWF0dXIu","thumbnail_2":"Tm9iaXMgc2l0IGVvcyBwcm92aWRlbnQgdm9sdXB0YXMu","title":"Mona Lisa","txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["title","description","creator_name","copies","creator_pastelid","txid"]},"ObserverEvaluationData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":535385203,"format":"int32"},"is_challenge_timestamp_ok":{"type":"boolean","description":"IsChallengeTimestampOK","example":true},"is_challenger_signature_ok":{"type":"boolean","description":"IsChallengerSignatureOK","example":false},"is_evaluation_result_ok":{"type":"boolean","description":"IsEvaluationResultOK","example":true},"is_evaluation_timestamp_ok":{"type":"boolean","description":"IsEvaluationTimestampOK","example":true},"is_process_timestamp_ok":{"type":"boolean","description":"IsProcessTimestampOK","example":false},"is_recipient_signature_ok":{"type":"boolean","description":"IsRecipientSignatureOK","example":false},"merkelroot":{"type":"string","description":"Merkelroot","example":"Et fuga voluptatem libero tempora vel consectetur."},"reason":{"type":"string","description":"Reason","example":"Accusamus aut."},"timestamp":{"type":"string","description":"Timestamp","example":"Rerum debitis optio dolores sint quam dolor."},"true_hash":{"type":"string","description":"TrueHash","example":"Et reiciendis qui."}},"description":"Data of Observer's evaluation","example":{"block":442629971,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":false,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":true,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Magni voluptatem quia qui.","reason":"Est et et dolor rerum quisquam natus.","timestamp":"Fugit totam harum mollitia.","true_hash":"Quia fuga quidem est dolorem quae odit."},"required":["timestamp","is_challenge_timestamp_ok","is_process_timestamp_ok","is_evaluation_timestamp_ok","is_recipient_signature_ok","is_challenger_signature_ok","is_evaluation_result_ok","true_hash"]},"RegisterCollectionRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"collection_item_copy_count":{"type":"integer","description":"item copy count in the collection","default":1,"example":10,"format":"int64","minimum":1,"maximum":1000},"collection_name":{"type":"string","description":"name of the collection","example":"galaxies"},"green":{"type":"boolean","description":"green","default":false,"example":false},"item_type":{"type":"string","description":"type of items, store by collection","example":"sense","enum":["sense","nft"]},"list_of_pastelids_of_authorized_contributors":{"type":"array","items":{"type":"string","example":"Eveniet possimus in iusto harum soluta."},"description":"list of authorized contributors","example":["apple","banana","orange"]},"max_collection_entries":{"type":"integer","description":"max no of entries in the collection","example":5000,"format":"int64","minimum":1,"maximum":10000},"max_permitted_open_nsfw_score":{"type":"number","description":"max open nfsw score sense and nft items can have","example":0.5,"format":"double","minimum":0,"maximum":1},"minimum_similarity_score_to_first_entry_in_collection":{"type":"number","description":"min similarity for 1st entry to have","example":0.5,"format":"double","minimum":0,"maximum":1},"no_of_days_to_finalize_collection":{"type":"integer","description":"no of days to finalize collection","default":7,"example":5,"format":"int64","minimum":1,"maximum":7},"royalty":{"type":"number","description":"royalty fee","default":0,"example":2.32,"format":"double","minimum":0,"maximum":20},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","collection_item_copy_count":10,"collection_name":"galaxies","green":false,"item_type":"sense","list_of_pastelids_of_authorized_contributors":["apple","banana","orange"],"max_collection_entries":5000,"max_permitted_open_nsfw_score":0.5,"minimum_similarity_score_to_first_entry_in_collection":0.5,"no_of_days_to_finalize_collection":5,"royalty":2.32,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["collection_name","item_type","list_of_pastelids_of_authorized_contributors","max_collection_entries","max_permitted_open_nsfw_score","minimum_similarity_score_to_first_entry_in_collection","app_pastelid","spendable_address"]},"RegisterCollectionResponse":{"type":"object","properties":{"task_id":{"type":"string","description":"Uploaded file ID","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"RegisterRequestBody":{"type":"object","properties":{"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"creator_name":{"type":"string","description":"Name of the NFT creator","example":"Leonardo da Vinci","maxLength":256},"creator_pastelid":{"type":"string","description":"Creator's PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"creator_website_url":{"type":"string","description":"NFT creator website URL","example":"https://www.leonardodavinci.net","maxLength":256},"description":{"type":"string","description":"Description of the NFT","example":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","maxLength":1024},"green":{"type":"boolean","description":"To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees","example":false},"image_id":{"type":"string","description":"Uploaded image ID","example":"VK7mpAqZ","minLength":8,"maxLength":8},"issued_copies":{"type":"integer","description":"Number of copies issued","example":1,"format":"int64","maximum":1000},"keywords":{"type":"string","description":"Keywords","example":"Renaissance, sfumato, portrait","maxLength":256},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"maximum_fee":{"type":"number","description":"Used to find a suitable masternode with a fee equal or less","default":1,"example":100,"format":"double","minimum":0.00001},"name":{"type":"string","description":"Name of the NFT","example":"Mona Lisa","maxLength":256},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Vitae deserunt et minima reprehenderit sed sunt."},"royalty":{"type":"number","description":"Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT","example":12,"format":"double","maximum":20},"series_name":{"type":"string","description":"Series name","example":"Famous artist","maxLength":256},"spendable_address":{"type":"string","description":"Spendable address","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":36},"thumbnail_coordinate":{"$ref":"#/components/schemas/Thumbnailcoordinate"},"youtube_url":{"type":"string","description":"NFT creation video youtube URL","example":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0","maxLength":128}},"example":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"image_id":"VK7mpAqZ","issued_copies":1,"keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Recusandae ipsam est.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"required":["image_id","creator_name","name","creator_pastelid","spendable_address","maximum_fee"]},"RegisterResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8}},"example":{"task_id":"n6Qn6TFM"},"required":["task_id"]},"RegisterTaskResponseBody":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"states":{"type":"array","items":{"$ref":"#/components/schemas/TaskState"},"description":"List of states from the very beginning of the process","example":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}]},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"RegisterTaskResponseBody result type (default view)","example":{"id":"n6Qn6TFM","states":[{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"}],"status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Cupiditate nobis nesciunt.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"Registration":{"type":"object","properties":{"files":{"type":"array","items":{"$ref":"#/components/schemas/File"},"description":"List of files","example":[{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."}]}},"example":{"files":[{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."},{"activation_attempts":[{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true},{"activation_attempt_at":"2015-07-10T22:10:25Z","error_message":"Minima quae.","file_id":"Ea dolor ipsa cumque eum natus velit.","id":4896761915080050783,"is_successful":true}],"activation_txid":"Perferendis unde qui qui dicta.","base_file_id":"Numquam voluptas.","burn_txn_id":"Alias qui est vel ipsa.","cascade_metadata_ticket_id":"Quasi quia cum officia quis.","done_block":4549696835988976285,"file_id":"Ut officiis sed recusandae et qui neque.","file_index":"Et autem.","hash_of_original_big_file":"Veritatis ducimus veniam accusantium sit.","is_concluded":true,"name_of_original_big_file_with_ext":"Doloribus neque placeat iure distinctio nihil quam.","reg_txid":"Accusamus repellat commodi architecto aut quidem inventore.","registration_attempts":[{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"},{"error_message":"Quia repudiandae explicabo esse.","file_id":"Voluptatem architecto et deleniti ut voluptas.","finished_at":"1978-07-19T05:51:12Z","id":5954754729161757441,"is_successful":false,"processor_sns":"Debitis et perspiciatis aut incidunt necessitatibus ea.","reg_started_at":"1992-08-06T08:57:14Z"}],"req_amount":0.5901269096462677,"req_burn_txn_amount":0.5209096568475247,"size_of_original_big_file":0.7605141273682495,"start_block":423177126,"task_id":"Voluptatem aliquam molestias.","upload_timestamp":"1975-10-05T20:05:50Z","uuid_key":"Non aut."}]},"required":["files"]},"RegistrationAttempt":{"type":"object","properties":{"error_message":{"type":"string","description":"Error Message","example":"Dolore sequi."},"file_id":{"type":"string","description":"File ID","example":"Et iure veritatis ut unde qui aut."},"finished_at":{"type":"string","description":"Finished At in datetime format","example":"1970-06-13T21:57:33Z","format":"date-time"},"id":{"type":"integer","description":"ID","example":320148559926332562,"format":"int64"},"is_successful":{"type":"boolean","description":"Indicates if the registration was successful","example":true},"processor_sns":{"type":"string","description":"Processor SNS","example":"Ullam non deleniti pariatur perferendis sequi."},"reg_started_at":{"type":"string","description":"Registration Started At in datetime format","example":"1994-12-12T00:18:47Z","format":"date-time"}},"example":{"error_message":"Eos at accusamus sunt.","file_id":"Dolor aut voluptatem.","finished_at":"1975-03-22T18:00:03Z","id":7837618538679308024,"is_successful":true,"processor_sns":"Aspernatur ducimus.","reg_started_at":"1998-08-30T12:34:56Z"},"required":["id","file_id","reg_started_at","finished_at"]},"RespondedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"missing_keys":{"type":"array","items":{"type":"string","example":"Qui reprehenderit est."},"example":["Recusandae illum.","Enim adipisci quod."]},"reconstructed_file_hash":{"type":"string","example":"RGlnbmlzc2ltb3MgdmVuaWFtIHBvcnJvIGV0IHNpbnQgZHVjaW11cy4=","format":"binary"},"ticket_type":{"type":"string","example":"Numquam consectetur voluptatum."},"tx_id":{"type":"string","example":"Magnam omnis debitis consequatur aspernatur excepturi."}},"example":{"is_reconstruction_required":true,"missing_keys":["Et quia maiores minima dolor.","Cupiditate ipsa."],"reconstructed_file_hash":"TW9sZXN0aWFzIGFuaW1pIG1vbGxpdGlhIHF1aWJ1c2RhbS4=","ticket_type":"Velit nesciunt est aut.","tx_id":"Est voluptas repellendus."}},"ResponseData":{"type":"object","properties":{"block":{"type":"integer","description":"Block","example":805125620,"format":"int32"},"hash":{"type":"string","description":"Hash","example":"Omnis ut esse voluptatem quibusdam nihil."},"merkelroot":{"type":"string","description":"Merkelroot","example":"Explicabo aperiam consequatur in accusamus."},"timestamp":{"type":"string","description":"Timestamp","example":"Voluptas ut et minima suscipit est nam."}},"description":"Data of response","example":{"block":740280977,"hash":"Porro eius dolorem est.","merkelroot":"Consequatur iusto repudiandae reprehenderit est.","timestamp":"Provident voluptas dolorem."},"required":["timestamp"]},"RestoreFile":{"type":"object","properties":{"activated_volumes":{"type":"integer","description":"Total volumes that are activated","example":8426744880740692251,"format":"int64"},"registered_volumes":{"type":"integer","description":"Total registered volumes","example":3559206715321474151,"format":"int64"},"total_volumes":{"type":"integer","description":"Total volumes of selected file","example":1098105068733038967,"format":"int64"},"volumes_activated_in_recovery_flow":{"type":"integer","description":"Total volumes that are activated in restore process","example":3818185115290444123,"format":"int64"},"volumes_registration_in_progress":{"type":"integer","description":"Total volumes with in-progress registration","example":8772042060352284466,"format":"int64"},"volumes_with_pending_registration":{"type":"integer","description":"Total volumes with pending registration","example":3727705082800096595,"format":"int64"}},"example":{"activated_volumes":636875621281698798,"registered_volumes":874086234174926113,"total_volumes":8121047562571365333,"volumes_activated_in_recovery_flow":3063150712474952209,"volumes_registration_in_progress":6718196916299404612,"volumes_with_pending_registration":4748871480729151297},"required":["total_volumes","registered_volumes","volumes_with_pending_registration","volumes_registration_in_progress","activated_volumes","volumes_activated_in_recovery_flow"]},"RestoreRequestBody":{"type":"object","properties":{"app_pastelId":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelId":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelId"]},"SHExecutionStats":{"type":"object","properties":{"total_file_healing_failed":{"type":"integer","description":"Total number of file healings that failed","example":600035297633492919,"format":"int64"},"total_files_healed":{"type":"integer","description":"Total number of files healed","example":8639078711306985033,"format":"int64"},"total_reconstruction_not_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions not required approved by verifier nodes","example":5539198291737590419,"format":"int64"},"total_reconstruction_required_evaluations_approved":{"type":"integer","description":"Total number of reconstructions approved by verifier nodes","example":2764680129885746875,"format":"int64"},"total_reconstruction_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not approved by verifier nodes","example":729077924371917902,"format":"int64"},"total_reconstruction_required_hash_mismatch":{"type":"integer","description":"Total number of reconstructions required with hash mismatch","example":965154047329691272,"format":"int64"},"total_reconstructions_not_required_evaluations_not_approved":{"type":"integer","description":"Total number of reconstructions not required evaluation not approved by verifier nodes","example":3895338302541362261,"format":"int64"},"total_self_healing_events_accepted":{"type":"integer","description":"Total number of events accepted (healer node evaluated that reconstruction is required)","example":447735336983725964,"format":"int64"},"total_self_healing_events_acknowledged":{"type":"integer","description":"Total number of events acknowledged by the healer node","example":1010705405100376002,"format":"int64"},"total_self_healing_events_evaluations_unverified":{"type":"integer","description":"Total number of challenge evaluations unverified by verifier nodes","example":3438722586354257104,"format":"int64"},"total_self_healing_events_evaluations_verified":{"type":"integer","description":"Total number of challenges verified","example":1974367370018426106,"format":"int64"},"total_self_healing_events_issued":{"type":"integer","description":"Total number of self-healing events issued","example":4802944690403323506,"format":"int64"},"total_self_healing_events_rejected":{"type":"integer","description":"Total number of events rejected (healer node evaluated that reconstruction is not required)","example":2869225782216519834,"format":"int64"}},"description":"Self-healing execution stats","example":{"total_file_healing_failed":6356734628013537993,"total_files_healed":7363763434478222822,"total_reconstruction_not_required_evaluations_approved":5922279983601605385,"total_reconstruction_required_evaluations_approved":282068039988137384,"total_reconstruction_required_evaluations_not_approved":1071365249693659128,"total_reconstruction_required_hash_mismatch":5432621285288541737,"total_reconstructions_not_required_evaluations_not_approved":2615228122055479737,"total_self_healing_events_accepted":547812972672561730,"total_self_healing_events_acknowledged":7389611438520604255,"total_self_healing_events_evaluations_unverified":5818042888904850105,"total_self_healing_events_evaluations_verified":2955050043126000894,"total_self_healing_events_issued":7749784342702682559,"total_self_healing_events_rejected":3277213621180435391},"required":["total_self_healing_events_issued","total_self_healing_events_acknowledged","total_self_healing_events_rejected","total_self_healing_events_accepted","total_self_healing_events_evaluations_verified","total_reconstruction_required_evaluations_approved","total_reconstruction_not_required_evaluations_approved","total_self_healing_events_evaluations_unverified","total_reconstruction_required_evaluations_not_approved","total_reconstructions_not_required_evaluations_not_approved","total_files_healed","total_file_healing_failed"]},"SHTriggerStats":{"type":"object","properties":{"list_of_nodes":{"type":"string","description":"Comma-separated list of offline nodes","example":"A officia iusto et dignissimos ea."},"nodes_offline":{"type":"integer","description":"Number of nodes offline","example":3219136894373510389,"format":"int64"},"total_files_identified":{"type":"integer","description":"Total number of files identified for self-healing","example":7480284090582634898,"format":"int64"},"total_tickets_identified":{"type":"integer","description":"Total number of tickets identified for self-healing","example":4696543953839667998,"format":"int64"},"trigger_id":{"type":"string","description":"Unique identifier for the trigger","example":"Qui laudantium maiores magnam numquam sed."}},"description":"Self-healing trigger stats","example":{"list_of_nodes":"Vel eveniet odit voluptas ea.","nodes_offline":2106324933418549113,"total_files_identified":7665255617375603928,"total_tickets_identified":5348384551062672275,"trigger_id":"Et et id expedita."},"required":["trigger_id","nodes_offline","list_of_nodes","total_files_identified","total_tickets_identified"]},"SelfHealingChallengeData":{"type":"object","properties":{"block":{"type":"integer","example":15564711,"format":"int32"},"event_tickets":{"type":"array","items":{"$ref":"#/components/schemas/EventTicket"},"example":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}]},"merkelroot":{"type":"string","example":"Dolor harum laborum non qui."},"nodes_on_watchlist":{"type":"string","example":"Est dolores quas id."},"timestamp":{"type":"string","example":"Unde soluta ad."}},"example":{"block":1798339404,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Consectetur tenetur quas quia a adipisci esse.","nodes_on_watchlist":"Rem dicta.","timestamp":"Excepturi laudantium consectetur fugit quibusdam sit."}},"SelfHealingMessage":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/SelfHealingMessageData"},"message_type":{"type":"string","example":"Qui nostrum et harum enim voluptates et."},"sender_id":{"type":"string","example":"Accusantium deleniti ut enim et rem eos."},"sender_signature":{"type":"string","example":"UmVwcmVoZW5kZXJpdCB2b2x1cHRhdGVtIGRvbG9ydW0u","format":"binary"},"trigger_id":{"type":"string","example":"Et debitis."}},"example":{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Similique nam et odio vero consectetur.","sender_id":"Ea aut quaerat ut rem sunt alias.","sender_signature":"TWFnbmkgYXV0ZW0gYWNjdXNhbnRpdW0gc2l0IGRvbG9yIHF1YWVyYXQgZXQu","trigger_id":"Eveniet non vitae qui ducimus."}},"SelfHealingMessageData":{"type":"object","properties":{"challenger_id":{"type":"string","example":"Cum mollitia magni aut molestiae similique."},"event_details":{"$ref":"#/components/schemas/SelfHealingChallengeData"},"recipient_id":{"type":"string","example":"Consequuntur necessitatibus eveniet."},"response":{"$ref":"#/components/schemas/SelfHealingResponseData"},"verification":{"$ref":"#/components/schemas/SelfHealingVerificationData"}},"example":{"challenger_id":"Voluptas est.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Nihil sit maiores sapiente.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}}},"SelfHealingMessageKV":{"type":"object","properties":{"message_type":{"type":"string","description":"Message type","example":"Ipsum accusantium rerum."},"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessage"},"description":"Self-healing messages","example":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}},"example":{"message_type":"Amet qui voluptatibus magni consectetur voluptate.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}},"SelfHealingReport":{"type":"object","properties":{"messages":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingMessageKV"},"description":"Map of message type to SelfHealingMessages","example":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},"example":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},"SelfHealingReportKV":{"type":"object","properties":{"event_id":{"type":"string","description":"Challenge ID","example":"Dolor hic."},"report":{"$ref":"#/components/schemas/SelfHealingReport"}},"example":{"event_id":"Sit sint explicabo molestias aliquam repellendus.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}}},"SelfHealingReports":{"type":"object","properties":{"reports":{"type":"array","items":{"$ref":"#/components/schemas/SelfHealingReportKV"},"description":"Map of challenge ID to SelfHealingReport","example":[{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}}]}},"example":{"reports":[{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}},{"event_id":"Architecto illo amet et sunt velit repellat.","report":{"messages":[{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]},{"message_type":"Id ex ea.","messages":[{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."},{"data":{"challenger_id":"Magnam ipsum itaque provident.","event_details":{"block":1887029882,"event_tickets":[{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."},{"data_hash":"VmVybyBuaWhpbC4=","missing_keys":["Qui voluptatibus aspernatur ducimus omnis.","Veniam porro corrupti voluptates consequatur."],"recipient":"Molestias quia aut rerum expedita.","ticket_type":"Sunt consectetur laudantium.","tx_id":"Totam et."}],"merkelroot":"Iste nisi eos.","nodes_on_watchlist":"Nostrum fuga excepturi.","timestamp":"Sapiente nulla ipsum qui."},"recipient_id":"Aliquid voluptatem.","response":{"block":1678684821,"event_id":"Architecto velit.","merkelroot":"Non quibusdam sit id pariatur minima est.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Aut voluptas repellat beatae voluptatibus sint modi.","verifiers":["Ex qui.","Dolor molestiae omnis aut adipisci occaecati.","Ab ducimus quis."]},"verification":{"block":955150212,"event_id":"Voluptas libero.","merkelroot":"Est aut voluptas nihil et.","timestamp":"Sed suscipit sapiente.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Earum consectetur et.":"QXNwZXJpb3JlcyB2b2x1cHRhdGlidXMgZXN0IG5vbiBpc3RlIHJlcGVsbGF0Lg==","Ut culpa.":"TW9sbGl0aWEgcmVjdXNhbmRhZSBkb2xvcnVtIGFwZXJpYW0gdXQu"}}},"message_type":"Aliquam quidem.","sender_id":"Molestiae illum neque quia quos autem.","sender_signature":"T21uaXMgcXVpZGVtIG5hbS4=","trigger_id":"Totam qui."}]}]}}]}},"SelfHealingResponseData":{"type":"object","properties":{"block":{"type":"integer","example":1587956188,"format":"int32"},"event_id":{"type":"string","example":"Id labore."},"merkelroot":{"type":"string","example":"Accusamus et perspiciatis cumque praesentium ut."},"responded_ticket":{"$ref":"#/components/schemas/RespondedTicket"},"timestamp":{"type":"string","example":"Ipsa odit atque dicta non ab."},"verifiers":{"type":"array","items":{"type":"string","example":"Dignissimos impedit."},"example":["Debitis voluptatem.","Ea molestias.","Autem soluta.","Provident ea molestiae ea et nisi aut."]}},"example":{"block":1515814838,"event_id":"Provident aperiam molestiae ipsum.","merkelroot":"Aut enim.","responded_ticket":{"is_reconstruction_required":false,"missing_keys":["Dolorem id molestiae iusto quo saepe.","Nisi est est veritatis est dolor."],"reconstructed_file_hash":"QXV0IGV4cGVkaXRhIGlkLg==","ticket_type":"Numquam deleniti.","tx_id":"Quisquam quisquam voluptatem eligendi quo quia doloribus."},"timestamp":"Est aut ut.","verifiers":["Officiis ipsum quidem.","Et cumque consectetur expedita dolor ea quos.","Voluptatem et."]}},"SelfHealingVerificationData":{"type":"object","properties":{"block":{"type":"integer","example":1762192540,"format":"int32"},"event_id":{"type":"string","example":"Iure non."},"merkelroot":{"type":"string","example":"Incidunt veniam debitis repellendus modi dignissimos voluptas."},"timestamp":{"type":"string","example":"Magni qui."},"verified_ticket":{"$ref":"#/components/schemas/VerifiedTicket"},"verifiers_data":{"type":"object","example":{"Accusantium sit incidunt dolore assumenda.":"RXZlbmlldCBoYXJ1bSBxdWkgZXN0Lg==","Qui ipsa dolorum velit aliquam eum quod.":"Vm9sdXB0YXRlIGhhcnVtIHZvbHVwdGF0ZW0gZG9sb3J1bSBhdHF1ZSBzZXF1aSBhc3Blcm5hdHVyLg=="},"additionalProperties":{"type":"string","example":"QmxhbmRpdGlpcyB2b2x1cHRhcy4=","format":"binary"}}},"example":{"block":1147500050,"event_id":"Amet quaerat blanditiis consequatur et perferendis.","merkelroot":"Aut non explicabo eligendi ea.","timestamp":"Ratione fuga nobis incidunt est.","verified_ticket":{"is_reconstruction_required":true,"is_verified":false,"message":"Ab aliquid totam nesciunt autem vel.","missing_keys":["Facilis illum.","Vel ratione a occaecati veniam."],"reconstructed_file_hash":"VmVsaXQgaXBzYSBxdWkgZXZlbmlldCBpZCBhY2N1c2FtdXMu","ticket_type":"Quis dolorum similique ut dolor delectus.","tx_id":"Ullam neque sint quas ut natus beatae."},"verifiers_data":{"Debitis nihil architecto.":"QWxpcXVhbSBmYWNlcmUgZXQgaWQgbWluaW1hLg=="}}},"StartProcessingRequestBody":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"burn_txids":{"type":"array","items":{"type":"string","example":"Autem quod expedita consequatur."},"description":"List of Burn transaction IDs for multi-volume registration","example":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"]},"make_publicly_accessible":{"type":"boolean","description":"To make it publicly accessible","default":false,"example":false},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","burn_txids":["576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"],"make_publicly_accessible":false,"spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["app_pastelid"]},"StartProcessingRequestBody2":{"type":"object","properties":{"app_pastelid":{"type":"string","description":"App PastelID","example":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","pattern":"^[a-zA-Z0-9]+$","minLength":86,"maxLength":86},"burn_txid":{"type":"string","description":"Burn transaction ID","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64},"collection_act_txid":{"type":"string","description":"Act Collection TxID to add given ticket in collection ","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"open_api_group_id":{"type":"string","description":"OpenAPI GroupID string","default":"PASTEL","example":"Animi architecto ea."},"spendable_address":{"type":"string","description":"Address to use for registration fee ","example":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","pattern":"^[a-zA-Z0-9]+$","minLength":35,"maxLength":35}},"example":{"app_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","open_api_group_id":"Veniam quidem quia amet et qui.","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j"},"required":["burn_txid","app_pastelid"]},"StartProcessingResult":{"type":"object","properties":{"task_id":{"type":"string","description":"Task ID of processing task","example":"VK7mpAqZ","minLength":8,"maxLength":8}},"example":{"task_id":"VK7mpAqZ"},"required":["task_id"]},"StorageMessage":{"type":"object","properties":{"challenge":{"$ref":"#/components/schemas/ChallengeData"},"challenge_id":{"type":"string","description":"ID of the challenge","example":"Numquam autem aut."},"challenger_evaluation":{"$ref":"#/components/schemas/EvaluationData"},"challenger_id":{"type":"string","description":"ID of the challenger","example":"Tenetur exercitationem et reprehenderit quo sed."},"message_type":{"type":"string","description":"type of the message","example":"Fuga quos."},"observer_evaluation":{"$ref":"#/components/schemas/ObserverEvaluationData"},"observers":{"type":"array","items":{"type":"string","example":"Suscipit est libero tempore totam."},"description":"List of observer IDs","example":["Odio minus repellendus.","Explicabo molestiae dolorem.","Doloribus consequatur et quis perspiciatis dolores fuga."]},"recipient_id":{"type":"string","description":"ID of the recipient","example":"Ea reprehenderit quia."},"response":{"$ref":"#/components/schemas/ResponseData"},"sender_id":{"type":"string","description":"ID of the sender's node","example":"Deleniti et culpa doloremque id corrupti."},"sender_signature":{"type":"string","description":"signature of the sender","example":"Amet laudantium necessitatibus vero laborum."}},"description":"Storage challenge message data","example":{"challenge":{"block":1533850580,"end_index":3333691379975401886,"file_hash":"Quidem deserunt rem.","merkelroot":"Accusantium qui quod voluptas officiis.","start_index":6009480957455380299,"timestamp":"Quia repellendus labore architecto."},"challenge_id":"Vel inventore iusto voluptatem nihil tempora.","challenger_evaluation":{"block":1162046023,"hash":"Aliquid voluptatum qui sit nemo accusamus.","is_verified":true,"merkelroot":"Id rem omnis iste eveniet eligendi veniam.","timestamp":"Voluptatibus commodi iure ut unde voluptatum."},"challenger_id":"Itaque commodi.","message_type":"Accusamus numquam qui modi laudantium incidunt quam.","observer_evaluation":{"block":1933870942,"is_challenge_timestamp_ok":false,"is_challenger_signature_ok":true,"is_evaluation_result_ok":false,"is_evaluation_timestamp_ok":false,"is_process_timestamp_ok":false,"is_recipient_signature_ok":true,"merkelroot":"Voluptates ipsum quibusdam facilis quos.","reason":"Commodi quibusdam voluptatem quam itaque libero.","timestamp":"Ea veniam ipsum esse est.","true_hash":"Quas sit eum laudantium quo."},"observers":["Non rem rerum deserunt qui et.","Quam cum ullam est quis voluptatem eum.","Cumque deserunt.","Exercitationem ut officia occaecati iure quisquam."],"recipient_id":"Hic sit cum sed.","response":{"block":816684052,"hash":"Explicabo nihil non occaecati accusamus.","merkelroot":"Exercitationem quisquam id accusantium voluptatibus blanditiis dolorem.","timestamp":"Asperiores pariatur et dolor dolore qui cum."},"sender_id":"Officia et accusantium.","sender_signature":"Debitis tenetur exercitationem voluptates perspiciatis repudiandae."},"required":["challenge_id","message_type","sender_id","challenger_id","observers","recipient_id"]},"SummaryStatsResult":{"type":"object","properties":{"sc_summary_stats":{"$ref":"#/components/schemas/HCSummaryStats"}},"example":{"sc_summary_stats":{"no_of_invalid_evaluation_observed_by_observers":5854226055096814600,"no_of_invalid_signatures_observed_by_observers":4353527834150504494,"no_of_slow_responses_observed_by_observers":1357252241103533124,"total_challenges_evaluated_by_challenger":3728835119474173051,"total_challenges_issued":6647138861710727929,"total_challenges_processed_by_recipient":5873786866786505808,"total_challenges_verified":6262794736214513307}},"required":["sc_summary_stats"]},"TaskHistory":{"type":"object","properties":{"details":{"$ref":"#/components/schemas/Details"},"message":{"type":"string","description":"message string (if any)","example":"Balance less than maximum fee provied in the request, could not gather enough confirmations..."},"status":{"type":"string","description":"past status string","example":"Started, Image Probed, Downloaded..."},"timestamp":{"type":"string","description":"Timestamp of the status creation","example":"2006-01-02T15:04:05Z07:00"}},"example":{"details":{"fields":{"Et consequatur.":"Nisi molestias voluptatem odit.","Sit distinctio laborum.":"Nihil quis expedita similique itaque voluptatem."},"message":"Image has been downloaded..."},"message":"Balance less than maximum fee provied in the request, could not gather enough confirmations...","status":"Started, Image Probed, Downloaded...","timestamp":"2006-01-02T15:04:05Z07:00"},"required":["status"]},"TaskResponseTiny":{"type":"object","properties":{"id":{"type":"string","description":"JOb ID of the registration process","example":"n6Qn6TFM","minLength":8,"maxLength":8},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]},"ticket":{"$ref":"#/components/schemas/NftRegisterPayload"},"txid":{"type":"string","description":"txid","example":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","minLength":64,"maxLength":64}},"description":"TaskResponse result type (tiny view)","example":{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},"required":["id","status","ticket"]},"TaskResponseTinyCollection":{"type":"array","items":{"$ref":"#/components/schemas/TaskResponseTiny"},"description":"RegisterTasksResponseBody is the result type for an array of TaskResponse (tiny view)","example":[{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"},{"id":"n6Qn6TFM","status":"Task Started","ticket":{"burn_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","collection_act_txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58","creator_name":"Leonardo da Vinci","creator_pastelid":"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS","creator_website_url":"https://www.leonardodavinci.net","description":"The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape.","green":false,"issued_copies":1,"key":"Basic abcdef12345","keywords":"Renaissance, sfumato, portrait","make_publicly_accessible":false,"maximum_fee":100,"name":"Mona Lisa","open_api_group_id":"Quos vel in corrupti.","royalty":12,"series_name":"Famous artist","spendable_address":"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j","thumbnail_coordinate":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"youtube_url":"https://www.youtube.com/watch?v=0xl6Ufo4ZX0"},"txid":"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58"}]},"TaskState":{"type":"object","properties":{"date":{"type":"string","description":"Date of the status creation","example":"2006-01-02T15:04:05Z07:00"},"status":{"type":"string","description":"Status of the registration process","example":"Task Started","enum":["Task Started","Connected","Validated Duplicate Reg Tickets","Validating Burn Txn","Burn Txn Validated","Image Probed","Image And Thumbnail Uploaded","Status Gen ReptorQ Symbols","Preburn Registration Fee","Downloaded","Request Accepted","Request Registered","Request Activated","Error Setting up mesh of supernodes","Error Sending Reg Metadata","Error Uploading Image","Error Converting Image to Bytes","Error Encoding Image","Error Creating Ticket","Error Signing Ticket","Error Uploading Ticket","Error Activating Ticket","Error Probing Image","Error checking dd-server availability before probe image","Error Generating DD and Fingerprint IDs","Error comparing suitable storage fee with task request maximum fee","Error balance not sufficient","Error getting hash of the image","Error sending signed ticket to SNs","Error checking balance","Error burning reg fee to get reg ticket id","Error validating reg ticket txn id","Error validating activate ticket txn id","Error Insufficient Fee","Error Signatures Dont Match","Error Fingerprints Dont Match","Error ThumbnailHashes Dont Match","Error GenRaptorQ Symbols Failed","Error File Don't Match","Error Not Enough SuperNode","Error Find Responding SNs","Error Not Enough Downloaded Filed","Error Download Failed","Error Invalid Burn TxID","Error Ownership Not Match","Error Hash Mismatch","Task Failed","Task Rejected","Task Completed"]}},"example":{"date":"2006-01-02T15:04:05Z07:00","status":"Task Started"},"required":["date","status"]},"Thumbnailcoordinate":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"ThumbnailcoordinateResponseBody":{"type":"object","properties":{"bottom_right_x":{"type":"integer","description":"X coordinate of the thumbnail's bottom right conner","default":0,"example":640,"format":"int64"},"bottom_right_y":{"type":"integer","description":"Y coordinate of the thumbnail's bottom right conner","default":0,"example":480,"format":"int64"},"top_left_x":{"type":"integer","description":"X coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"},"top_left_y":{"type":"integer","description":"Y coordinate of the thumbnail's top left conner","default":0,"example":0,"format":"int64"}},"description":"Coordinate of the thumbnail (default view)","example":{"bottom_right_x":640,"bottom_right_y":480,"top_left_x":0,"top_left_y":0},"required":["top_left_x","top_left_y","bottom_right_x","bottom_right_y"]},"UploadAssetRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"UGVyZmVyZW5kaXMgbWludXMgc3VzY2lwaXQgY29ycnVwdGku","format":"binary"},"filename":{"type":"string","description":"For internal use"},"hash":{"type":"string","description":"For internal use"},"size":{"type":"integer","description":"For internal use","format":"int64"}},"example":{"file":"UHJhZXNlbnRpdW0gbWludXMu"},"required":["file"]},"UploadImageRequestBody":{"type":"object","properties":{"file":{"type":"string","description":"File to upload","example":"UGVyc3BpY2lhdGlzIG1heGltZSBhc3BlcmlvcmVzIHF1YWUu","format":"binary"},"filename":{"type":"string","description":"For internal use"}},"example":{"file":"RXNzZSBuaXNpIGFwZXJpYW0gZGVsZWN0dXMgZWEgZXhwbGljYWJvIGV0Lg=="},"required":["file"]},"UserImageUploadPayload":{"type":"object","properties":{"content":{"type":"string","description":"File to upload (byte array of the file content)","example":"iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg==","format":"binary"},"filename":{"type":"string","description":"File name of the user image","example":"image_name.png","pattern":"^.*\\.(png|PNG|jpeg|JPEG|jpg|JPG)$"}},"description":"User image upload payload","example":{"content":"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","filename":"image_name.png"},"required":["content"]},"UserdataProcessResult":{"type":"object","properties":{"avatar_image":{"type":"string","description":"Error detail on avatar","example":"","maxLength":256},"biography":{"type":"string","description":"Error detail on biography","example":"","maxLength":256},"categories":{"type":"string","description":"Error detail on categories","example":"","maxLength":256},"cover_photo":{"type":"string","description":"Error detail on cover photo","example":"","maxLength":256},"detail":{"type":"string","description":"The detail of why result is success/fail, depend on response_code","example":"All userdata is processed","maxLength":256},"facebook_link":{"type":"string","description":"Error detail on facebook_link","example":"","maxLength":256},"location":{"type":"string","description":"Error detail on location","example":"","maxLength":256},"native_currency":{"type":"string","description":"Error detail on native_currency","example":"","maxLength":256},"primary_language":{"type":"string","description":"Error detail on primary_language","example":"","maxLength":256},"realname":{"type":"string","description":"Error detail on realname","example":"","maxLength":256},"response_code":{"type":"integer","description":"Result of the request is success or not","example":0,"format":"int64"},"twitter_link":{"type":"string","description":"Error detail on twitter_link","example":"","maxLength":256}},"example":{"avatar_image":"","biography":"","categories":"","cover_photo":"","detail":"All userdata is processed","facebook_link":"","location":"","native_currency":"","primary_language":"","realname":"","response_code":0,"twitter_link":""},"required":["response_code","detail"]},"VerifiedTicket":{"type":"object","properties":{"is_reconstruction_required":{"type":"boolean","example":false},"is_verified":{"type":"boolean","example":true},"message":{"type":"string","example":"Ex qui."},"missing_keys":{"type":"array","items":{"type":"string","example":"Est vero qui itaque facilis ut et."},"example":["Sed reprehenderit molestias odio sit facere repellat.","Sint qui iure ipsa.","Deserunt omnis nesciunt et eos dolores.","Iste natus enim iste."]},"reconstructed_file_hash":{"type":"string","example":"Q29uc2VxdXVudHVyIHNhZXBlIHF1aS4=","format":"binary"},"ticket_type":{"type":"string","example":"Est amet natus quo consequuntur id."},"tx_id":{"type":"string","example":"Et rerum accusamus facere repudiandae eaque."}},"example":{"is_reconstruction_required":true,"is_verified":true,"message":"Et nihil voluptatum assumenda dolorum qui.","missing_keys":["Dolore dolor.","Eligendi corporis repellat.","A ullam qui nihil molestias asperiores.","Quos quibusdam."],"reconstructed_file_hash":"U2VkIHF1b2QgYXV0ZW0gcmVwZWxsZW5kdXMgZnVnaWF0IGJlYXRhZSBvZmZpY2lhLg==","ticket_type":"Quod beatae.","tx_id":"Saepe aut qui quisquam cum quasi."}}},"securitySchemes":{"api_key_header_Authorization":{"type":"apiKey","description":"Nft Owner's passphrase to authenticate","name":"Authorization","in":"header"}}},"tags":[{"name":"cascade","description":"OpenAPI Cascade service"},{"name":"collection","description":"OpenAPI Collection service"},{"name":"HealthCheckChallenge","description":"HealthCheck Challenge service for to return health check related data"},{"name":"nft","description":"Pastel NFT"},{"name":"Score","description":"Score service for return score related to challenges"},{"name":"metrics","description":"Metrics service for fetching data over a specified time range"},{"name":"sense","description":"OpenAPI Sense service"},{"name":"StorageChallenge","description":"Storage Challenge service for to return storage-challenge related data"},{"name":"userdatas","description":"Pastel Process User Specified Data"}]} \ No newline at end of file diff --git a/walletnode/api/gen/http/openapi3.yaml b/walletnode/api/gen/http/openapi3.yaml index f4cefe160..be4d2b89c 100644 --- a/walletnode/api/gen/http/openapi3.yaml +++ b/walletnode/api/gen/http/openapi3.yaml @@ -50,14 +50,6 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 example: - details: fields: @@ -75,6 +67,14 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 "404": description: 'NotFound: Not Found response.' content: @@ -328,6 +328,39 @@ paths: timestamp: Aut repellendus dolorem cumque perspiciatis. sender_id: Sint commodi. sender_signature: Aut accusamus vitae. + - challenge: + block: 386439617 + merkelroot: Dolorum quaerat. + timestamp: Et nesciunt. + challenge_id: Consequatur repudiandae ut natus odit. + challenger_evaluation: + block: 1648580362 + is_verified: true + merkelroot: Similique odit. + timestamp: Modi est velit minus qui occaecati veritatis. + challenger_id: Ut rem. + message_type: Assumenda saepe laboriosam unde ab in. + observer_evaluation: + block: 2134312480 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: true + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Eius excepturi et sed. + timestamp: Tenetur voluptatem nemo eum aliquid. + observers: + - Aut voluptatem dolor. + - Possimus dolorem ut veritatis vitae eum magni. + - Mollitia fugiat. + recipient_id: Debitis exercitationem. + response: + block: 1559432072 + merkelroot: Rerum aliquam. + timestamp: Aut repellendus dolorem cumque perspiciatis. + sender_id: Sint commodi. + sender_signature: Aut accusamus vitae. example: - challenge: block: 386439617 @@ -501,13 +534,13 @@ paths: $ref: '#/components/schemas/HcSummaryStatsResult' example: hc_summary_stats: - no_of_invalid_evaluation_observed_by_observers: 17085067897739032 - no_of_invalid_signatures_observed_by_observers: 1070531802164886396 - no_of_slow_responses_observed_by_observers: 2452954398688763778 - total_challenges_evaluated_by_challenger: 1497037936453433297 - total_challenges_issued: 5146044089880070113 - total_challenges_processed_by_recipient: 5356106859537814149 - total_challenges_verified: 5844922895958038468 + no_of_invalid_evaluation_observed_by_observers: 5298572403287664370 + no_of_invalid_signatures_observed_by_observers: 3383689589076681506 + no_of_slow_responses_observed_by_observers: 827764771293379553 + total_challenges_evaluated_by_challenger: 8246003579136272374 + total_challenges_issued: 8051655920216908082 + total_challenges_processed_by_recipient: 5129431480100159883 + total_challenges_verified: 6477018306295341268 "400": description: 'BadRequest: Bad Request response.' content: @@ -575,129 +608,138 @@ paths: schema: $ref: '#/components/schemas/NftDetail' example: - alt_rare_on_internet_dict_json_b64: Voluptatem sit. + alt_rare_on_internet_dict_json_b64: Animi enim aliquid quis ab quisquam corporis. copies: 1 creator_name: Leonardo da Vinci creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS creator_website_url: https://www.leonardodavinci.net description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. drawing_nsfw_score: 1 - earliest_date_of_results: Rerum ea expedita voluptas et molestias animi. + earliest_date_of_results: Dignissimos expedita aliquid provident. green_address: false hentai_nsfw_score: 1 is_likely_dupe: false is_rare_on_internet: false keywords: Renaissance, sfumato, portrait - min_num_exact_matches_on_page: 2602995302 + min_num_exact_matches_on_page: 2606069223 neutral_nsfw_score: 1 nsfw_score: 1 porn_nsfw_score: 1 preview_thumbnail: - - 82 + - 68 - 101 - - 112 + - 115 - 101 - - 108 - - 108 - - 97 + - 114 + - 117 + - 110 - 116 - 32 - - 102 - - 117 - - 103 + - 109 + - 111 + - 108 + - 101 + - 115 + - 116 + - 105 - 97 - - 32 - 101 - - 120 - 32 - - 100 - - 111 - - 108 - - 111 + - 104 + - 97 - 114 - - 105 - - 98 - 117 - - 115 + - 109 - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 101 + - 110 + - 97 + - 109 + - 32 + - 105 + - 112 + - 115 + - 117 - 109 + - 32 + - 97 + - 116 - 113 - 117 - 101 - 32 - - 110 + - 116 - 101 - - 99 + - 110 - 101 - - 115 - - 115 - - 105 - - 116 - - 97 - 116 - - 105 - - 98 - 117 - - 115 - - 32 - - 110 - - 111 - - 110 + - 114 - 46 - rare_on_internet_graph_json_b64: Sequi laboriosam sequi vel qui nostrum. - rare_on_internet_summary_table_json_b64: Sint dolorum cumque illum consectetur unde aut. + rare_on_internet_graph_json_b64: Occaecati magnam vel sunt consequatur error. + rare_on_internet_summary_table_json_b64: Sit quia quidem voluptas. rareness_score: 1 - royalty: 0.5854540372699677 + royalty: 0.37466959397701977 series_name: Famous artist sexy_nsfw_score: 1 storage_fee: 100 thumbnail_1: - - 79 - - 99 - - 99 + - 81 + - 117 + - 111 + - 115 + - 32 + - 109 - 97 - - 101 - - 99 + - 103 + - 110 - 97 - - 116 + - 109 + - 32 + - 112 + - 97 + - 114 - 105 + - 97 + - 116 + - 117 + - 114 - 32 - 97 - 117 - 116 - - 46 - thumbnail_2: - - 65 + - 32 + - 102 + - 97 + - 99 + - 105 + - 108 + - 105 + - 115 + - 32 + - 97 - 108 - 105 - 113 - 117 - 105 - 100 + - 46 + thumbnail_2: + - 83 + - 101 + - 100 - 32 - - 110 - - 111 - - 98 + - 114 + - 101 + - 112 + - 117 + - 100 - 105 - - 115 - - 32 - - 99 - - 111 + - 97 - 110 - - 115 - - 101 - - 99 - - 116 + - 100 + - 97 - 101 - - 116 - - 117 - - 114 - 32 - 118 - 111 @@ -706,24 +748,34 @@ paths: - 112 - 116 - 97 - - 116 - - 101 - - 109 + - 115 - 32 - - 101 + - 100 - 111 - - 115 + - 108 + - 111 + - 114 - 32 - - 105 - - 115 + - 97 + - 117 - 116 + - 32 + - 118 - 101 + - 108 + - 105 + - 116 - 32 - - 113 + - 118 + - 111 + - 108 - 117 + - 112 + - 116 - 97 - - 115 - - 105 + - 116 + - 101 + - 109 - 46 title: Mona Lisa txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 @@ -802,6 +854,14 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 example: - details: fields: @@ -880,7 +940,7 @@ paths: schema: $ref: '#/components/schemas/FileDownloadResult' example: - file_id: Quidem voluptas neque occaecati magnam. + file_id: At assumenda illum a dolorem. "401": description: 'UnAuthorized: Unauthorized response.' content: @@ -942,7 +1002,7 @@ paths: schema: $ref: '#/components/schemas/DDFPResultFile' example: - file: Aut repellendus adipisci pariatur accusamus commodi voluptatibus. + file: Eum itaque totam dicta. "401": description: 'UnAuthorized: Unauthorized response.' content: @@ -1005,105 +1065,173 @@ paths: $ref: '#/components/schemas/DDServiceOutputFileResult' example: alternative_nsfw_scores: - drawings: 0.053542916 - hentai: 0.17044726 - neutral: 0.01989352 - porn: 0.7542108 - sexy: 0.24790263 - candidate_image_thumbnail_webp_as_base64_string: Itaque illo. - child_probability: 0.20116164 - collection_name_string: Possimus accusamus a qui maiores et aut. - cp_probability: 0.90626305 - creator_name: Voluptatem tempora adipisci modi. - creator_website: Et qui autem et. - creator_written_statement: Ab et. - does_not_impact_the_following_collection_strings: Ipsum nisi officia sit eligendi soluta dolorem. - dupe_detection_system_version: Sit occaecati rerum ab et. - file_type: Amet ut explicabo modi aut accusantium non. - group_rareness_score: 0.63844717 - hash_of_candidate_image_file: Ipsam labore minima aut harum. - image_file_path: Qui deserunt debitis repellat veniam pariatur. + drawings: 0.10935703 + hentai: 0.09246627 + neutral: 0.6267282 + porn: 0.44808388 + sexy: 0.10161177 + candidate_image_thumbnail_webp_as_base64_string: Laboriosam expedita dolor quisquam nulla et accusantium. + child_probability: 0.28098175 + collection_name_string: Adipisci modi suscipit et qui autem et. + cp_probability: 0.15282713 + creator_name: Ipsa sint. + creator_website: Qui voluptate excepturi. + creator_written_statement: Blanditiis amet ut. + does_not_impact_the_following_collection_strings: Suscipit voluptas quod placeat ut atque. + dupe_detection_system_version: Nulla dolorem sint qui itaque illo dignissimos. + file_type: Vel quisquam ratione vel repudiandae. + group_rareness_score: 0.42818454 + hash_of_candidate_image_file: Veniam pariatur magni voluptatem. + image_file_path: Distinctio ipsum eum accusantium ut rerum. image_fingerprint_of_candidate_image_file: - - 0.48178958212538464 - - 0.8931785495175332 - - 0.8825172062566221 + - 0.35358476465369687 + - 0.560102656036787 + - 0.09707347225012299 + - 0.30333032692990525 internet_rareness: - alternative_rare_on_internet_dict_as_json_compressed_b64: Magnam pariatur aut facilis. - earliest_available_date_of_internet_results: Sed repudiandae voluptas dolor aut velit voluptatem. - min_number_of_exact_matches_in_page: 1704813535 - rare_on_internet_graph_json_compressed_b64: Aliquid provident eveniet. - rare_on_internet_summary_table_as_json_compressed_b64: Quisquam corporis qui nobis dignissimos. + alternative_rare_on_internet_dict_as_json_compressed_b64: Nihil consequuntur sed et. + earliest_available_date_of_internet_results: Rerum expedita minus. + min_number_of_exact_matches_in_page: 2451569794 + rare_on_internet_graph_json_compressed_b64: Deserunt doloremque in. + rare_on_internet_summary_table_as_json_compressed_b64: Eum reiciendis eum et placeat. is_likely_dupe: false - is_pastel_openapi_request: true + is_pastel_openapi_request: false is_rare_on_internet: false - max_permitted_open_nsfw_score: 0.5505988774455792 - nft_creation_video_youtube_url: Suscipit voluptas quod placeat ut atque. - nft_keyword_set: Adipisci et ut distinctio ipsum. - nft_series_name: Quisquam nulla et accusantium. - nft_title: In laboriosam expedita. - open_api_group_id_string: Necessitatibus nulla dolorem. - open_nsfw_score: 0.21658306 - original_file_size_in_bytes: 1512147843409722071 - overall_rareness_score: 0.5565024 - pastel_block_hash_when_request_submitted: Eaque quis quo dolores at assumenda. - pastel_block_height_when_request_submitted: A dolorem reiciendis atque. - pastel_id_of_registering_supernode_1: Distinctio nihil consequuntur sed et. - pastel_id_of_registering_supernode_2: Laudantium rerum expedita minus voluptatem aspernatur et. - pastel_id_of_registering_supernode_3: Eligendi omnis excepturi adipisci. - pastel_id_of_submitter: Reiciendis eum et placeat et deserunt doloremque. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.4710798 - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.91616607 - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.63995916 + max_permitted_open_nsfw_score: 0.7647798836316313 + nft_creation_video_youtube_url: Necessitatibus impedit aut repellendus adipisci pariatur accusamus. + nft_keyword_set: Voluptatibus et. + nft_series_name: Consequatur enim excepturi eum. + nft_title: Modi aut accusantium non facere reiciendis velit. + open_api_group_id_string: Ab et. + open_nsfw_score: 0.90626305 + original_file_size_in_bytes: 8267879701506341356 + overall_rareness_score: 0.34288576 + pastel_block_hash_when_request_submitted: Excepturi adipisci. + pastel_block_height_when_request_submitted: Est sit occaecati rerum ab. + pastel_id_of_registering_supernode_1: Pariatur facilis. + pastel_id_of_registering_supernode_2: Sint autem ipsam labore minima aut harum. + pastel_id_of_registering_supernode_3: Possimus accusamus a qui maiores et aut. + pastel_id_of_submitter: Quos quis repellat provident architecto voluptatem sed. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.5577595 + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.6363819 + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.3000636 preview_hash: - - 85 + - 69 + - 120 + - 112 + - 101 + - 100 + - 105 - 116 + - 97 - 32 - - 114 - 101 - - 114 + - 97 + - 113 - 117 + - 101 + - 32 + - 97 + - 117 + - 116 + - 32 + - 116 + - 101 - 109 + - 112 + - 111 + - 114 + - 101 - 46 - rareness_scores_table_json_compressed_b64: Quos quis repellat provident architecto voluptatem sed. - similarity_score_to_first_entry_in_collection: 0.15764219 + rareness_scores_table_json_compressed_b64: Soluta dolorem voluptatem. + similarity_score_to_first_entry_in_collection: 0.8905235 thumbnail1_hash: - 73 - - 112 - - 115 + - 116 - 97 + - 113 + - 117 + - 101 + - 32 + - 114 + - 101 + - 109 - 32 - 115 - - 105 - - 110 - - 116 - - 46 - thumbnail2_hash: - - 81 - 117 + - 115 + - 99 - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - 112 + - 105 - 116 + - 32 + - 97 + - 32 + - 108 - 97 + - 117 + - 100 + - 97 + - 110 - 116 + - 105 + - 117 + - 109 + - 32 + - 99 + - 111 + - 110 + - 115 - 101 + - 113 + - 117 + - 97 + - 116 + - 117 + - 114 - 32 + - 110 - 101 - - 120 - 99 - 101 - - 112 + - 115 + - 115 + - 105 - 116 + - 97 + - 116 + - 105 + - 98 - 117 + - 115 + - 46 + thumbnail2_hash: + - 79 + - 102 + - 102 + - 105 + - 99 + - 105 + - 105 + - 115 + - 32 - 114 + - 97 + - 116 + - 105 + - 111 + - 110 + - 101 + - 32 + - 118 + - 101 + - 108 - 105 + - 116 - 46 - total_copies: 3163669590710846450 - utc_timestamp_when_request_submitted: Accusantium optio beatae molestiae est voluptatem est. + total_copies: 7616812477290052815 + utc_timestamp_when_request_submitted: Nihil et aspernatur perspiciatis. "401": description: 'UnAuthorized: Unauthorized response.' content: @@ -1155,7 +1283,7 @@ paths: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -1182,7 +1310,7 @@ paths: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -1209,7 +1337,7 @@ paths: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -1236,7 +1364,7 @@ paths: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -1279,7 +1407,7 @@ paths: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Illum inventore in minus. + open_api_group_id: Distinctio eos et excepturi temporibus. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -1353,8 +1481,6 @@ paths: status: Task Started - date: 2006-01-02T15:04:05Z07:00 status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started status: Task Started ticket: burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 @@ -1370,7 +1496,7 @@ paths: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Ut eos et quos autem. + open_api_group_id: Cupiditate nobis nesciunt. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -1449,18 +1575,55 @@ paths: $ref: '#/components/schemas/UploadImageRequestBody' example: file: - - 69 - - 118 + - 81 + - 117 + - 97 - 101 - - 110 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 - 105 + - 116 + - 97 + - 32 + - 99 + - 111 + - 110 + - 115 + - 101 + - 113 + - 117 + - 97 + - 116 + - 117 + - 114 + - 32 + - 116 + - 101 + - 110 - 101 - 116 + - 117 + - 114 + - 32 + - 101 + - 97 + - 113 + - 117 + - 101 - 32 - 113 - 117 - 105 + - 32 + - 105 + - 112 + - 115 - 97 + - 109 - 46 responses: "201": @@ -1500,9 +1663,9 @@ paths: schema: type: string description: Artist PastelID or special value; mine - example: 1m0 + example: zkt maxLength: 256 - example: vy1 + example: 6b1 - name: limit in: query description: Number of results to be return @@ -1524,8 +1687,8 @@ paths: schema: type: string description: Query is search query entered by user - example: Debitis optio dolores sint quam dolor. - example: Error magni voluptatem quia qui enim facere. + example: Ut ipsa quos doloremque numquam labore. + example: Accusamus suscipit qui natus quia. - name: creator_name in: query description: Name of the nft creator @@ -1534,7 +1697,7 @@ paths: type: boolean description: Name of the nft creator default: true - example: true + example: false example: true - name: art_title in: query @@ -1544,8 +1707,8 @@ paths: type: boolean description: Title of NFT default: true - example: false - example: false + example: true + example: true - name: series in: query description: NFT series name @@ -1564,8 +1727,8 @@ paths: type: boolean description: Artist written statement default: true - example: false - example: false + example: true + example: true - name: keyword in: query description: Keyword that Artist assigns to NFT @@ -1608,10 +1771,10 @@ paths: type: integer description: Minimum blocknum default: 1 - example: 3540439880188411664 + example: 819158788871735519 format: int64 minimum: 1 - example: 758130406742501945 + example: 3451739609851933793 - name: max_block in: query description: Maximum blocknum @@ -1619,10 +1782,10 @@ paths: schema: type: integer description: Maximum blocknum - example: 3446396552371564919 + example: 4311331108156701436 format: int64 minimum: 1 - example: 7544698525104512975 + example: 6797847945989994641 - name: is_likely_dupe in: query description: Is this image likely a duplicate of another known image @@ -1709,36 +1872,40 @@ paths: schema: $ref: '#/components/schemas/NftSearchResult' example: - match_index: 1040234626420727314 + match_index: 2895109895671128574 matches: - - field_type: art_title + - field_type: keyword matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. nft: copies: 1 creator_name: Leonardo da Vinci @@ -1751,45 +1918,27 @@ paths: rareness_score: 1 series_name: Famous artist thumbnail_1: - - 82 - - 97 + - 65 + - 117 - 116 - - 105 - - 111 - - 110 - - 101 - 32 + - 97 + - 109 - 101 - - 115 - 116 - 32 - - 102 - - 97 - - 99 - - 105 - - 108 - - 105 - 115 + - 101 + - 113 + - 117 + - 105 - 46 thumbnail_2: - - 78 - - 117 - - 108 - - 108 - - 97 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 117 - - 109 - - 32 + - 83 + - 101 - 113 - 117 - - 111 - - 115 + - 105 - 32 - 118 - 101 @@ -1838,23 +1987,31 @@ paths: items: $ref: '#/components/schemas/ChallengesScores' example: - - health_check_challenge_score: 0.04110607293809476 - ip_address: Officiis ratione velit. - node_id: Suscipit a laudantium consequatur necessitatibus. - storage_challenge_score: 0.8964053134221979 - - health_check_challenge_score: 0.04110607293809476 - ip_address: Officiis ratione velit. - node_id: Suscipit a laudantium consequatur necessitatibus. - storage_challenge_score: 0.8964053134221979 + - health_check_challenge_score: 0.4163028130825925 + ip_address: In quaerat. + node_id: Illo delectus aut rerum placeat. + storage_challenge_score: 0.1218089363406377 + - health_check_challenge_score: 0.4163028130825925 + ip_address: In quaerat. + node_id: Illo delectus aut rerum placeat. + storage_challenge_score: 0.1218089363406377 + - health_check_challenge_score: 0.4163028130825925 + ip_address: In quaerat. + node_id: Illo delectus aut rerum placeat. + storage_challenge_score: 0.1218089363406377 + - health_check_challenge_score: 0.4163028130825925 + ip_address: In quaerat. + node_id: Illo delectus aut rerum placeat. + storage_challenge_score: 0.1218089363406377 example: - - health_check_challenge_score: 0.04110607293809476 - ip_address: Officiis ratione velit. - node_id: Suscipit a laudantium consequatur necessitatibus. - storage_challenge_score: 0.8964053134221979 - - health_check_challenge_score: 0.04110607293809476 - ip_address: Officiis ratione velit. - node_id: Suscipit a laudantium consequatur necessitatibus. - storage_challenge_score: 0.8964053134221979 + - health_check_challenge_score: 0.4163028130825925 + ip_address: In quaerat. + node_id: Illo delectus aut rerum placeat. + storage_challenge_score: 0.1218089363406377 + - health_check_challenge_score: 0.4163028130825925 + ip_address: In quaerat. + node_id: Illo delectus aut rerum placeat. + storage_challenge_score: 0.1218089363406377 "400": description: 'BadRequest: Bad Request response.' content: @@ -1959,6 +2116,22 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 "404": description: 'NotFound: Not Found response.' content: @@ -2049,8 +2222,8 @@ paths: type: string description: File ID returned by Download V2 API example: n6Qn6TFM - minLength: 8 - maxLength: 8 + minLength: 6 + maxLength: 6 example: n6Qn6TFM responses: "200": @@ -2058,59 +2231,21 @@ paths: content: application/json: schema: - type: array - items: - $ref: '#/components/schemas/TaskHistory' - example: - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 + $ref: '#/components/schemas/DownloadTaskStatus' example: - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 - - details: - fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. - message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 - - details: + data_downloaded_megabytes: 1 + details: fields: - Et consequatur.: Nisi molestias voluptatem odit. - Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + Quisquam non.: Voluptates qui aliquid sit atque inventore illo. message: Image has been downloaded... - message: Balance less than maximum fee provied in the request, could not gather enough confirmations... - status: Started, Image Probed, Downloaded... - timestamp: 2006-01-02T15:04:05Z07:00 + downloaded_volumes: 1 + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + size_of_the_file_megabytes: 1 + task_status: In Progress + total_volumes: 1 + volumes_download_failed: 1 + volumes_download_in_progress: 1 + volumes_pending_download: 1 "404": description: 'NotFound: Not Found response.' content: @@ -2151,137 +2286,167 @@ paths: example: files: - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. "400": description: 'BadRequest: Bad Request response.' content: @@ -2336,12 +2501,12 @@ paths: schema: $ref: '#/components/schemas/RestoreFile' example: - activated_volumes: 289633137219330910 - registered_volumes: 6759088182095679156 - total_volumes: 4401292699067561257 - volumes_activated_in_recovery_flow: 8981725034405051899 - volumes_registration_in_progress: 2570108940638669276 - volumes_with_pending_registration: 2278213866228243539 + activated_volumes: 9195318951333339066 + registered_volumes: 7356549181015977188 + total_volumes: 8298670012583158670 + volumes_activated_in_recovery_flow: 1009889794126534593 + volumes_registration_in_progress: 4104109627466131444 + volumes_with_pending_registration: 7072892730217358566 "400": description: 'BadRequest: Bad Request response.' content: @@ -2680,6 +2845,22 @@ paths: message: Balance less than maximum fee provied in the request, could not gather enough confirmations... status: Started, Image Probed, Downloaded... timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 + - details: + fields: + Et consequatur.: Nisi molestias voluptatem odit. + Sit distinctio laborum.: Nihil quis expedita similique itaque voluptatem. + message: Image has been downloaded... + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + status: Started, Image Probed, Downloaded... + timestamp: 2006-01-02T15:04:05Z07:00 example: - details: fields: @@ -2767,56 +2948,24 @@ paths: $ref: '#/components/schemas/DownloadResult' example: file: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 + - 81 + - 117 + - 111 + - 32 + - 118 - 101 + - 114 + - 111 - 32 - - 97 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 111 - - 102 - - 102 - - 105 - - 99 - - 105 + - 113 + - 117 + - 105 - 97 - 32 - - 100 - - 117 - - 99 - - 105 - - 109 + - 113 - 117 - - 115 - - 32 - - 118 - - 101 - - 114 - - 111 - - 32 - - 101 - - 120 - - 112 - - 108 - - 105 - - 99 - - 97 - - 98 - 111 + - 100 - 46 "401": description: 'UnAuthorized: Unauthorized response.' @@ -2867,7 +3016,7 @@ paths: app_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - open_api_group_id: Earum quam et. + open_api_group_id: Officiis quaerat sint aut. spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j responses: "201": @@ -2954,26 +3103,54 @@ paths: $ref: '#/components/schemas/UploadImageRequestBody' example: file: - - 78 + - 73 + - 110 + - 118 + - 101 + - 110 + - 116 + - 111 + - 114 + - 101 + - 32 + - 100 + - 101 + - 98 + - 105 + - 116 + - 105 + - 115 + - 32 - 97 - 109 + - 101 + - 116 - 32 - - 113 - - 117 - 111 + - 102 + - 102 + - 105 + - 99 + - 105 + - 105 + - 115 - 32 - - 110 - - 101 - 113 - 117 - - 101 + - 105 - 32 - - 99 + - 102 - 117 + - 103 + - 105 + - 97 + - 116 + - 32 + - 111 - 109 - - 113 - - 117 - - 101 + - 110 + - 105 + - 115 - 46 responses: "201": @@ -3045,169 +3222,152 @@ paths: $ref: '#/components/schemas/SelfHealingReports' example: reports: - - event_id: Eum itaque totam dicta. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -3217,241 +3377,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -3461,241 +3615,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -3705,241 +3855,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 - - 101 - - 32 - 112 + - 101 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - 97 - 109 - 32 - - 105 - - 112 - - 115 - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -3949,243 +4093,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -4195,241 +4333,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 + - 86 + - 101 + - 114 + - 111 + - 32 - 110 - - 97 - - 109 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 - 117 - - 109 + - 116 - 32 + - 101 + - 120 + - 112 + - 101 + - 100 - 105 - 116 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - - 114 - - 111 - - 118 - 105 - 100 - - 101 - - 110 - - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 - 32 - 105 - 112 - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - 97 + - 32 - 113 - 117 - - 101 + - 105 - 32 - - 112 - - 114 - - 111 + - 101 - 118 - - 105 - - 100 - 101 - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - 105 - - 116 - 101 - - 99 - 116 - - 111 - 32 - - 118 - - 101 - - 108 - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 + - 100 - 32 - 97 + - 99 + - 99 - 117 - - 116 - - 32 + - 115 - 97 - - 100 - - 105 - - 112 - - 105 + - 109 + - 117 - 115 - - 99 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 - - 32 - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 - - 97 - - 116 - - 105 + - 115 - 32 - 118 - 111 @@ -4439,241 +4571,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -4683,241 +4811,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -4927,490 +5049,478 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 + - 114 - 105 + - 111 + - 114 - 101 - - 110 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 - 32 + - 105 - 115 + - 116 - 101 - - 113 - - 117 - - 105 - 32 - - 117 + - 114 + - 101 + - 112 + - 101 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -5420,241 +5530,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -5664,241 +5770,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: + Ut culpa.: - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 111 + - 108 + - 108 - 105 - 116 + - 105 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -5908,243 +6008,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -6154,241 +6248,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -6398,241 +6486,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 104 - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -6642,241 +6726,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 + - 104 - 105 - - 100 - - 101 - - 110 - - 116 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -6886,246 +6964,240 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 + - 117 - 116 + - 32 - 101 - - 99 - - 116 - - 111 - - 32 - - 118 + - 120 + - 112 - 101 - - 108 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -7135,241 +7207,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -7379,485 +7445,475 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 + - 114 - 105 + - 111 + - 114 - 101 - - 110 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 - 32 + - 105 - 115 + - 116 - 101 - - 113 - - 117 - - 105 - 32 - - 117 + - 114 + - 101 + - 112 + - 101 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -7867,243 +7923,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8113,241 +8163,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8357,241 +8401,237 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8601,241 +8641,235 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 + - 112 - 101 - - 32 - - 112 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - 97 - 109 - 32 - - 105 - - 112 - - 115 - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -8845,9946 +8879,7981 @@ paths: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - "400": - description: 'BadRequest: Bad Request response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "401": - description: 'Unauthorized: Unauthorized response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "404": - description: 'NotFound: Not Found response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "500": - description: 'InternalServerError: Internal Server Error response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - security: - - api_key_header_Authorization: [] - /self_healing/summary_stats: - get: - tags: - - metrics - summary: Fetches metrics data - description: Fetches metrics data over a specified time range - operationId: metrics#getSummaryStats - parameters: - - name: from - in: query - description: Start time for the metrics data range - allowEmptyValue: true - schema: - type: string - description: Start time for the metrics data range - example: "2023-01-01T00:00:00Z" - format: date-time - example: "2023-01-01T00:00:00Z" - - name: to - in: query - description: End time for the metrics data range - allowEmptyValue: true - schema: - type: string - description: End time for the metrics data range - example: "2023-01-02T00:00:00Z" - format: date-time - example: "2023-01-02T00:00:00Z" - - name: pid - in: query - description: PastelID of the user to fetch metrics for - allowEmptyValue: true - required: true - schema: - type: string - description: PastelID of the user to fetch metrics for - example: jXYJud3rm... - example: jXYJud3rm... - responses: - "200": - description: OK response. - content: - application/json: - schema: - $ref: '#/components/schemas/MetricsResult' - example: - self_healing_execution_events_stats: - total_file_healing_failed: 5551622164662787660 - total_files_healed: 8671724886982383594 - total_reconstruction_not_required_evaluations_approved: 3509617877318915873 - total_reconstruction_required_evaluations_approved: 2598935111695686044 - total_reconstruction_required_evaluations_not_approved: 645871039112296182 - total_reconstruction_required_hash_mismatch: 6198218032159021896 - total_reconstructions_not_required_evaluations_not_approved: 6224481363842689139 - total_self_healing_events_accepted: 5676342644268881237 - total_self_healing_events_acknowledged: 305624170386109632 - total_self_healing_events_evaluations_unverified: 1687102203985295374 - total_self_healing_events_evaluations_verified: 7201039114224972892 - total_self_healing_events_issued: 7624509276581647432 - total_self_healing_events_rejected: 8106553798825109777 - self_healing_trigger_events_stats: - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - "400": - description: 'BadRequest: Bad Request response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "401": - description: 'Unauthorized: Unauthorized response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "404": - description: 'NotFound: Not Found response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "500": - description: 'InternalServerError: Internal Server Error response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - security: - - api_key_header_Authorization: [] - /storage_challenges/detailed_logs: - get: - tags: - - StorageChallenge - summary: Fetches storage-challenge reports - description: Fetches storage-challenge reports - operationId: StorageChallenge#getDetailedLogs - parameters: - - name: pid - in: query - description: PastelID of the user to fetch storage-challenge reports for - allowEmptyValue: true - required: true - schema: - type: string - description: PastelID of the user to fetch storage-challenge reports for - example: jXYJud3rm... - example: jXYJud3rm... - - name: challenge_id - in: query - description: ChallengeID of the storage challenge to fetch their logs - allowEmptyValue: true - schema: - type: string - description: ChallengeID of the storage challenge to fetch their logs - example: jXYJ - example: jXYJ - responses: - "200": - description: OK response. - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/StorageMessage' - example: - - challenge: - block: 133233139 - end_index: 3896885101814506590 - file_hash: Asperiores quidem. - merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. - start_index: 1614189715015821619 - timestamp: Molestias neque sed quos voluptate. - challenge_id: Dolorum ex. - challenger_evaluation: - block: 1965065906 - hash: Ratione laborum est omnis sit. - is_verified: false - merkelroot: Alias itaque eveniet cum. - timestamp: Autem libero deserunt aspernatur. - challenger_id: Rerum natus ut beatae sed maiores corporis. - message_type: Necessitatibus sunt. - observer_evaluation: - block: 1126733571 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Placeat mollitia. - reason: Aut dignissimos autem ut velit provident. - timestamp: Repellendus aut. - true_hash: Voluptas asperiores. - observers: - - Qui aperiam id sunt consequatur voluptas voluptatem. - - Voluptatem optio enim iure pariatur quia minus. - - Dicta et natus amet. - - Asperiores et ea. - recipient_id: Qui corrupti neque quod omnis. - response: - block: 1915105945 - hash: Ut quam beatae libero rerum. - merkelroot: Aperiam quo reiciendis corrupti reiciendis. - timestamp: Veritatis accusantium corporis. - sender_id: Laudantium neque ratione sint eum sed ullam. - sender_signature: Autem quia neque adipisci. - - challenge: - block: 133233139 - end_index: 3896885101814506590 - file_hash: Asperiores quidem. - merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. - start_index: 1614189715015821619 - timestamp: Molestias neque sed quos voluptate. - challenge_id: Dolorum ex. - challenger_evaluation: - block: 1965065906 - hash: Ratione laborum est omnis sit. - is_verified: false - merkelroot: Alias itaque eveniet cum. - timestamp: Autem libero deserunt aspernatur. - challenger_id: Rerum natus ut beatae sed maiores corporis. - message_type: Necessitatibus sunt. - observer_evaluation: - block: 1126733571 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Placeat mollitia. - reason: Aut dignissimos autem ut velit provident. - timestamp: Repellendus aut. - true_hash: Voluptas asperiores. - observers: - - Qui aperiam id sunt consequatur voluptas voluptatem. - - Voluptatem optio enim iure pariatur quia minus. - - Dicta et natus amet. - - Asperiores et ea. - recipient_id: Qui corrupti neque quod omnis. - response: - block: 1915105945 - hash: Ut quam beatae libero rerum. - merkelroot: Aperiam quo reiciendis corrupti reiciendis. - timestamp: Veritatis accusantium corporis. - sender_id: Laudantium neque ratione sint eum sed ullam. - sender_signature: Autem quia neque adipisci. - example: - - challenge: - block: 133233139 - end_index: 3896885101814506590 - file_hash: Asperiores quidem. - merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. - start_index: 1614189715015821619 - timestamp: Molestias neque sed quos voluptate. - challenge_id: Dolorum ex. - challenger_evaluation: - block: 1965065906 - hash: Ratione laborum est omnis sit. - is_verified: false - merkelroot: Alias itaque eveniet cum. - timestamp: Autem libero deserunt aspernatur. - challenger_id: Rerum natus ut beatae sed maiores corporis. - message_type: Necessitatibus sunt. - observer_evaluation: - block: 1126733571 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Placeat mollitia. - reason: Aut dignissimos autem ut velit provident. - timestamp: Repellendus aut. - true_hash: Voluptas asperiores. - observers: - - Qui aperiam id sunt consequatur voluptas voluptatem. - - Voluptatem optio enim iure pariatur quia minus. - - Dicta et natus amet. - - Asperiores et ea. - recipient_id: Qui corrupti neque quod omnis. - response: - block: 1915105945 - hash: Ut quam beatae libero rerum. - merkelroot: Aperiam quo reiciendis corrupti reiciendis. - timestamp: Veritatis accusantium corporis. - sender_id: Laudantium neque ratione sint eum sed ullam. - sender_signature: Autem quia neque adipisci. - - challenge: - block: 133233139 - end_index: 3896885101814506590 - file_hash: Asperiores quidem. - merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. - start_index: 1614189715015821619 - timestamp: Molestias neque sed quos voluptate. - challenge_id: Dolorum ex. - challenger_evaluation: - block: 1965065906 - hash: Ratione laborum est omnis sit. - is_verified: false - merkelroot: Alias itaque eveniet cum. - timestamp: Autem libero deserunt aspernatur. - challenger_id: Rerum natus ut beatae sed maiores corporis. - message_type: Necessitatibus sunt. - observer_evaluation: - block: 1126733571 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Placeat mollitia. - reason: Aut dignissimos autem ut velit provident. - timestamp: Repellendus aut. - true_hash: Voluptas asperiores. - observers: - - Qui aperiam id sunt consequatur voluptas voluptatem. - - Voluptatem optio enim iure pariatur quia minus. - - Dicta et natus amet. - - Asperiores et ea. - recipient_id: Qui corrupti neque quod omnis. - response: - block: 1915105945 - hash: Ut quam beatae libero rerum. - merkelroot: Aperiam quo reiciendis corrupti reiciendis. - timestamp: Veritatis accusantium corporis. - sender_id: Laudantium neque ratione sint eum sed ullam. - sender_signature: Autem quia neque adipisci. - - challenge: - block: 133233139 - end_index: 3896885101814506590 - file_hash: Asperiores quidem. - merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. - start_index: 1614189715015821619 - timestamp: Molestias neque sed quos voluptate. - challenge_id: Dolorum ex. - challenger_evaluation: - block: 1965065906 - hash: Ratione laborum est omnis sit. - is_verified: false - merkelroot: Alias itaque eveniet cum. - timestamp: Autem libero deserunt aspernatur. - challenger_id: Rerum natus ut beatae sed maiores corporis. - message_type: Necessitatibus sunt. - observer_evaluation: - block: 1126733571 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Placeat mollitia. - reason: Aut dignissimos autem ut velit provident. - timestamp: Repellendus aut. - true_hash: Voluptas asperiores. - observers: - - Qui aperiam id sunt consequatur voluptas voluptatem. - - Voluptatem optio enim iure pariatur quia minus. - - Dicta et natus amet. - - Asperiores et ea. - recipient_id: Qui corrupti neque quod omnis. - response: - block: 1915105945 - hash: Ut quam beatae libero rerum. - merkelroot: Aperiam quo reiciendis corrupti reiciendis. - timestamp: Veritatis accusantium corporis. - sender_id: Laudantium neque ratione sint eum sed ullam. - sender_signature: Autem quia neque adipisci. - - challenge: - block: 133233139 - end_index: 3896885101814506590 - file_hash: Asperiores quidem. - merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. - start_index: 1614189715015821619 - timestamp: Molestias neque sed quos voluptate. - challenge_id: Dolorum ex. - challenger_evaluation: - block: 1965065906 - hash: Ratione laborum est omnis sit. - is_verified: false - merkelroot: Alias itaque eveniet cum. - timestamp: Autem libero deserunt aspernatur. - challenger_id: Rerum natus ut beatae sed maiores corporis. - message_type: Necessitatibus sunt. - observer_evaluation: - block: 1126733571 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: true - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Placeat mollitia. - reason: Aut dignissimos autem ut velit provident. - timestamp: Repellendus aut. - true_hash: Voluptas asperiores. - observers: - - Qui aperiam id sunt consequatur voluptas voluptatem. - - Voluptatem optio enim iure pariatur quia minus. - - Dicta et natus amet. - - Asperiores et ea. - recipient_id: Qui corrupti neque quod omnis. - response: - block: 1915105945 - hash: Ut quam beatae libero rerum. - merkelroot: Aperiam quo reiciendis corrupti reiciendis. - timestamp: Veritatis accusantium corporis. - sender_id: Laudantium neque ratione sint eum sed ullam. - sender_signature: Autem quia neque adipisci. - "400": - description: 'BadRequest: Bad Request response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "401": - description: 'Unauthorized: Unauthorized response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "404": - description: 'NotFound: Not Found response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "500": - description: 'InternalServerError: Internal Server Error response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - security: - - api_key_header_Authorization: [] - /storage_challenges/summary_stats: - get: - tags: - - StorageChallenge - summary: Fetches summary stats - description: Fetches summary stats data over a specified time range - operationId: StorageChallenge#getSummaryStats - parameters: - - name: from - in: query - description: Start time for the metrics data range - allowEmptyValue: true - schema: - type: string - description: Start time for the metrics data range - example: "2023-01-01T00:00:00Z" - format: date-time - example: "2023-01-01T00:00:00Z" - - name: to - in: query - description: End time for the metrics data range - allowEmptyValue: true - schema: - type: string - description: End time for the metrics data range - example: "2023-01-02T00:00:00Z" - format: date-time - example: "2023-01-02T00:00:00Z" - - name: pid - in: query - description: PastelID of the user to fetch metrics for - allowEmptyValue: true - required: true - schema: - type: string - description: PastelID of the user to fetch metrics for - example: jXYJud3rm... - example: jXYJud3rm... - responses: - "200": - description: OK response. - content: - application/json: - schema: - $ref: '#/components/schemas/SummaryStatsResult' - example: - sc_summary_stats: - no_of_invalid_evaluation_observed_by_observers: 2982554539974798863 - no_of_invalid_signatures_observed_by_observers: 804645458629257575 - no_of_slow_responses_observed_by_observers: 6016941875889227877 - total_challenges_evaluated_by_challenger: 9084935928395605172 - total_challenges_issued: 554226313255902356 - total_challenges_processed_by_recipient: 9153767776266110855 - total_challenges_verified: 6924812056467069635 - "400": - description: 'BadRequest: Bad Request response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "401": - description: 'Unauthorized: Unauthorized response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "404": - description: 'NotFound: Not Found response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "500": - description: 'InternalServerError: Internal Server Error response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - security: - - api_key_header_Authorization: [] - /userdatas/{pastelid}: - get: - tags: - - userdatas - summary: Returns the detail of Userdata - description: Gets the Userdata detail - operationId: userdatas#getUserdata - parameters: - - name: pastelid - in: path - description: Artist's PastelID - required: true - schema: - type: string - description: Artist's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - responses: - "200": - description: OK response. - content: - application/json: - schema: - $ref: '#/components/schemas/CreateUserdataRequestBody' - example: - avatar_image: - content: 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 - filename: image_name.png - biography: I'm a digital artist based in Paris, France. ... - categories: Manga&Anime,3D,Comics - cover_photo: - content: iVBORw0KGgoAAAANSUhEUgAAASoAAACpCAMAAACrt4DfAAABUFBMVEVPk//////m5ubl5eUkJUYwbP/k5OT60J360J7y8vLt7e34+Pj19fXw8PD5+fnr6+v61an60qMgFi9IkP9Qlf88i/9RmP9Djv//0pkuaf82iP/w7OQACj//1aH/1JUhZf83dP91pfoAADwQGEKgu/MbHkPhxLALXv/z7uOOtPyCq/jw9P4hHz3gwJ04eP8aYv/F0e2VtfX//PSvyf+/0/xEetVKiOwkGC3W3Ore6P0rQ3xpnvsGEkAuLEjgupALFUG3yfAAACe+t8qnr9nHvMZBPFFeU1x7oO/RvbqYquHbx71kjP0+gP/74sSKpv6StPbX5P+zxvBgjeJAXJo/RWlBW5VBYKY1RHNAcMQsJDgdFDNDV4opMFdRdLvZ3egnNWM1LDyGens7asO8oIjBqpZWTVo6OVRnYm54Z2eehnanjnvJqYqdgWiykW7sz62jrtzuoXzIAAAXaElEQVR4nOVd+18TSbbPg9CdEEK3nRdpQkSCBKIGAioIIqujzojy0Luu7syyO1dxVr139v//7dapU/1Kujt9qjshfu4ZHQ8JkJNvzvn2t05VV6XSYLMZZj7eAjilbCaTLYA35/XmwSuClwcvD17R682DNwdeAbwSeAvsF886Hn8xs9PJbJ3vtM+2Dw5SYNWDlY2z7Yutc/g1mesJKmN7WXBT1w0VvNj5zka10ajVaoZhpGxjXxi1WqNxsNHeynbM/+dQmZ3Zi41Uo1JzITRsDLFGamO3K2KeZqhmk4pKxGJ7x9upRjhKLrwYXNtbpjn2oEZDlc34eANRueKbHRXVrB3VrE9UmX56dzMyTA5clc1j0xxXUC4PobK9LIScmgVDbJhlfDyBFzMRkOUVwct7vTx4GBB4GBB4GIbl7W82KkScHLS2zMxYgkIPUfKggl4KUitrpZFf7flyw8Bn5/cpDjCC4/VLO9WGFE4CrUp5Z9ZMOKjA2nO8iUNlzm5UavI4WWiddacGKhdN+dEoOSqR9ebeSpyEcoHV2NxPKig/mgqCCgHK2l7GziXwCl5vDjyMCry818uDh1HZXgE8HtXegRxDBYFlJhEU9xyd51F8iAWmkrgCMsvanh+j+9EohuZDno5XcNGoebmZTEY5YG104wYVxugD3D4xCTqfaSeXUQ5YbV4NUyNBE4FqKxWbzP2sYjDpcG1QJSNBsx61112pjAMosMbKrCkX1EgJ6geVzeMkRh+g0XwQjc6ld6m6nGJG7diUCSpN4/bJqPXxpRRaZWXeHJdaz05SrZ8bY0wpNAMY68dX6+0xpxRapd3JTBQqX0YfVOsOec6Oiorl9biLz7Laihk1qAFG91XrPl5qASxdYmZ5ae4VvN4cePPgFb1eHry81ytaXqFbHnvxWWaUL6MFhd48eHPgFbxeCTyOBYCSdvAZr1o/H4uWCrLalvnDqvXdCRWfZZUL8wdV6zuNySLFyX0CUEk3jGfdUc06UfUnc+kbwGqjHxbUiIZx2usNNoxLNqPbXgGcOa83D17R6+W9Xt7jdbavASnGV2f9kKAWiuDNe7058Aper+T1OD6pbDZrcRfzMj6eSC3miYSyvCJ4ea+XBw8+u+vIKbDKhjkbGBRT68wTjM48wegeDxPK9rK2Ny4Jel1Isbxqd34otT55Rnes0jYDuT0WVNmslWAs07J22SGjOx4UYNYuQIvRmTeY6/Dr+rvXiBTD6rjvE5SAyi7ArFV2jrdgY5Hx8VIFMM7eQR7yuNfLe728x5s/v1akGFZb/aGgCkWvNx/kIbd7vZJLrTPksrbnx+h+3G6n1gB5dmNo9DK32FhdZoYY3fEKQdyOaeTjQflkxyFBJd9puVytlt/ev3//rVEFc0HG3Crtd5k/hFpfkRkhl6vl++8ePbxh2X+9++uH+29TVbQH99//7cZfCR+BsWKOCypIMNsb4HaH0YO43ZPrO3SZwNLpw6MbN+7cmXHszp07HLOHH/k/7LnfKNlaa5uBBejH7Q6j+3E7FuAcGLKY5c2DUwzy8l4v7/WK+2RKL1cfvPu7ByZ/e/iAglVlr+gXXpA3H+Q5+ASJhRFqfSChXKklAdSjh6NxYnaDBFUqlZBad8RCwhKUSlTl1K/RgKJmFaOrzlSrdWKHqlz98DEiUDM0rkqBEh2+DF6nWvcWYImIVOrXG1GBYlDR9AKjdvYmgwswolp3FeA8WBEsyMsHeflBr79JKr/q/egpxS6J76lQGZt930CLoz0/LELFAlGtZ7ZIMr36DwJQDKoPZGlbOfcXC1HV+oBY8KEpWQmaIX3s1fcPKUjN3LlPzSr2GlOq1vttSlJV3xNoCrF6X6XmVWWnf41qPaQAx4sUE1bvyANpo5ANLcCI/RcsQOQzsNFePszrbxA4XQYpllf/TBGxMs76I4OPikCgWKCq9cwlIamqH2g8ZWP121uquOoGJZSfWg8XC0lJUJMgFMoPSNc+t328T8PK2AijqetR63vR1We5/E9pqMhYQVqNWa37cHtYAZoEpqq+k0eKYUUcCm6MLMCoaj2fjM1Tyk+OqIRRub02X0zmLUYUCyO5naCpqo/iJBVwO0mLGm0zilqPIBZ8aEpGgkYPvfxARid4sKKNBo3MNKn14lZ0Uq/+Gi+pmD0kUXvteKJqfUQB9qN39Mrl2EjNzDwmsdVBP0IB+gySBwuQM5aUPHd5+wSlQOsn+ButBCuX5DfkhwpFLGQDxcI2QSn8LQGoZj5SRoPGthmWUJFbe4lI0Ohxl1OxlIJld95R0qpqTo1aJ0xold/+PQmoaI32yt5k1HqE4TKh/sofkqi/mZkblJ4oVCBxcsuvACnN9IC2epEQdQJSgdudXykVWE6iwR5jIt5KLcpIObZUt+0jAalUo5tEa8+HpogS1Lwg9PTKv0kB89vq4CM3KDK0tjMdat08IHy+5X/JILV09PutgYfu/DdpYcx41Dp1KVqG0P4sp2QGgGsvms1Pq2teqEhkVUlicoszFi5uGenlBzxOlCXC+E8Sqlvfm2rzaMZThHcekaDaw5CBs8UiGB9vPsjjy2ESmIjfoVCVDFSr/24qqtJs/rHkfvQLRVlZnRj6stlE1Tpl8YsUVEu6oqmaomrf3IRFugQaK+Y0qHXKpysD1dInXQVTlOb3Q4ewbtCaoZmE1brMjSMlyjI9CagOofwAKI1hpb04lIOqchl/KZqzgK807EVY4Fg8pkwq06Fa/YNBxOqP/Z+DZasGGlS13WK0ZY0le1ljqeD1HLEQof/ix+1zbcpCIQuqtWBsBpC6UhRdZzBZmdX8vLYmAZWxU7Sn5GWXzfrQFEmC0tZUIVSH36Ni9eSKZRKHSIW/KvvTPHq8KgHVZv/a1XqfotUFVEtH+pehkYqfHf7RhOqDtNJ1BpbKXe2PNTpUK0lBlZW+cWSOtFDPgqqp/XtwpDJsa0tfNcglTlMq1CHgxf45WiJDlUoVbLUue+OIc7vNgn0TktcTt5V6vLzzGGn5pwUV4+dPj5+EI7V0ddQEflI5TfF04n9U5a4EVA37xqQF+9Yjl2ffeuTySl6Pi4XA/stotZ65JC3pF1DdBc7Rvy6FVOHq4TeVIaVzmtKBr4CpeCGqMlkFfZiYN7nFlKAZygjQnVXsjTfv/r76xJff1w6f/K4xOcVggT/su6H6FMCNgaXKZFXl3IemJqrWMyRZ5WSVpgPvNPVvV4eDaK2tLn359GfTqjegde7CNVDhPyaTVbXd2FDF3JQpQ+nrebKKZQcfBB99u5pZOlxdXQNbfbK09vzrURMEuq6IslPgAggXP07w7AuZrBJQxdmUybk53t4YpuD1nG0EfDYPSF/IZRXDCXKGp1ZTP/r29esVs9+/fjvSGU7wMNIUTykVqw9+hOMlk1VGuxBp84C0vWXA4MYwsbekOJPIqltHQDuWDGDvnsFjmaKjLuDPMqRQJ3CKUqG/AIDdvSUB1ZkZYw/jRCQoZbEsh4pR9pe7ql1bOpQaoMX+MFdTBI/zJxlIAA48q6Fk56Lh6Mva4RoVqs2gedOJqXXarVrl1F+efwO5xPUkVBXnaqwsnWeQuNJpHDVedirgpCCkOr8YNvXvV38hQrWSEFTymzIR72qr/E+zCc0nztT8cgZ5AoWHpcbJSYeU4uXJhjKK1uSjG/YE5KIOQ0Gmypr/26BCFXdTJmR0/ozllbye2LzR8ooZvtWX8EwaVJWndd6mUzGlVCEHPn/7rOEVUcMrnsbbnlCkOj4J+PArIBYns/pTkqKDSZs03+pLNPnAQ7y8HiLn9Tg+cTeQo0FVe7aM7xOFN6cfVf3z8dKTW1calBa/LqI2V5DFtatbT5Ye/2kPl8XPMFt+Rrn4IlQSG8glJkGJWaWLt4k6gb99RXsMGnT1CqWDhmSlcznBvryCwc/aY10M/3QcEvLfoVNe2tj0oamJqnWTIhaMX0T54SiY85XS/IwTMbe+K3jN45KKExbTE5+xAbH0vcl/AuC1oFLrv1BeeyM2VDHVOmW9eqr2kw2VoB2A6isOmg8/NcU1j6ePysuw+Ql76atfm6JtxeWWgOonQgUa2xyqOGrdhs5vq/WBLXr9NualqPXaK7t4NKv9pHmyCmkelQL3bous+twElFRU7dYveUWBqg05E3Vj3rTXywToqmC1Pjc7XIW7UlAhDyEw6nPgqicvQBJoiKLCaR8EffMF56ovWJk616d2Af5Mee2LjFtXSW/3HEOCUqAynjlcxUHi0lPRnt86vMWQAv2pogjVeIWCNV+wJ5+r4hIAT2s2VM8oxX+cSUaCykN1TlE3Ly2twMFioxVsHzTvfjqyJvtQaumqBYvS/P7pSBNTERbfC7XwkvDSsMgxKbXux+0R1HqX0gWtvHIUqH3JF61gHXSUqgrJrirOo7qATigqm+9uUz6lymU2rlp3xELWTqisO6Fcnp1Qzs7KmQJJMx8sW8IKqUrX3VNXDEINmzNcnuPAhj+sCsLHsSH+hmXSXFHDZvSsfYxG1mZ0J7WydkINeqN1VfjhLBnCLVspEILLdTdV8VaCjtqcAaciJPz/qqArHNRojqSykKJt6mDMDdeexOEscZZ3EO4ZAasdvFqu1xUES7PeOS891SYrDo8mtAOiid/IOzIsxer15dsHtHE63j1yrSthiDt2MNJ4+exnoap4AWoCD8QC4BAJxQEEbLCzhYmIifbzs5fEXbKMzfhQxVTrs8Ud8s56RuW2yBDB4ry0OK2Ljp+G3I4jZpVfCjmf8QTTGJ+TN14z2liAZLXu4BN7LegcbXcTbrXbOLvHe0/I7eKCyBNJE/qUVyV37YTC6dPb9Jes7BZjrwX1qT3aUYqX9A3jGFSiU2UNfjUFu1GYZoro7CE3qXb6icV7MlA1SiNWGGfHL0GLJjlsgEpc+q13L9a5WLxlt/ZQMIirpFgUI5VV5Wk4oJPYseJQ/dTEtS2g11W8Eipi3IK0jqWmKUJTqVitWLG0jgKasTIKqshZ5b9wIdK69QxpLRpCxcaCtvTmC82YpNKFbLB6d1xpiVUwSPiq4Lc6qf2JUO0ksG497hUwTxsFYuDQ4kPqRnmFXI7zEK7xtMonanTnIaR2UksPrbKVnYoDOum8frCMk6L2MiAcPlupZrVpgOlRdSo4PkQVTxvRcKtNya2TdLIy7OUanKd0HYfDFq2L+lOFXkAOs9csqBp9O9sDcxJQjT6gky5Caz/XVUWsLxONT8VWUlb9qaLeeLdUxXWO8Aipo4dmXCyM6YBOSmchT+zDYOi/LNsrgngvTySVKqa2rApEOaVZg2ZMxWUJqtqzCjBOZwHTSL5fxbjdpG+FXbNmslChoyjAgSBvtIhRjia6obiyQWjUJvnVUtX0lBz5YxLuXbageopyQTSkdNGEwpl3PjGKc6b2xRDQQ7EgU38wWzMNt05mSHfkCqvWsbR4m0os9cSmKCyowjVV4sKIgpR3XwBRUpsYrbE/JqhoMzZ83pRegZWf6oro0om1UxZWuHbB7ouq2HOAwQ2vwzplRktYOT0EVawDOiXnAcGTqMBUucl7VtaCKhspDWdNVftiKFY3qmIxkYSowtlS0gGdaa/H8UnmgM6uRHfhP8uiUafjYiBLJUD9ieY6fo2DZZxaVupPJRowzgzE9R/QSbt7RGB1u8knZXDZnuqatFLscSCOlnGJEU9CRaPXesg9I9exLSFtSTYaMDtPKly86JphdwwXIqP0AtyIcw/cKrvFMUAlfUBnRuLoDKZD+fWOj4ndzO5CSuMJx5dDwvPLEuWXSsU7oNOBKmjVXsHrBa3aW8A9eU3S/sXCoBfDpYEuBsNOE8ESDnhDBNKUyoY0Eid5GW3XWr1Yq/YwjWbjHtBZkvm4a0+XsTfMswpr0JVZYnKC94zh3/ormWNfalN3QCdtUbawyvGyIgQTHxErYmU67/ip/D+rpaWrckgZG+a0bSIuoRcAK5AMumKPihW76SluiMARDaTXMr1NzF9hL+FNxDPxD+iUSqtU7aUuLoRisYIqAMOlDFxe8Wby8n+kkDI2zawDlfTdEIDViHtsSqPusbE9ybRKGdVXy5g7AA3vSGkisZDMOVD1Pw/kzjyrXEof0Dl0j00iap2vCpUY3eC7+UWpKzpyN78/AldaQaNPx/XXdYU+8YBWO+MJZTP69at1XD4ke9ZdLfWUy08+foZxHoxlrFuP4LGnKelfPZ1H/vTpjWNuZeN1rvvGutLxLp9iDWrgrq03xVyDunu/hVS7nyBUMe9d9hzQST8ShEHQuLnYOmG/o8PrTxU3kCii26d32FMnrdw92h011m83x3JAp+Qd8a4DOulHwkNCLeZyLd4lEQ1PTVWsWXj4C89st3Ls214b5ANHtvwO6JS+I95KniQO6KQcesCBusdwYtbjN8sKbERrwRouwzPnPfiuxcV7NLDgXpHpPaCTspecBVQut961oRrqLMAz3XXxjTSwaqUpPqBz4Ti6uHptAcWgKoVDVVq3vzX3OjJWld30OKCS2RfU74DOTsSZ5jIj89wAVNowUozeB6FavFmLBpa4AdApwNg7DfntXxV6VOeIAzojvY/yPRdQVgEOt6sYVG94Afbc3734Otq22PnSyAM6IxzL6dq/KvauaANehImuci3nQUrQ+ptAqHY9ULHEipC6jf1pP6AzQpOv/NoLFBMLbfjRvh9UXEK2WwM/sDhSZVV2kj8jPmmosqNW8Q0jlVs8SfunlaLxJ06Gf2IEuwNRJQ5V/H1B0wPcHj6BWr459L5ZBXKySg9BVedJ1V0f/onFe+FYDQYlrdZdBYi7zRaL1s6yYV6ee/PDXt7jhZ0R74uUkOvpN/UBpDhTcbE+jNXNEKwq3dJgUC6vOOwVuDcf5LHrWLIHdNqfXfCSR3+kmKV9sBJIpf1/IgSrxp45HNRUHdBpM0I/SIkGItU6RVQ6ij2rrCgdfOzUL6nCarCx2/cJasrUuhVLx/8yOCCn3LZ+nhaJpdShrVdXREqlz32YSmDlz+0BF7/rVOvBBcgGzm2fvPK59rnyal9Ak+503rx507e+6gbkVCBWlXZQUD4FGLH/ggWYwNkQfl7/bBirSghSTJR20z62nwv7odzwi9S2+xHCkzobIkgsUE4c8f0Uz4ZqMOw9M6xa5+kh222FIpVbHPo4ts2woGKdOJK4BLW5fcOLVflmOFSMr05LXqBKp4E8ZdkAtVfa/dCgpkut21EN8FUYUQlrLW64qrC7kQvhKSutXrtfo7EzKqhxqHXSmVv+ud65cGM1GikAq/d6e2e/293f2X7dGw0UmBup3dFBDRdgZLWeyEluAV7fabaX70V630BZvd76eq83gqSc73eugpWtfuyQw05ys5Mn3gGdaf/r8mVZjJ1rEd853RbFx2Gkuma0oGTPB0Q3WQnq4obMSi0ap8sbDnAqKxholKCmSK27oTLbjbEmFUsrYMRGmxDUWNW6bAGyXO9sGcY4kwoEg2Gc04KSOiE3P3YrLqw0xphU0BNdySd0tnKYJXWad9h1mY2ee+MswNYOhkcKSuI07/FJUBcjmJcnvdHvWc56J125oKZIrXti6VxEkN4S1spdyAd1DQd0Rsn1fvo0+Sps9V5mzBhBDQ6XwwswSKgnL977l+VkwVrsHez3ExflgR65tUcWC04XLWPun6wnBtbi+slWAkFN9IBOkto7P1lPhLNavZMtM6mg0lOh1oej2j9txQWLDalP9zpJBhVbrctOboXTqDm7fTNOHbZ6N7e7QLdJBhX5gE6/VrK3mS7VYA/oW8/1+7sHkbssAwnV6x1smcXkg/J6fliMYSI+hDwdr2O2T9YjNu9cOK2f7JRYYYwpqGlQ637csNAxd09z61GTq9XqtQ6Oxx3UNKh1v6jgZfd3yrleqxUG2CJj8fXcaXuvY04gKLpaH7EULb4wtsnT7Mweb5zeW+/1ADIHs0UGEUul9fV7Bxu7XYh5gkGNOKDTx6MvcJRZS1gq9c1+J7u1tb15enoimvD3Tk5PN7cvzrv9ft+cn594UMOo/B/J2Q2X8T0dSAAAAABJRU5ErkJggg== - filename: image_name.png - facebook_link: https://www.facebook.com/Williams_Scottish - location: New York, US - native_currency: USD - primary_language: en - realname: Williams Scottish - twitter_link: https://www.twitter.com/@Williams_Scottish - user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - user_pastelid_passphrase: qwerasdf1234 - "400": - description: 'BadRequest: Bad Request response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "404": - description: 'NotFound: Not Found response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "500": - description: 'InternalServerError: Internal Server Error response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - /userdatas/create: - post: - tags: - - userdatas - summary: Create new user data - description: Create new user data - operationId: userdatas#createUserdata - requestBody: - required: true - content: - multipart/form-data: - schema: - $ref: '#/components/schemas/CreateUserdataRequestBody' - example: - avatar_image: - content: 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 - filename: image_name.png - biography: I'm a digital artist based in Paris, France. ... - categories: Manga&Anime,3D,Comics - cover_photo: - content: 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 - filename: image_name.png - facebook_link: https://www.facebook.com/Williams_Scottish - location: New York, US - native_currency: USD - primary_language: en - realname: Williams Scottish - twitter_link: https://www.twitter.com/@Williams_Scottish - user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - user_pastelid_passphrase: qwerasdf1234 - responses: - "200": - description: OK response. - content: - application/json: - schema: - $ref: '#/components/schemas/UserdataProcessResult' - example: - avatar_image: "" - biography: "" - categories: "" - cover_photo: "" - detail: All userdata is processed - facebook_link: "" - location: "" - native_currency: "" - primary_language: "" - realname: "" - response_code: 0 - twitter_link: "" - "400": - description: 'BadRequest: Bad Request response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "500": - description: 'InternalServerError: Internal Server Error response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - /userdatas/update: - post: - tags: - - userdatas - summary: Update user data for an existing user - description: Update user data for an existing user - operationId: userdatas#updateUserdata - requestBody: - required: true - content: - multipart/form-data: - schema: - $ref: '#/components/schemas/CreateUserdataRequestBody' - example: - avatar_image: - content: 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 - filename: image_name.png - biography: I'm a digital artist based in Paris, France. ... - categories: Manga&Anime,3D,Comics - cover_photo: - content: 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 - filename: image_name.png - facebook_link: https://www.facebook.com/Williams_Scottish - location: New York, US - native_currency: USD - primary_language: en - realname: Williams Scottish - twitter_link: https://www.twitter.com/@Williams_Scottish - user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - user_pastelid_passphrase: qwerasdf1234 - responses: - "200": - description: OK response. - content: - application/json: - schema: - $ref: '#/components/schemas/UserdataProcessResult' - example: - avatar_image: "" - biography: "" - categories: "" - cover_photo: "" - detail: All userdata is processed - facebook_link: "" - location: "" - native_currency: "" - primary_language: "" - realname: "" - response_code: 0 - twitter_link: "" - "400": - description: 'BadRequest: Bad Request response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' - "500": - description: 'InternalServerError: Internal Server Error response.' - content: - application/vnd.goa.error: - schema: - $ref: '#/components/schemas/Error' -components: - schemas: - ActivationAttempt: - type: object - properties: - activation_attempt_at: - type: string - description: Activation Attempt At in datetime format - example: "2004-10-12T07:31:58Z" - format: date-time - error_message: - type: string - description: Error Message - example: Sint dignissimos quia. - file_id: - type: string - description: File ID - example: Dicta dolore sequi. - id: - type: integer - description: ID - example: 6095623085988049112 - format: int64 - is_successful: - type: boolean - description: Indicates if the activation was successful - example: false - example: - activation_attempt_at: "1975-03-22T18:00:03Z" - error_message: Eos at accusamus sunt. - file_id: Aspernatur ducimus. - id: 1538193004362662237 - is_successful: true - required: - - id - - file_id - - activation_attempt_at - AlternativeNSFWScores: - type: object - properties: - drawings: - type: number - description: drawings nsfw score - example: 0.66452837 - format: float - hentai: - type: number - description: hentai nsfw score - example: 0.7656112 - format: float - neutral: - type: number - description: neutral nsfw score - example: 0.37575012 - format: float - porn: - type: number - description: porn nsfw score - example: 0.5614808 - format: float - sexy: - type: number - description: sexy nsfw score - example: 0.51102895 - format: float - example: - drawings: 0.5703159 - hentai: 0.7167511 - neutral: 0.26442868 - porn: 0.6442617 - sexy: 0.55777264 - Asset: - type: object - properties: - expires_in: - type: string - description: File expiration - example: 2006-01-02T15:04:05Z07:00 - format: date-time - file_id: - type: string - description: Uploaded file ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - required_preburn_amount: - type: number - description: The amount that's required to be preburned - default: 1 - example: 20 - format: double - minimum: 1e-05 - total_estimated_fee: - type: number - description: Estimated fee - default: 1 - example: 100 - format: double - minimum: 1e-05 - example: - expires_in: 2006-01-02T15:04:05Z07:00 - file_id: VK7mpAqZ - required_preburn_amount: 20 - total_estimated_fee: 100 - required: - - file_id - - expires_in - - total_estimated_fee - AssetV2: - type: object - properties: - file_id: - type: string - description: Uploaded file ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - required_preburn_transaction_amounts: - type: array - items: - type: number - example: 0.847199881862724 - format: double - description: The amounts that's required to be preburned - one per transaction - example: - - 0.16201706614597156 - - 0.7965999471882294 - total_estimated_fee: - type: number - description: Estimated fee - default: 1 - example: 100 - format: double - minimum: 1e-05 - example: - file_id: VK7mpAqZ - required_preburn_transaction_amounts: - - 0.21282193452890158 - - 0.4491625713743623 - - 0.39008631718165854 - - 0.1885920166769558 - total_estimated_fee: 100 - required: - - file_id - - total_estimated_fee - ChallengeData: - type: object - properties: - block: - type: integer - description: Block - example: 1514370597 - format: int32 - end_index: - type: integer - description: End index - example: 7665255617375603928 - format: int64 - file_hash: - type: string - description: File hash - example: Eveniet odit voluptas. - merkelroot: - type: string - description: Merkelroot - example: Ea culpa distinctio repudiandae. - start_index: - type: integer - description: Start index - example: 5226596782885260246 - format: int64 - timestamp: - type: string - description: Timestamp - example: Et id expedita qui nostrum. - description: Data of challenge - example: - block: 1245267817 - end_index: 547812972672561730 - file_hash: Aliquid cumque dolore tenetur. - merkelroot: Aperiam illo consequatur. - start_index: 3277213621180435391 - timestamp: Provident et voluptate distinctio nam ipsa. - required: - - timestamp - - file_hash - - start_index - - end_index - ChallengesScores: - type: object - properties: - health_check_challenge_score: - type: number - description: Total accumulated HC challenge score - example: 0.7640542046355273 - format: double - ip_address: - type: string - description: IPAddress of the node - example: Animi totam laboriosam et qui iure. - node_id: - type: string - description: Specific node id - example: Fuga voluptatem ipsum voluptas eius. - storage_challenge_score: - type: number - description: Total accumulated SC challenge score - example: 0.7324959148796738 - format: double - description: Combined accumulated scores for HC and SC challenges - example: - health_check_challenge_score: 0.20438164096656727 - ip_address: Rerum repellat id. - node_id: Occaecati maiores ut voluptatum dolor provident. - storage_challenge_score: 0.5632933038658091 - required: - - node_id - - storage_challenge_score - - health_check_challenge_score - CreateUserdataRequestBody: - type: object - properties: - avatar_image: - $ref: '#/components/schemas/UserImageUploadPayload' - biography: - type: string - description: Biography of the user - example: I'm a digital artist based in Paris, France. ... - maxLength: 1024 - categories: - type: string - description: The categories of user's work, separate by , - example: Manga&Anime,3D,Comics - cover_photo: - $ref: '#/components/schemas/UserImageUploadPayload' - facebook_link: - type: string - description: Facebook link of the user - example: https://www.facebook.com/Williams_Scottish - maxLength: 128 - location: - type: string - description: Location of the user - example: New York, US - maxLength: 256 - native_currency: - type: string - description: Native currency of user in ISO 4217 Alphabetic Code - example: USD - minLength: 3 - maxLength: 3 - primary_language: - type: string - description: Primary language of the user, follow ISO 639-2 standard - example: en - maxLength: 30 - realname: - type: string - description: Real name of the user - example: Williams Scottish - maxLength: 256 - twitter_link: - type: string - description: Twitter link of the user - example: https://www.twitter.com/@Williams_Scottish - maxLength: 128 - user_pastelid: - type: string - description: User's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - user_pastelid_passphrase: - type: string - description: Passphrase of the user's PastelID - example: qwerasdf1234 - example: - avatar_image: - content: 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 - filename: image_name.png - biography: I'm a digital artist based in Paris, France. ... - categories: Manga&Anime,3D,Comics - cover_photo: - content: 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 - filename: image_name.png - facebook_link: https://www.facebook.com/Williams_Scottish - location: New York, US - native_currency: USD - primary_language: en - realname: Williams Scottish - twitter_link: https://www.twitter.com/@Williams_Scottish - user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - user_pastelid_passphrase: qwerasdf1234 - required: - - user_pastelid - - user_pastelid_passphrase - DDFPResultFile: - type: object - properties: - file: - type: string - description: File downloaded - example: Neque omnis tempora. - example: - file: Ut voluptas cum est molestiae. - required: - - file - DDServiceOutputFileResult: - type: object - properties: - alternative_nsfw_scores: - $ref: '#/components/schemas/AlternativeNSFWScores' - candidate_image_thumbnail_webp_as_base64_string: - type: string - description: candidate image thumbnail as base64 string - example: Qui velit qui iste. - child_probability: - type: number - description: child probability - example: 0.8816837 - format: float - collection_name_string: - type: string - description: name of the collection - example: Cupiditate perspiciatis voluptatem aut. - cp_probability: - type: number - description: probability of CP - example: 0.86713 - format: float - creator_name: - type: string - description: name of the creator - example: Animi aut itaque qui incidunt minima similique. - creator_website: - type: string - description: website of creator - example: Qui iusto voluptas tenetur est hic adipisci. - creator_written_statement: - type: string - description: written statement of creator - example: Et ut veritatis repudiandae facilis optio non. - does_not_impact_the_following_collection_strings: - type: string - description: does not impact collection strings - example: Voluptatem corrupti repellendus nihil ipsa. - dupe_detection_system_version: - type: string - description: system version of dupe detection - example: Alias dolorem aut. - file_type: - type: string - description: type of the file - example: Sit ea maiores at nisi. - group_rareness_score: - type: number - description: rareness score of the group - example: 0.60826373 - format: float - hash_of_candidate_image_file: - type: string - description: hash of candidate image file - example: Eveniet alias exercitationem beatae architecto sequi. - image_file_path: - type: string - description: file path of the image - example: Labore error distinctio. - image_fingerprint_of_candidate_image_file: - type: array - items: - type: number - example: 0.6895019762337847 - format: double - description: Image fingerprint of candidate image file - example: - - 0.7297500759675873 - - 0.4307407703835172 - - 0.18231999348297495 - - 0.22517744197696887 - internet_rareness: - $ref: '#/components/schemas/InternetRareness' - is_likely_dupe: - type: boolean - description: is this nft likely a duplicate - example: false - is_pastel_openapi_request: - type: boolean - description: is pastel open API request - example: true - is_rare_on_internet: - type: boolean - description: is this nft rare on the internet - example: false - max_permitted_open_nsfw_score: - type: number - description: max permitted open NSFW score - example: 0.7721841509793138 - format: double - nft_creation_video_youtube_url: - type: string - description: nft creation video youtube url - example: Quia rem. - nft_keyword_set: - type: string - description: keywords for NFT - example: Qui commodi. - nft_series_name: - type: string - description: series name of NFT - example: Nostrum omnis suscipit enim exercitationem. - nft_title: - type: string - description: title of NFT - example: Dignissimos voluptas est eum est enim. - open_api_group_id_string: - type: string - description: open api group id string - example: Occaecati in libero eos. - open_nsfw_score: - type: number - description: open nsfw score - example: 0.21136375 - format: float - original_file_size_in_bytes: - type: integer - description: original file size in bytes - example: 4778032498927877012 - format: int64 - overall_rareness_score: - type: number - description: pastel rareness score - example: 0.2309514 - format: float - pastel_block_hash_when_request_submitted: - type: string - description: block hash when request submitted - example: Eius et libero alias hic voluptatibus sit. - pastel_block_height_when_request_submitted: - type: string - description: block Height when request submitted - example: Voluptatibus cumque nisi modi consequatur. - pastel_id_of_registering_supernode_1: - type: string - description: pastel id of registering SN1 - example: Soluta iste quo. - pastel_id_of_registering_supernode_2: - type: string - description: pastel id of registering SN2 - example: Officia autem quos qui modi. - pastel_id_of_registering_supernode_3: - type: string - description: pastel id of registering SN3 - example: In ipsa ut voluptas. - pastel_id_of_submitter: - type: string - description: pastel id of the submitter - example: Voluptas enim. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: - type: number - description: PCT of top 10 most similar with dupe probe above 25 PCT - example: 0.8764374 - format: float - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: - type: number - description: PCT of top 10 most similar with dupe probe above 33 PCT - example: 0.3732366 - format: float - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: - type: number - description: PCT of top 10 most similar with dupe probe above 50 PCT - example: 0.46130848 - format: float - preview_hash: - type: string - description: preview hash of NFT - example: - - 78 - - 111 - - 110 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 105 - - 110 - - 32 - - 113 - - 117 - - 105 - - 46 - format: binary - rareness_scores_table_json_compressed_b64: - type: string - description: rareness scores table json compressed b64 - example: Corporis minima. - similarity_score_to_first_entry_in_collection: - type: number - description: similarity score to first entry in collection - example: 0.23129384 - format: float - thumbnail1_hash: - type: string - description: thumbnail1 hash of NFT - example: - - 78 - - 105 - - 104 - - 105 - - 108 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 32 - - 110 - - 117 - - 109 - - 113 - - 117 - - 97 - - 109 - - 32 - - 97 - - 98 - - 32 - - 115 - - 105 - - 110 - - 116 - - 32 - - 105 - - 110 - - 118 - - 101 - - 110 - - 116 - - 111 - - 114 - - 101 - - 32 - - 97 - - 117 - - 116 - - 46 - format: binary - thumbnail2_hash: - type: string - description: thumbnail2 hash of NFT - example: - - 86 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 109 - - 32 - - 99 - - 117 - - 109 - - 113 - - 117 - - 101 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 99 - - 111 - - 114 - - 114 - - 117 - - 112 - - 116 - - 105 - - 32 - - 101 - - 118 - - 101 - - 110 - - 105 - - 101 - - 116 - - 32 - - 117 - - 116 - - 32 - - 116 - - 101 - - 109 - - 112 - - 111 - - 114 - - 105 - - 98 - - 117 - - 115 - - 46 - format: binary - total_copies: - type: integer - description: total copies of NFT - example: 6809940013067523041 - format: int64 - utc_timestamp_when_request_submitted: - type: string - description: timestamp of request when submitted - example: Nobis sit eos provident voluptas. - example: - alternative_nsfw_scores: - drawings: 0.053542916 - hentai: 0.17044726 - neutral: 0.01989352 - porn: 0.7542108 - sexy: 0.24790263 - candidate_image_thumbnail_webp_as_base64_string: Rerum fugiat sed reiciendis ut. - child_probability: 0.35175335 - collection_name_string: Explicabo enim dolorem. - cp_probability: 0.12968402 - creator_name: Tempore dignissimos temporibus. - creator_website: Rem nisi ut. - creator_written_statement: Deserunt sunt quasi tempora et esse molestiae. - does_not_impact_the_following_collection_strings: Doloribus ex. - dupe_detection_system_version: Recusandae excepturi consequatur sapiente. - file_type: Aliquid ratione blanditiis natus beatae amet. - group_rareness_score: 0.6511306 - hash_of_candidate_image_file: Ea aliquam corrupti distinctio est. - image_file_path: Ut est. - image_fingerprint_of_candidate_image_file: - - 0.29919540342492684 - - 0.6985188456775364 - - 0.06740662993158088 - internet_rareness: - alternative_rare_on_internet_dict_as_json_compressed_b64: Magnam pariatur aut facilis. - earliest_available_date_of_internet_results: Sed repudiandae voluptas dolor aut velit voluptatem. - min_number_of_exact_matches_in_page: 1704813535 - rare_on_internet_graph_json_compressed_b64: Aliquid provident eveniet. - rare_on_internet_summary_table_as_json_compressed_b64: Quisquam corporis qui nobis dignissimos. - is_likely_dupe: false - is_pastel_openapi_request: false - is_rare_on_internet: false - max_permitted_open_nsfw_score: 0.9090540332421508 - nft_creation_video_youtube_url: Inventore et iste. - nft_keyword_set: Quaerat sint. - nft_series_name: Pariatur tempore. - nft_title: Non sit nostrum. - open_api_group_id_string: Debitis dolor et natus. - open_nsfw_score: 0.1995445 - original_file_size_in_bytes: 5588971587130615713 - overall_rareness_score: 0.73171234 - pastel_block_hash_when_request_submitted: Culpa et sequi et et. - pastel_block_height_when_request_submitted: Voluptatem eius dolorem quia doloribus autem velit. - pastel_id_of_registering_supernode_1: Et eveniet id molestiae ut. - pastel_id_of_registering_supernode_2: Minus perferendis deleniti. - pastel_id_of_registering_supernode_3: Nobis illo doloribus reiciendis. - pastel_id_of_submitter: Ut laboriosam sit ex molestiae. - pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.59682155 - pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.87328106 - pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.3961445 - preview_hash: - - 73 - - 110 - - 99 - - 105 - - 100 - - 117 - - 110 - - 116 - - 32 - - 115 - - 105 - - 116 - - 32 - - 99 - - 117 - - 112 - - 105 - - 100 - - 105 - - 116 - - 97 - - 116 - - 101 - - 32 - - 99 - - 111 - - 110 - - 115 - - 101 - - 99 - - 116 - - 101 - - 116 - - 117 - - 114 - - 46 - rareness_scores_table_json_compressed_b64: Quam velit tempora. - similarity_score_to_first_entry_in_collection: 0.8728859 - thumbnail1_hash: - - 78 - - 117 - - 109 - - 113 - - 117 - - 97 - - 109 - - 32 - - 114 - - 101 - - 114 - - 117 - - 109 - - 32 - - 115 - - 117 - - 110 - - 116 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 105 - - 111 - - 115 - - 97 - - 109 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 105 - - 98 - - 117 - - 115 - - 46 - thumbnail2_hash: - - 78 - - 97 - - 116 - - 117 - - 115 - - 32 - - 116 - - 101 - - 110 - - 101 - - 116 - - 117 - - 114 - - 46 - total_copies: 1239003511493090436 - utc_timestamp_when_request_submitted: Explicabo natus. - required: - - creator_name - - creator_website - - creator_written_statement - - nft_title - - nft_series_name - - nft_creation_video_youtube_url - - nft_keyword_set - - total_copies - - preview_hash - - thumbnail1_hash - - thumbnail2_hash - - original_file_size_in_bytes - - file_type - - max_permitted_open_nsfw_score - Details: - type: object - properties: - fields: - type: object - description: important fields regarding status history - example: - Eum ut et maiores a quis dolor.: Ipsum rem aut perferendis ratione fugiat. - Mollitia eius vitae deleniti quia.: At necessitatibus numquam qui dolorem reprehenderit. - Omnis ad.: Accusamus quia. - additionalProperties: true - message: - type: string - description: details regarding the status - example: Image has been downloaded... - example: - fields: - Accusamus animi deleniti fugit fuga iusto cumque.: Sit mollitia inventore. - Ex rerum quasi cum quia.: Tempore atque. - Nemo eum hic maiores.: Nihil eos placeat sed sit. - message: Image has been downloaded... - DownloadResult: - type: object - properties: - file: - type: string - description: File downloaded - example: - - 65 - - 117 - - 116 - - 32 - - 113 - - 117 - - 97 - - 101 - - 114 - - 97 - - 116 - - 32 - - 117 - - 116 - - 32 - - 114 - - 101 - - 109 - - 32 - - 115 - - 117 - - 110 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 97 - - 117 - - 116 - - 101 - - 109 - - 46 - format: binary - example: - file: - - 65 - - 117 - - 116 - - 101 - - 109 - - 32 - - 97 - - 99 - - 99 - - 117 - - 115 - - 97 - - 110 - - 116 - - 105 - - 117 - - 109 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 113 - - 117 - - 97 - - 101 - - 114 - - 97 - - 116 - - 32 - - 101 - - 116 - - 32 - - 97 - - 117 - - 116 - - 46 - required: - - file - Error: - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - EvaluationData: - type: object - properties: - block: - type: integer - description: Block - example: 168066308 - format: int32 - hash: - type: string - description: Hash - example: At pariatur ullam et. - is_verified: - type: boolean - description: IsVerified - example: false - merkelroot: - type: string - description: Merkelroot - example: Saepe voluptatem autem. - timestamp: - type: string - description: Timestamp - example: Unde excepturi corrupti et et. - description: Data of evaluation - example: - block: 318941857 - hash: Totam aspernatur suscipit est libero tempore totam. - is_verified: false - merkelroot: Consectetur distinctio tenetur nostrum doloribus. - timestamp: Temporibus vitae aliquam incidunt ut autem. - required: - - timestamp - - hash - - is_verified - EventTicket: - type: object - properties: - data_hash: - type: string - example: - - 77 - - 105 - - 110 - - 105 - - 109 - - 97 - - 32 - - 113 - - 117 - - 105 - - 115 - - 113 - - 117 - - 97 - - 109 - - 32 - - 115 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 117 - - 109 - - 32 - - 115 - - 105 - - 109 - - 105 - - 108 - - 105 - - 113 - - 117 - - 101 - - 32 - - 97 - - 116 - - 113 - - 117 - - 101 - - 46 - format: binary - missing_keys: - type: array - items: - type: string - example: Corrupti eaque laborum. - example: - - Sed voluptatem aliquam est qui. - - Aut reiciendis. - - Corporis ipsum deleniti eos. - - Libero eaque error omnis aut ut. - recipient: - type: string - example: Exercitationem molestias enim. - ticket_type: - type: string - example: Aut voluptatum veritatis qui qui voluptatem. - tx_id: - type: string - example: Sunt autem est soluta iste omnis. - example: - data_hash: - - 80 - - 97 - - 114 - - 105 - - 97 - - 116 - - 117 - - 114 - - 32 - - 111 - - 100 - - 105 - - 111 - - 32 - - 113 - - 117 - - 105 - - 32 - - 118 - - 101 - - 108 - - 32 - - 115 - - 117 - - 110 - - 116 - - 32 - - 109 - - 105 - - 110 - - 117 - - 115 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 46 - missing_keys: - - Quo id ut quae atque. - - Suscipit ut voluptatum explicabo quaerat. - - Sit illum ea est occaecati. - recipient: Similique doloribus placeat itaque rerum architecto. - ticket_type: Officia totam unde quia. - tx_id: Et sed nam distinctio deleniti. - File: - type: object - properties: - activation_attempts: - type: array - items: - $ref: '#/components/schemas/ActivationAttempt' - description: List of activation attempts - example: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - activation_txid: - type: string - description: Activation Transaction ID - example: Rerum id quis accusamus dolores. - base_file_id: - type: string - description: Base File ID - example: Ea blanditiis. - burn_txn_id: - type: string - description: Burn Transaction ID - example: Nam quasi et autem quod expedita. - cascade_metadata_ticket_id: - type: string - description: Cascade Metadata Ticket ID - example: Reiciendis velit modi dignissimos quasi. - done_block: - type: integer - description: Done Block - example: 6156290738512412607 - format: int64 - file_id: - type: string - description: File ID - example: Accusantium ea maxime. - file_index: - type: string - description: Index of the file - example: Consequuntur accusamus maiores quo vel. - hash_of_original_big_file: - type: string - description: Hash of the Original Big File - example: Architecto voluptas dolore dolorem. - is_concluded: - type: boolean - description: Indicates if the process is concluded - example: false - name_of_original_big_file_with_ext: - type: string - description: Name of the Original Big File with Extension - example: Aut cumque consequuntur iure ea illum nam. - reg_txid: - type: string - description: Registration Transaction ID - example: Fugiat praesentium minus illum ducimus id. - registration_attempts: - type: array - items: - $ref: '#/components/schemas/RegistrationAttempt' - description: List of registration attempts - example: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: - type: number - description: Required Amount - example: 0.9392335712666725 - format: double - req_burn_txn_amount: - type: number - description: Required Burn Transaction Amount - example: 0.881792511024194 - format: double - size_of_original_big_file: - type: number - description: Size of the Original Big File - example: 0.4246467510622976 - format: double - start_block: - type: integer - description: Start Block - example: 898403306 - format: int32 - task_id: - type: string - description: Task ID - example: Minus suscipit. - upload_timestamp: - type: string - description: Upload Timestamp in datetime format - example: "2006-12-29T00:55:23Z" - format: date-time - uuid_key: - type: string - description: UUID Key - example: Autem velit quibusdam laboriosam maiores possimus. - example: - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - activation_txid: Ex eos nam neque dolore. - base_file_id: Blanditiis at. - burn_txn_id: Quia explicabo vel. - cascade_metadata_ticket_id: Est debitis ipsa. - done_block: 4919011026986690408 - file_id: Aperiam minus. - file_index: Amet sapiente inventore quo sit exercitationem. - hash_of_original_big_file: Libero et delectus veniam. - is_concluded: false - name_of_original_big_file_with_ext: Nostrum est voluptatibus cupiditate. - reg_txid: Mollitia unde quibusdam enim voluptatem sit. - registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.7366533305728714 - req_burn_txn_amount: 0.7432564875575534 - size_of_original_big_file: 0.6588947677341078 - start_block: 490931683 - task_id: Iure placeat accusantium id et aut minus. - upload_timestamp: "1995-10-31T05:51:58Z" - uuid_key: Nam molestiae et. - required: - - file_id - - task_id - - upload_timestamp - - base_file_id - - registration_attempts - - activation_attempts - - req_burn_txn_amount - - req_amount - - cascade_metadata_ticket_id - - hash_of_original_big_file - - name_of_original_big_file_with_ext - - size_of_original_big_file - FileDownloadResult: - type: object - properties: - file_id: - type: string - description: File path - example: At provident. - example: - file_id: Expedita recusandae laboriosam est. - required: - - file_id - FuzzyMatch: - type: object - properties: - field_type: - type: string - description: Field that is matched - example: keyword - enum: - - creator_name - - art_title - - series - - descr - - keyword - matched_indexes: - type: array - items: - type: integer - example: 6102026387781643114 - format: int64 - description: The indexes of matched characters. Useful for highlighting matches - example: - - 6796449924094537885 - - 959140564434932267 - score: - type: integer - description: Score used to rank matches - example: 3009724268324206974 - format: int64 - str: - type: string - description: String that is matched - example: Animi sed consequatur sit ipsa. - example: - field_type: series - matched_indexes: - - 2705673492284656983 - - 5654908727100686296 - score: 3177851692914113633 - str: Autem doloribus aut numquam. - HCChallengeData: - type: object - properties: - block: - type: integer - description: Block - example: 255194099 - format: int32 - merkelroot: - type: string - description: Merkelroot - example: Ut consequatur ex et et ut alias. - timestamp: - type: string - description: Timestamp - example: Consectetur qui consectetur id saepe. - description: Data of challenge - example: - block: 1908546163 - merkelroot: Facilis voluptatibus soluta id omnis accusamus. - timestamp: Nemo ut nostrum sit natus molestiae eos. - required: - - timestamp - HCEvaluationData: - type: object - properties: - block: - type: integer - description: Block - example: 1613011766 - format: int32 - is_verified: - type: boolean - description: IsVerified - example: true - merkelroot: - type: string - description: Merkelroot - example: Unde quo voluptatibus magnam quaerat esse consequatur. - timestamp: - type: string - description: Timestamp - example: Et quia. - description: Data of evaluation - example: - block: 255672509 - is_verified: true - merkelroot: Ducimus odio aut sapiente. - timestamp: Perspiciatis amet adipisci porro ea vel eveniet. - required: - - timestamp - - is_verified - HCObserverEvaluationData: - type: object - properties: - block: - type: integer - description: Block - example: 1837709241 - format: int32 - is_challenge_timestamp_ok: - type: boolean - description: IsChallengeTimestampOK - example: false - is_challenger_signature_ok: - type: boolean - description: IsChallengerSignatureOK - example: true - is_evaluation_result_ok: - type: boolean - description: IsEvaluationResultOK - example: true - is_evaluation_timestamp_ok: - type: boolean - description: IsEvaluationTimestampOK - example: true - is_process_timestamp_ok: - type: boolean - description: IsProcessTimestampOK - example: false - is_recipient_signature_ok: - type: boolean - description: IsRecipientSignatureOK - example: true - merkelroot: - type: string - description: Merkelroot - example: Harum soluta recusandae harum ut. - timestamp: - type: string - description: Timestamp - example: Ipsum totam excepturi reiciendis quis. - description: Data of Observer's evaluation - example: - block: 112508918 - is_challenge_timestamp_ok: true - is_challenger_signature_ok: false - is_evaluation_result_ok: true - is_evaluation_timestamp_ok: true - is_process_timestamp_ok: false - is_recipient_signature_ok: false - merkelroot: Et earum cupiditate voluptas suscipit ipsa. - timestamp: Architecto dolore qui magni. - required: - - timestamp - - is_challenge_timestamp_ok - - is_process_timestamp_ok - - is_evaluation_timestamp_ok - - is_recipient_signature_ok - - is_challenger_signature_ok - - is_evaluation_result_ok - HCSummaryStats: - type: object - properties: - no_of_invalid_evaluation_observed_by_observers: - type: integer - description: challenges failed due to invalid evaluation evaluated by observers - example: 1807062504447446222 - format: int64 - no_of_invalid_signatures_observed_by_observers: - type: integer - description: challenges failed due to invalid signatures evaluated by observers - example: 8248181690542126150 - format: int64 - no_of_slow_responses_observed_by_observers: - type: integer - description: challenges failed due to slow-responses evaluated by observers - example: 3177489983924016672 - format: int64 - total_challenges_evaluated_by_challenger: - type: integer - description: Total number of challenges evaluated by the challenger node - example: 4711640194374212281 - format: int64 - total_challenges_issued: - type: integer - description: Total number of challenges issued - example: 5299326988258299892 - format: int64 - total_challenges_processed_by_recipient: - type: integer - description: Total number of challenges processed by the recipient node - example: 8818547790092084190 - format: int64 - total_challenges_verified: - type: integer - description: Total number of challenges verified by observers - example: 7249719424045644874 - format: int64 - description: HealthCheck-Challenge SummaryStats - example: - no_of_invalid_evaluation_observed_by_observers: 4494881681012147907 - no_of_invalid_signatures_observed_by_observers: 6093051522462056040 - no_of_slow_responses_observed_by_observers: 9055426637750004947 - total_challenges_evaluated_by_challenger: 5707090490098316729 - total_challenges_issued: 7749705948070744961 - total_challenges_processed_by_recipient: 6515646547329763792 - total_challenges_verified: 6645127549352825865 - required: - - total_challenges_issued - - total_challenges_processed_by_recipient - - total_challenges_evaluated_by_challenger - - total_challenges_verified - - no_of_slow_responses_observed_by_observers - - no_of_invalid_signatures_observed_by_observers - - no_of_invalid_evaluation_observed_by_observers - HcDetailedLogsMessage: - type: object - properties: - challenge: - $ref: '#/components/schemas/HCChallengeData' - challenge_id: - type: string - description: ID of the challenge - example: Perspiciatis dolore sit. - challenger_evaluation: - $ref: '#/components/schemas/HCEvaluationData' - challenger_id: - type: string - description: ID of the challenger - example: Architecto totam. - message_type: - type: string - description: type of the message - example: Et id est optio sit. - observer_evaluation: - $ref: '#/components/schemas/HCObserverEvaluationData' - observers: - type: array - items: - type: string - example: Asperiores harum. - description: List of observer IDs - example: - - Fugit aut quis unde velit velit. - - Non fugit minus rerum perspiciatis. - - Reprehenderit dolorum excepturi magnam officiis facilis laborum. - - Consequatur laudantium voluptate labore similique. - recipient_id: - type: string - description: ID of the recipient - example: Eum reprehenderit voluptas. - response: - $ref: '#/components/schemas/HCChallengeData' - sender_id: - type: string - description: ID of the sender's node - example: Recusandae placeat iure ut labore provident. - sender_signature: - type: string - description: signature of the sender - example: Natus accusantium. - description: HealthCheck challenge message data - example: - challenge: - block: 161855103 - merkelroot: Occaecati in reiciendis quia repudiandae. - timestamp: Necessitatibus sed est sunt. - challenge_id: Eligendi at modi cupiditate. - challenger_evaluation: - block: 372559801 - is_verified: false - merkelroot: Impedit quis autem et et neque. - timestamp: Explicabo dolore. - challenger_id: Corporis explicabo est. - message_type: Fugiat aspernatur facilis. - observer_evaluation: - block: 1881554591 - is_challenge_timestamp_ok: false - is_challenger_signature_ok: false - is_evaluation_result_ok: false - is_evaluation_timestamp_ok: true - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Hic voluptas doloremque eligendi et magni. - timestamp: Perspiciatis earum. - observers: - - Quia laboriosam neque odit. - - Et ipsum. - recipient_id: Ut voluptates dolor. - response: - block: 1874672230 - merkelroot: Voluptate ipsa et ut dicta temporibus ut. - timestamp: Deserunt mollitia est a labore. - sender_id: Praesentium similique itaque ea enim autem impedit. - sender_signature: Alias velit tempore. - required: - - challenge_id - - message_type - - sender_id - - challenger_id - - observers - - recipient_id - HcSummaryStatsResult: - type: object - properties: - hc_summary_stats: - $ref: '#/components/schemas/HCSummaryStats' - example: - hc_summary_stats: - no_of_invalid_evaluation_observed_by_observers: 17085067897739032 - no_of_invalid_signatures_observed_by_observers: 1070531802164886396 - no_of_slow_responses_observed_by_observers: 2452954398688763778 - total_challenges_evaluated_by_challenger: 1497037936453433297 - total_challenges_issued: 5146044089880070113 - total_challenges_processed_by_recipient: 5356106859537814149 - total_challenges_verified: 5844922895958038468 - required: - - hc_summary_stats - Image: - type: object - properties: - expires_in: - type: string - description: Image expiration - example: 2006-01-02T15:04:05Z07:00 - format: date-time - image_id: - type: string - description: Uploaded image ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - required_preburn_amount: - type: number - description: The amount that's required to be preburned - default: 1 - example: 20 - format: double - minimum: 1e-05 - total_estimated_fee: - type: number - description: Estimated fee - default: 1 - example: 100 - format: double - minimum: 1e-05 - example: - expires_in: 2006-01-02T15:04:05Z07:00 - image_id: VK7mpAqZ - required_preburn_amount: 20 - total_estimated_fee: 100 - required: - - image_id - - expires_in - - total_estimated_fee - ImageRes: - type: object - properties: - estimated_fee: - type: number - description: Estimated fee - default: 1 - example: 100 - format: double - minimum: 1e-05 - expires_in: - type: string - description: Image expiration - example: 2006-01-02T15:04:05Z07:00 - format: date-time - image_id: - type: string - description: Uploaded image ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - example: - estimated_fee: 100 - expires_in: 2006-01-02T15:04:05Z07:00 - image_id: VK7mpAqZ - required: - - image_id - - expires_in - - estimated_fee - InternetRareness: - type: object - properties: - alternative_rare_on_internet_dict_as_json_compressed_b64: - type: string - description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Ipsam inventore est. - earliest_available_date_of_internet_results: - type: string - description: Earliest Available Date of Internet Results - example: Aut voluptates et beatae consequatur. - min_number_of_exact_matches_in_page: - type: integer - description: Minimum Number of Exact Matches on Page - example: 3900146870 - format: int32 - rare_on_internet_graph_json_compressed_b64: - type: string - description: Base64 Compressed JSON of Rare On Internet Graph - example: Dolores et. - rare_on_internet_summary_table_as_json_compressed_b64: - type: string - description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Voluptatum sed mollitia sint. - example: - alternative_rare_on_internet_dict_as_json_compressed_b64: Numquam et. - earliest_available_date_of_internet_results: Ut laboriosam aut ratione voluptatem. - min_number_of_exact_matches_in_page: 4281481948 - rare_on_internet_graph_json_compressed_b64: Ex sed. - rare_on_internet_summary_table_as_json_compressed_b64: Voluptatem aliquid aspernatur. - MetricsResult: - type: object - properties: - self_healing_execution_events_stats: - $ref: '#/components/schemas/SHExecutionStats' - self_healing_trigger_events_stats: - type: array - items: - $ref: '#/components/schemas/SHTriggerStats' - description: Self-healing trigger stats - example: - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - example: - self_healing_execution_events_stats: - total_file_healing_failed: 5551622164662787660 - total_files_healed: 8671724886982383594 - total_reconstruction_not_required_evaluations_approved: 3509617877318915873 - total_reconstruction_required_evaluations_approved: 2598935111695686044 - total_reconstruction_required_evaluations_not_approved: 645871039112296182 - total_reconstruction_required_hash_mismatch: 6198218032159021896 - total_reconstructions_not_required_evaluations_not_approved: 6224481363842689139 - total_self_healing_events_accepted: 5676342644268881237 - total_self_healing_events_acknowledged: 305624170386109632 - total_self_healing_events_evaluations_unverified: 1687102203985295374 - total_self_healing_events_evaluations_verified: 7201039114224972892 - total_self_healing_events_issued: 7624509276581647432 - total_self_healing_events_rejected: 8106553798825109777 - self_healing_trigger_events_stats: - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - - list_of_nodes: Nesciunt autem vel est. - nodes_offline: 4186693389945997111 - total_files_identified: 5916702575799384876 - total_tickets_identified: 3422563547898111768 - trigger_id: Accusamus cumque voluptatem exercitationem ab. - required: - - self_healing_trigger_events_stats - - self_healing_execution_events_stats - NftDetail: - type: object - properties: - alt_rare_on_internet_dict_json_b64: - type: string - description: Base64 Compressed Json of Alternative Rare On Internet Dict - example: Voluptatibus ut qui qui eos. - copies: - type: integer - description: Number of copies - default: 1 - example: 1 - format: int64 - minimum: 1 - maximum: 1000 - creator_name: - type: string - description: Name of the artist - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Artist's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: Artist website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - drawing_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - earliest_date_of_results: - type: string - description: Earliest Available Date of Internet Results - example: Repudiandae eos voluptatibus voluptas laudantium dolor. - green_address: - type: boolean - description: Green address - example: true - hentai_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - is_likely_dupe: - type: boolean - description: Is this image likely a duplicate of another known image - example: false - is_rare_on_internet: - type: boolean - description: is this nft rare on the internet - example: false - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - min_num_exact_matches_on_page: - type: integer - description: Minimum Number of Exact Matches on Page - example: 1095823983 - format: int32 - neutral_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - nsfw_score: - type: number - description: NSFW Average score - example: 1 - format: float - minimum: 0 - maximum: 1 - porn_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - preview_thumbnail: - type: string - description: Preview Image - example: - - 80 - - 97 - - 114 - - 105 - - 97 - - 116 - - 117 - - 114 - - 32 - - 101 - - 97 - - 32 - - 101 - - 111 - - 115 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 101 - - 97 - - 113 - - 117 - - 101 - - 32 - - 105 - - 115 - - 116 - - 101 - - 32 - - 97 - - 116 - - 46 - format: binary - rare_on_internet_graph_json_b64: - type: string - description: Base64 Compressed JSON of Rare On Internet Graph - example: Nostrum laudantium ea dolores occaecati incidunt. - rare_on_internet_summary_table_json_b64: - type: string - description: Base64 Compressed JSON Table of Rare On Internet Summary - example: Quae necessitatibus quia amet necessitatibus est. - rareness_score: - type: number - description: Average pastel rareness score - example: 1 - format: float - minimum: 0 - maximum: 1 - royalty: - type: number - description: how much artist should get on all future resales - example: 0.3989923141701758 - format: double - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - sexy_nsfw_score: - type: number - description: nsfw score - example: 1 - format: float - minimum: 0 - maximum: 1 - storage_fee: - type: integer - description: Storage fee % - example: 100 - format: int64 - thumbnail_1: - type: string - description: Thumbnail_1 image - example: - - 73 - - 100 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 105 - - 111 - - 115 - - 97 - - 109 - - 32 - - 109 - - 111 - - 108 - - 101 - - 115 - - 116 - - 105 - - 97 - - 115 - - 32 - - 98 - - 108 - - 97 - - 110 - - 100 - - 105 - - 116 - - 105 - - 105 - - 115 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 32 - - 97 - - 108 - - 105 - - 113 - - 117 - - 105 - - 100 - - 32 - - 99 - - 111 - - 110 - - 115 - - 101 - - 113 - - 117 - - 97 - - 116 - - 117 - - 114 - - 46 - format: binary - thumbnail_2: - type: string - description: Thumbnail_2 image - example: - - 69 - - 97 - - 32 - - 118 - - 105 - - 116 - - 97 - - 101 - - 46 - format: binary - title: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - version: - type: integer - description: version - example: 1 - format: int64 - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - example: - alt_rare_on_internet_dict_json_b64: Et hic sed deleniti repellendus. - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - drawing_nsfw_score: 1 - earliest_date_of_results: Enim perspiciatis maxime asperiores. - green_address: true - hentai_nsfw_score: 1 - is_likely_dupe: false - is_rare_on_internet: false - keywords: Renaissance, sfumato, portrait - min_num_exact_matches_on_page: 1288258079 - neutral_nsfw_score: 1 - nsfw_score: 1 - porn_nsfw_score: 1 - preview_thumbnail: - - 82 - - 101 - - 112 - - 114 - - 101 - - 104 - - 101 - - 110 - - 100 - - 101 - - 114 - - 105 - - 116 - - 32 - - 115 - - 101 - - 100 - - 46 - rare_on_internet_graph_json_b64: Vero optio maiores hic provident recusandae rem. - rare_on_internet_summary_table_json_b64: Quia recusandae ipsam est quia incidunt. - rareness_score: 1 - royalty: 0.36445655653960873 - series_name: Famous artist - sexy_nsfw_score: 1 - storage_fee: 100 - thumbnail_1: - - 83 - - 117 - - 115 - - 99 - - 105 - - 112 - - 105 - - 116 - - 32 - - 101 - - 115 - - 115 - - 101 - - 32 - - 110 - - 105 - - 115 - - 105 - - 32 - - 97 - - 112 - - 101 - - 114 - - 105 - - 97 - - 109 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 101 - - 97 - - 32 - - 101 - - 120 - - 112 - - 108 - - 105 - - 99 - - 97 - - 98 - - 111 - - 46 - thumbnail_2: - - 81 - - 117 - - 105 - - 97 - - 32 - - 101 - - 97 - - 32 - - 111 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 100 - - 32 - - 109 - - 97 - - 103 - - 110 - - 105 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - version: 1 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - rareness_score - - nsfw_score - - is_likely_dupe - - is_rare_on_internet - - title - - description - - creator_name - - copies - - creator_pastelid - - txid - NftRegisterPayload: - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - key: - type: string - description: Passphrase of the owner's PastelID - example: Basic abcdef12345 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Consequatur voluptates voluptas qui commodi deleniti qui. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/components/schemas/ThumbnailcoordinateResponseBody' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: Request of the registration NFT - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Minima et eligendi fuga repudiandae beatae laudantium. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - - key - NftSearchResult: - type: object - properties: - match_index: - type: integer - description: Sort index of the match based on score.This must be used to sort results on UI. - example: 8815865718703222196 - format: int64 - matches: - type: array - items: - $ref: '#/components/schemas/FuzzyMatch' - description: Match result details - example: - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - nft: - $ref: '#/components/schemas/NftSummary' - example: - match_index: 914775292025259545 - matches: - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - - field_type: art_title - matched_indexes: - - 3612816769359928583 - - 2434896289749192084 - - 6872177758464281011 - score: 3987001657133176801 - str: Corrupti natus sit velit consequatur. - nft: - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - is_likely_dupe: false - keywords: Renaissance, sfumato, portrait - nsfw_score: 1 - rareness_score: 1 - series_name: Famous artist - thumbnail_1: - - 82 - - 97 - - 116 - - 105 - - 111 - - 110 - - 101 - - 32 - - 101 - - 115 - - 116 - - 32 - - 102 - - 97 - - 99 - - 105 - - 108 - - 105 - - 115 - - 46 - thumbnail_2: - - 78 - - 117 - - 108 - - 108 - - 97 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 117 - - 109 - - 32 - - 113 - - 117 - - 111 - - 115 - - 32 - - 118 - - 101 - - 108 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - nft - - matches - - match_index - NftSummary: - type: object - properties: - copies: - type: integer - description: Number of copies - default: 1 - example: 1 - format: int64 - minimum: 1 - maximum: 1000 - creator_name: - type: string - description: Name of the artist - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Artist's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: Artist website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - is_likely_dupe: - type: boolean - description: Is this image likely a duplicate of another known image - example: false - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - nsfw_score: - type: number - description: NSFW Average score - example: 1 - format: float - minimum: 0 - maximum: 1 - rareness_score: - type: number - description: Average pastel rareness score - example: 1 - format: float - minimum: 0 - maximum: 1 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - thumbnail_1: - type: string - description: Thumbnail_1 image - example: - - 81 - - 117 - - 97 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 101 - - 115 - - 32 - - 97 - - 112 - - 101 - - 114 - - 105 - - 97 - - 109 - - 46 - format: binary - thumbnail_2: - type: string - description: Thumbnail_2 image - example: - - 82 - - 101 - - 109 - - 32 - - 101 - - 116 - - 32 - - 117 - - 116 - - 32 - - 113 - - 117 - - 111 - - 100 - - 46 - format: binary - title: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - description: NFT response - example: - copies: 1 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - is_likely_dupe: false - keywords: Renaissance, sfumato, portrait - nsfw_score: 1 - rareness_score: 1 - series_name: Famous artist - thumbnail_1: - - 83 - - 117 - - 110 - - 116 - - 32 - - 105 - - 112 - - 115 - - 97 - - 109 - - 32 - - 99 - - 117 - - 109 - - 113 - - 117 - - 101 - - 32 - - 114 - - 101 - - 114 - - 117 - - 109 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 101 - - 120 - - 101 - - 114 - - 99 - - 105 - - 116 - - 97 - - 116 - - 105 - - 111 - - 110 - - 101 - - 109 - - 46 - thumbnail_2: - - 79 - - 112 - - 116 - - 105 - - 111 - - 32 - - 115 - - 105 - - 116 - - 32 - - 101 - - 97 - - 114 - - 117 - - 109 - - 46 - title: Mona Lisa - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - title - - description - - creator_name - - copies - - creator_pastelid - - txid - ObserverEvaluationData: - type: object - properties: - block: - type: integer - description: Block - example: 2022086719 - format: int32 - is_challenge_timestamp_ok: - type: boolean - description: IsChallengeTimestampOK - example: true - is_challenger_signature_ok: - type: boolean - description: IsChallengerSignatureOK - example: true - is_evaluation_result_ok: - type: boolean - description: IsEvaluationResultOK - example: false - is_evaluation_timestamp_ok: - type: boolean - description: IsEvaluationTimestampOK - example: true - is_process_timestamp_ok: - type: boolean - description: IsProcessTimestampOK - example: true - is_recipient_signature_ok: - type: boolean - description: IsRecipientSignatureOK - example: false - merkelroot: - type: string - description: Merkelroot - example: Minus repellendus quaerat explicabo molestiae dolorem. - reason: - type: string - description: Reason - example: Fuga dolorem ea reprehenderit quia. - timestamp: - type: string - description: Timestamp - example: Accusamus veniam. - true_hash: - type: string - description: TrueHash - example: Dicta explicabo aperiam consequatur. - description: Data of Observer's evaluation - example: - block: 1828914406 - is_challenge_timestamp_ok: true - is_challenger_signature_ok: true - is_evaluation_result_ok: false - is_evaluation_timestamp_ok: false - is_process_timestamp_ok: false - is_recipient_signature_ok: true - merkelroot: Esse voluptatem quibusdam nihil. - reason: Nam aut. - timestamp: Porro eius dolorem est. - true_hash: Consequatur iusto repudiandae reprehenderit est. - required: - - timestamp - - is_challenge_timestamp_ok - - is_process_timestamp_ok - - is_evaluation_timestamp_ok - - is_recipient_signature_ok - - is_challenger_signature_ok - - is_evaluation_result_ok - - true_hash - RegisterCollectionRequestBody: - type: object - properties: - app_pastelid: - type: string - description: App PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - collection_item_copy_count: - type: integer - description: item copy count in the collection - default: 1 - example: 10 - format: int64 - minimum: 1 - maximum: 1000 - collection_name: - type: string - description: name of the collection - example: galaxies - green: - type: boolean - description: green - default: false - example: false - item_type: - type: string - description: type of items, store by collection - example: sense - enum: - - sense - - nft - list_of_pastelids_of_authorized_contributors: - type: array - items: - type: string - example: Sunt officiis magnam ea. - description: list of authorized contributors - example: - - apple - - banana - - orange - max_collection_entries: - type: integer - description: max no of entries in the collection - example: 5000 - format: int64 - minimum: 1 - maximum: 10000 - max_permitted_open_nsfw_score: - type: number - description: max open nfsw score sense and nft items can have - example: 0.5 - format: double - minimum: 0 - maximum: 1 - minimum_similarity_score_to_first_entry_in_collection: - type: number - description: min similarity for 1st entry to have - example: 0.5 - format: double - minimum: 0 - maximum: 1 - no_of_days_to_finalize_collection: - type: integer - description: no of days to finalize collection - default: 7 - example: 5 - format: int64 - minimum: 1 - maximum: 7 - royalty: - type: number - description: royalty fee - default: 0 - example: 2.32 - format: double - minimum: 0 - maximum: 20 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 35 - example: - app_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - collection_item_copy_count: 10 - collection_name: galaxies - green: false - item_type: sense - list_of_pastelids_of_authorized_contributors: - - apple - - banana - - orange - max_collection_entries: 5000 - max_permitted_open_nsfw_score: 0.5 - minimum_similarity_score_to_first_entry_in_collection: 0.5 - no_of_days_to_finalize_collection: 5 - royalty: 2.32 - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - required: - - collection_name - - item_type - - list_of_pastelids_of_authorized_contributors - - max_collection_entries - - max_permitted_open_nsfw_score - - minimum_similarity_score_to_first_entry_in_collection - - app_pastelid - - spendable_address - RegisterCollectionResponse: - type: object - properties: - task_id: - type: string - description: Uploaded file ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - example: - task_id: VK7mpAqZ - required: - - task_id - RegisterRequestBody: - type: object - properties: - burn_txid: - type: string - description: Burn transaction ID - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - collection_act_txid: - type: string - description: 'Act Collection TxID to add given ticket in collection ' - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: - type: string - description: Name of the NFT creator - example: Leonardo da Vinci - maxLength: 256 - creator_pastelid: - type: string - description: Creator's PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - creator_website_url: - type: string - description: NFT creator website URL - example: https://www.leonardodavinci.net - maxLength: 256 - description: - type: string - description: Description of the NFT - example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - maxLength: 1024 - green: - type: boolean - description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees - example: false - image_id: - type: string - description: Uploaded image ID - example: VK7mpAqZ - minLength: 8 - maxLength: 8 - issued_copies: - type: integer - description: Number of copies issued - example: 1 - format: int64 - maximum: 1000 - keywords: - type: string - description: Keywords - example: Renaissance, sfumato, portrait - maxLength: 256 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - maximum_fee: - type: number - description: Used to find a suitable masternode with a fee equal or less - default: 1 - example: 100 - format: double - minimum: 1e-05 - name: - type: string - description: Name of the NFT - example: Mona Lisa - maxLength: 256 - open_api_group_id: - type: string - description: OpenAPI GroupID string - default: PASTEL - example: Quis sit et consectetur quisquam repellat sequi. - royalty: - type: number - description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT - example: 12 - format: double - maximum: 20 - series_name: - type: string - description: Series name - example: Famous artist - maxLength: 256 - spendable_address: - type: string - description: Spendable address - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 36 - thumbnail_coordinate: - $ref: '#/components/schemas/Thumbnailcoordinate' - youtube_url: - type: string - description: NFT creation video youtube URL - example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - maxLength: 128 - example: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - image_id: VK7mpAqZ - issued_copies: 1 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Esse non impedit. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - required: - - image_id - - creator_name - - name - - creator_pastelid - - spendable_address - - maximum_fee - RegisterResult: - type: object - properties: - task_id: - type: string - description: Task ID of the registration process - example: n6Qn6TFM - minLength: 8 - maxLength: 8 - example: - task_id: n6Qn6TFM - required: - - task_id - RegisterTaskResponseBody: - type: object - properties: - id: - type: string - description: JOb ID of the registration process - example: n6Qn6TFM - minLength: 8 - maxLength: 8 - states: - type: array - items: - $ref: '#/components/schemas/TaskState' - description: List of states from the very beginning of the process - example: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: - type: string - description: Status of the registration process - example: Task Started - enum: - - Task Started - - Connected - - Validated Duplicate Reg Tickets - - Validating Burn Txn - - Burn Txn Validated - - Image Probed - - Image And Thumbnail Uploaded - - Status Gen ReptorQ Symbols - - Preburn Registration Fee - - Downloaded - - Request Accepted - - Request Registered - - Request Activated - - Error Setting up mesh of supernodes - - Error Sending Reg Metadata - - Error Uploading Image - - Error Converting Image to Bytes - - Error Encoding Image - - Error Creating Ticket - - Error Signing Ticket - - Error Uploading Ticket - - Error Activating Ticket - - Error Probing Image - - Error checking dd-server availability before probe image - - Error Generating DD and Fingerprint IDs - - Error comparing suitable storage fee with task request maximum fee - - Error balance not sufficient - - Error getting hash of the image - - Error sending signed ticket to SNs - - Error checking balance - - Error burning reg fee to get reg ticket id - - Error validating reg ticket txn id - - Error validating activate ticket txn id - - Error Insufficient Fee - - Error Signatures Dont Match - - Error Fingerprints Dont Match - - Error ThumbnailHashes Dont Match - - Error GenRaptorQ Symbols Failed - - Error File Don't Match - - Error Not Enough SuperNode - - Error Find Responding SNs - - Error Not Enough Downloaded Filed - - Error Download Failed - - Error Invalid Burn TxID - - Task Failed - - Task Rejected - - Task Completed - ticket: - $ref: '#/components/schemas/NftRegisterPayload' - txid: - type: string - description: txid - example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - minLength: 64 - maxLength: 64 - description: RegisterTaskResponseBody result type (default view) - example: - id: n6Qn6TFM - states: - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - - date: 2006-01-02T15:04:05Z07:00 - status: Task Started - status: Task Started - ticket: - burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - creator_name: Leonardo da Vinci - creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - creator_website_url: https://www.leonardodavinci.net - description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. - green: false - issued_copies: 1 - key: Basic abcdef12345 - keywords: Renaissance, sfumato, portrait - make_publicly_accessible: false - maximum_fee: 100 - name: Mona Lisa - open_api_group_id: Ut eos et quos autem. - royalty: 12 - series_name: Famous artist - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - thumbnail_coordinate: - bottom_right_x: 640 - bottom_right_y: 480 - top_left_x: 0 - top_left_y: 0 - youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 - txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - required: - - id - - status - - ticket - Registration: - type: object - properties: - files: - type: array - items: - $ref: '#/components/schemas/File' - description: List of files - example: - - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. - is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. - registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. - - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. - is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. - registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. - example: - files: - - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. - is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. - registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. - - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. - is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. - registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. - - activation_attempts: - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - - activation_attempt_at: "1976-01-17T20:08:30Z" - error_message: Adipisci vero ut provident. - file_id: Animi non. - id: 8187970716996098639 - is_successful: true - activation_txid: Voluptatem aliquam molestias. - base_file_id: Dignissimos id dolorem et totam. - burn_txn_id: Repellat commodi. - cascade_metadata_ticket_id: Inventore molestias perferendis unde qui qui dicta. - done_block: 649100778871101980 - file_id: Inventore illo. - file_index: Qui eum et dolorum esse dicta aut. - hash_of_original_big_file: Ipsa deserunt qui velit quasi quia. - is_concluded: true - name_of_original_big_file_with_ext: Officia quis. - reg_txid: Numquam voluptas. - registration_attempts: - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - - error_message: Consectetur quas. - file_id: Veniam accusantium. - finished_at: "1999-11-22T20:03:19Z" - id: 8874338336868617 - is_successful: false - processor_sns: Sit aliquam dolorem deserunt tenetur distinctio voluptas. - reg_started_at: "2006-02-20T22:03:54Z" - req_amount: 0.8217214546342201 - req_burn_txn_amount: 0.0062028958461957965 - size_of_original_big_file: 0.8474169125149866 - start_block: 256891858 - task_id: Et autem. - upload_timestamp: "1989-07-01T07:51:12Z" - uuid_key: Doloribus alias qui est. - required: - - files - RegistrationAttempt: - type: object - properties: - error_message: - type: string - description: Error Message - example: Voluptatem consequatur architecto possimus. - file_id: - type: string - description: File ID - example: Qui incidunt velit. - finished_at: - type: string - description: Finished At in datetime format - example: "2003-02-01T10:02:34Z" - format: date-time - id: - type: integer - description: ID - example: 1612055692617853928 - format: int64 - is_successful: - type: boolean - description: Indicates if the registration was successful - example: false - processor_sns: - type: string - description: Processor SNS - example: Omnis ipsam illum. - reg_started_at: - type: string - description: Registration Started At in datetime format - example: "2012-05-14T04:22:17Z" - format: date-time - example: - error_message: Eum voluptatem hic consequatur qui veritatis. - file_id: Aut libero nobis qui sit. - finished_at: "1996-11-10T22:28:46Z" - id: 5895971488814617698 - is_successful: true - processor_sns: Officia consequuntur sequi itaque doloremque qui qui. - reg_started_at: "1998-07-10T20:17:43Z" - required: - - id - - file_id - - reg_started_at - - finished_at - RespondedTicket: - type: object - properties: - is_reconstruction_required: - type: boolean - example: true - missing_keys: - type: array - items: - type: string - example: Quis adipisci amet voluptas nisi explicabo. - example: - - In debitis quia atque molestias. - - Asperiores culpa sunt sit. - - Similique porro voluptatem cum consequatur ut et. - reconstructed_file_hash: - type: string - example: - - 65 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 101 - - 120 - - 32 - - 114 - - 101 - - 114 - - 117 - - 109 - - 32 - - 113 - - 117 - - 105 - - 32 - - 113 - - 117 - - 97 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 105 - - 110 - - 46 - format: binary - ticket_type: - type: string - example: Doloremque vel doloremque facere. - tx_id: - type: string - example: In voluptatem sed enim impedit. - example: - is_reconstruction_required: false - missing_keys: - - Iure aperiam ut sapiente. - - Quaerat est quae architecto deleniti. - - In officiis aspernatur deserunt. - - Ut officia. - reconstructed_file_hash: - - 73 - - 117 - - 115 - - 116 - - 111 - - 32 - - 101 - - 120 - - 99 - - 101 - - 112 - - 116 - - 117 - - 114 - - 105 - - 32 - - 108 - - 97 - - 98 - - 111 - - 114 - - 105 - - 111 - - 115 - - 97 - - 109 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 97 - - 99 - - 99 - - 117 - - 115 - - 97 - - 110 - - 116 - - 105 - - 117 - - 109 - - 46 - ticket_type: Cum dolor. - tx_id: Alias quo amet voluptatem. - ResponseData: - type: object - properties: - block: - type: integer - description: Block - example: 1830926455 - format: int32 - hash: - type: string - description: Hash - example: Et fuga quos odio. - merkelroot: - type: string - description: Merkelroot - example: Est amet labore rerum consequuntur numquam autem. - timestamp: - type: string - description: Timestamp - example: Et culpa doloremque id corrupti minima amet. - description: Data of response - example: - block: 1743298666 - hash: Sed reprehenderit harum quas ab quaerat. - merkelroot: Vero laborum sunt tenetur exercitationem et reprehenderit. - timestamp: Nulla reiciendis sit. - required: - - timestamp - RestoreFile: - type: object - properties: - activated_volumes: - type: integer - description: Total volumes that are activated - example: 806571868897374333 - format: int64 - registered_volumes: - type: integer - description: Total registered volumes - example: 7545780460008396473 - format: int64 - total_volumes: - type: integer - description: Total volumes of selected file - example: 1665300231075412669 - format: int64 - volumes_activated_in_recovery_flow: - type: integer - description: Total volumes that are activated in restore process - example: 398681028404636651 - format: int64 - volumes_registration_in_progress: - type: integer - description: Total volumes with in-progress registration - example: 1357198289991579544 - format: int64 - volumes_with_pending_registration: - type: integer - description: Total volumes with pending registration - example: 3396363195058332263 - format: int64 - example: - activated_volumes: 5650439815539890343 - registered_volumes: 3031149071443920694 - total_volumes: 7161817749037530316 - volumes_activated_in_recovery_flow: 6024487610152049805 - volumes_registration_in_progress: 5792437328606046464 - volumes_with_pending_registration: 4365828140604197761 - required: - - total_volumes - - registered_volumes - - volumes_with_pending_registration - - volumes_registration_in_progress - - activated_volumes - - volumes_activated_in_recovery_flow - RestoreRequestBody: - type: object - properties: - app_pastelId: - type: string - description: App PastelID - example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - pattern: ^[a-zA-Z0-9]+$ - minLength: 86 - maxLength: 86 - make_publicly_accessible: - type: boolean - description: To make it publicly accessible - default: false - example: false - spendable_address: - type: string - description: 'Address to use for registration fee ' - example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - pattern: ^[a-zA-Z0-9]+$ - minLength: 35 - maxLength: 35 - example: - app_pastelId: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS - make_publicly_accessible: false - spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j - required: - - app_pastelId - SHExecutionStats: - type: object - properties: - total_file_healing_failed: - type: integer - description: Total number of file healings that failed - example: 879295683357536917 - format: int64 - total_files_healed: - type: integer - description: Total number of files healed - example: 561289090697403675 - format: int64 - total_reconstruction_not_required_evaluations_approved: - type: integer - description: Total number of reconstructions not required approved by verifier nodes - example: 3740670154458596332 - format: int64 - total_reconstruction_required_evaluations_approved: - type: integer - description: Total number of reconstructions approved by verifier nodes - example: 7082670242566329789 - format: int64 - total_reconstruction_required_evaluations_not_approved: - type: integer - description: Total number of reconstructions not approved by verifier nodes - example: 1139166420317043116 - format: int64 - total_reconstruction_required_hash_mismatch: - type: integer - description: Total number of reconstructions required with hash mismatch - example: 4987601387876620942 - format: int64 - total_reconstructions_not_required_evaluations_not_approved: - type: integer - description: Total number of reconstructions not required evaluation not approved by verifier nodes - example: 2088254083994164728 - format: int64 - total_self_healing_events_accepted: - type: integer - description: Total number of events accepted (healer node evaluated that reconstruction is required) - example: 8188130298552292266 - format: int64 - total_self_healing_events_acknowledged: - type: integer - description: Total number of events acknowledged by the healer node - example: 5951863253232021290 - format: int64 - total_self_healing_events_evaluations_unverified: - type: integer - description: Total number of challenge evaluations unverified by verifier nodes - example: 3799024174070481865 - format: int64 - total_self_healing_events_evaluations_verified: - type: integer - description: Total number of challenges verified - example: 6564643128404903284 - format: int64 - total_self_healing_events_issued: - type: integer - description: Total number of self-healing events issued - example: 2700767640222453508 - format: int64 - total_self_healing_events_rejected: - type: integer - description: Total number of events rejected (healer node evaluated that reconstruction is not required) - example: 587181744822064718 - format: int64 - description: Self-healing execution stats - example: - total_file_healing_failed: 4132569794906174981 - total_files_healed: 299449972248189702 - total_reconstruction_not_required_evaluations_approved: 3948085026758093264 - total_reconstruction_required_evaluations_approved: 7890445729771450423 - total_reconstruction_required_evaluations_not_approved: 3761061347061502409 - total_reconstruction_required_hash_mismatch: 8670542380715302054 - total_reconstructions_not_required_evaluations_not_approved: 4323782701548225820 - total_self_healing_events_accepted: 6384457494329020345 - total_self_healing_events_acknowledged: 1502303318195151610 - total_self_healing_events_evaluations_unverified: 611683296482964614 - total_self_healing_events_evaluations_verified: 1700215197640479597 - total_self_healing_events_issued: 2872196506620467630 - total_self_healing_events_rejected: 3503350653128617398 - required: - - total_self_healing_events_issued - - total_self_healing_events_acknowledged - - total_self_healing_events_rejected - - total_self_healing_events_accepted - - total_self_healing_events_evaluations_verified - - total_reconstruction_required_evaluations_approved - - total_reconstruction_not_required_evaluations_approved - - total_self_healing_events_evaluations_unverified - - total_reconstruction_required_evaluations_not_approved - - total_reconstructions_not_required_evaluations_not_approved - - total_files_healed - - total_file_healing_failed - SHTriggerStats: - type: object - properties: - list_of_nodes: - type: string - description: Comma-separated list of offline nodes - example: Amet quaerat blanditiis consequatur et perferendis. - nodes_offline: - type: integer - description: Number of nodes offline - example: 7038159273472894165 - format: int64 - total_files_identified: - type: integer - description: Total number of files identified for self-healing - example: 4928475190187598797 - format: int64 - total_tickets_identified: - type: integer - description: Total number of tickets identified for self-healing - example: 5291546525723281204 - format: int64 - trigger_id: - type: string - description: Unique identifier for the trigger - example: Dolorum atque sequi. - description: Self-healing trigger stats - example: - list_of_nodes: Et ratione fuga nobis incidunt est. - nodes_offline: 2634691086720156436 - total_files_identified: 4911447140705622375 - total_tickets_identified: 7697835316004070642 - trigger_id: Non explicabo. - required: - - trigger_id - - nodes_offline - - list_of_nodes - - total_files_identified - - total_tickets_identified - SelfHealingChallengeData: - type: object - properties: - block: - type: integer - example: 1677968800 - format: int32 - event_tickets: - type: array - items: - $ref: '#/components/schemas/EventTicket' - example: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: - type: string - example: Eveniet iure id corporis et. - nodes_on_watchlist: - type: string - example: Sunt est dolor hic. - timestamp: - type: string - example: In velit suscipit id. - example: - block: 983726503 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Accusantium rerum aspernatur et debitis. - nodes_on_watchlist: Mollitia magni aut molestiae similique. - timestamp: Qui nostrum et harum enim voluptates et. - SelfHealingMessage: - type: object - properties: - data: - $ref: '#/components/schemas/SelfHealingMessageData' - message_type: - type: string - example: Ipsa molestiae. - sender_id: - type: string - example: Repellat enim a ullam qui. - sender_signature: - type: string - example: - - 77 - - 111 - - 108 - - 101 - - 115 - - 116 - - 105 - - 97 - - 115 - - 32 - - 97 - - 115 - - 112 - - 101 - - 114 - - 105 - - 111 - - 114 - - 101 - - 115 - - 32 - - 114 - - 101 - - 105 - - 99 - - 105 - - 101 - - 110 - - 100 - - 105 - - 115 - - 32 - - 113 - - 117 - - 111 - - 115 - - 32 - - 113 - - 117 - - 105 - - 98 - - 117 - - 115 - - 100 - - 97 - - 109 - - 32 - - 113 - - 117 - - 97 - - 115 - - 105 - - 46 - format: binary - trigger_id: - type: string - example: Sit amet eligendi beatae commodi itaque. - example: - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Odio et nihil voluptatum. - sender_id: Dolorum qui accusantium blanditiis voluptas aut fugiat. - sender_signature: - - 83 - - 105 - - 116 - - 32 - - 105 - - 110 - - 99 - - 105 - - 100 - - 117 - - 110 - - 116 - - 46 - trigger_id: Quod autem repellendus fugiat beatae officia voluptatem. - SelfHealingMessageData: - type: object - properties: - challenger_id: - type: string - example: Magni quod architecto ipsa laborum consectetur praesentium. - event_details: - $ref: '#/components/schemas/SelfHealingChallengeData' - recipient_id: - type: string - example: Consequatur vel sed. - response: - $ref: '#/components/schemas/SelfHealingResponseData' - verification: - $ref: '#/components/schemas/SelfHealingVerificationData' - example: - challenger_id: Qui quisquam cum quasi dolores quod. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Modi incidunt dolore dolor a eligendi. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - SelfHealingMessageKV: - type: object - properties: - message_type: - type: string - description: Message type - example: Magnam ipsum corrupti iste sequi. - messages: - type: array - items: - $ref: '#/components/schemas/SelfHealingMessage' - description: Self-healing messages - example: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - example: - message_type: Quasi eveniet harum qui. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - SelfHealingReport: - type: object - properties: - messages: - type: array - items: - $ref: '#/components/schemas/SelfHealingMessageKV' - description: Map of message type to SelfHealingMessages - example: - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. + report: + messages: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + "400": + description: 'BadRequest: Bad Request response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "401": + description: 'Unauthorized: Unauthorized response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "404": + description: 'NotFound: Not Found response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + security: + - api_key_header_Authorization: [] + /self_healing/summary_stats: + get: + tags: + - metrics + summary: Fetches metrics data + description: Fetches metrics data over a specified time range + operationId: metrics#getSummaryStats + parameters: + - name: from + in: query + description: Start time for the metrics data range + allowEmptyValue: true + schema: + type: string + description: Start time for the metrics data range + example: "2023-01-01T00:00:00Z" + format: date-time + example: "2023-01-01T00:00:00Z" + - name: to + in: query + description: End time for the metrics data range + allowEmptyValue: true + schema: + type: string + description: End time for the metrics data range + example: "2023-01-02T00:00:00Z" + format: date-time + example: "2023-01-02T00:00:00Z" + - name: pid + in: query + description: PastelID of the user to fetch metrics for + allowEmptyValue: true + required: true + schema: + type: string + description: PastelID of the user to fetch metrics for + example: jXYJud3rm... + example: jXYJud3rm... + responses: + "200": + description: OK response. + content: + application/json: + schema: + $ref: '#/components/schemas/MetricsResult' + example: + self_healing_execution_events_stats: + total_file_healing_failed: 7768590148358975878 + total_files_healed: 5003517749846764640 + total_reconstruction_not_required_evaluations_approved: 2806992559829453130 + total_reconstruction_required_evaluations_approved: 1107029843099257708 + total_reconstruction_required_evaluations_not_approved: 5899917961438241754 + total_reconstruction_required_hash_mismatch: 7662269731854437673 + total_reconstructions_not_required_evaluations_not_approved: 6465655469488946682 + total_self_healing_events_accepted: 8057201361166306844 + total_self_healing_events_acknowledged: 7507492928430008683 + total_self_healing_events_evaluations_unverified: 5026086393945454809 + total_self_healing_events_evaluations_verified: 7657744171058360435 + total_self_healing_events_issued: 6120797776831447879 + total_self_healing_events_rejected: 4720652167101259254 + self_healing_trigger_events_stats: + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + "400": + description: 'BadRequest: Bad Request response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "401": + description: 'Unauthorized: Unauthorized response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "404": + description: 'NotFound: Not Found response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + security: + - api_key_header_Authorization: [] + /storage_challenges/detailed_logs: + get: + tags: + - StorageChallenge + summary: Fetches storage-challenge reports + description: Fetches storage-challenge reports + operationId: StorageChallenge#getDetailedLogs + parameters: + - name: pid + in: query + description: PastelID of the user to fetch storage-challenge reports for + allowEmptyValue: true + required: true + schema: + type: string + description: PastelID of the user to fetch storage-challenge reports for + example: jXYJud3rm... + example: jXYJud3rm... + - name: challenge_id + in: query + description: ChallengeID of the storage challenge to fetch their logs + allowEmptyValue: true + schema: + type: string + description: ChallengeID of the storage challenge to fetch their logs + example: jXYJ + example: jXYJ + responses: + "200": + description: OK response. + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/StorageMessage' + example: + - challenge: + block: 133233139 + end_index: 3896885101814506590 + file_hash: Asperiores quidem. + merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. + start_index: 1614189715015821619 + timestamp: Molestias neque sed quos voluptate. + challenge_id: Dolorum ex. + challenger_evaluation: + block: 1965065906 + hash: Ratione laborum est omnis sit. + is_verified: false + merkelroot: Alias itaque eveniet cum. + timestamp: Autem libero deserunt aspernatur. + challenger_id: Rerum natus ut beatae sed maiores corporis. + message_type: Necessitatibus sunt. + observer_evaluation: + block: 1126733571 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Placeat mollitia. + reason: Aut dignissimos autem ut velit provident. + timestamp: Repellendus aut. + true_hash: Voluptas asperiores. + observers: + - Qui aperiam id sunt consequatur voluptas voluptatem. + - Voluptatem optio enim iure pariatur quia minus. + - Dicta et natus amet. + - Asperiores et ea. + recipient_id: Qui corrupti neque quod omnis. + response: + block: 1915105945 + hash: Ut quam beatae libero rerum. + merkelroot: Aperiam quo reiciendis corrupti reiciendis. + timestamp: Veritatis accusantium corporis. + sender_id: Laudantium neque ratione sint eum sed ullam. + sender_signature: Autem quia neque adipisci. + - challenge: + block: 133233139 + end_index: 3896885101814506590 + file_hash: Asperiores quidem. + merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. + start_index: 1614189715015821619 + timestamp: Molestias neque sed quos voluptate. + challenge_id: Dolorum ex. + challenger_evaluation: + block: 1965065906 + hash: Ratione laborum est omnis sit. + is_verified: false + merkelroot: Alias itaque eveniet cum. + timestamp: Autem libero deserunt aspernatur. + challenger_id: Rerum natus ut beatae sed maiores corporis. + message_type: Necessitatibus sunt. + observer_evaluation: + block: 1126733571 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Placeat mollitia. + reason: Aut dignissimos autem ut velit provident. + timestamp: Repellendus aut. + true_hash: Voluptas asperiores. + observers: + - Qui aperiam id sunt consequatur voluptas voluptatem. + - Voluptatem optio enim iure pariatur quia minus. + - Dicta et natus amet. + - Asperiores et ea. + recipient_id: Qui corrupti neque quod omnis. + response: + block: 1915105945 + hash: Ut quam beatae libero rerum. + merkelroot: Aperiam quo reiciendis corrupti reiciendis. + timestamp: Veritatis accusantium corporis. + sender_id: Laudantium neque ratione sint eum sed ullam. + sender_signature: Autem quia neque adipisci. + - challenge: + block: 133233139 + end_index: 3896885101814506590 + file_hash: Asperiores quidem. + merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. + start_index: 1614189715015821619 + timestamp: Molestias neque sed quos voluptate. + challenge_id: Dolorum ex. + challenger_evaluation: + block: 1965065906 + hash: Ratione laborum est omnis sit. + is_verified: false + merkelroot: Alias itaque eveniet cum. + timestamp: Autem libero deserunt aspernatur. + challenger_id: Rerum natus ut beatae sed maiores corporis. + message_type: Necessitatibus sunt. + observer_evaluation: + block: 1126733571 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Placeat mollitia. + reason: Aut dignissimos autem ut velit provident. + timestamp: Repellendus aut. + true_hash: Voluptas asperiores. + observers: + - Qui aperiam id sunt consequatur voluptas voluptatem. + - Voluptatem optio enim iure pariatur quia minus. + - Dicta et natus amet. + - Asperiores et ea. + recipient_id: Qui corrupti neque quod omnis. + response: + block: 1915105945 + hash: Ut quam beatae libero rerum. + merkelroot: Aperiam quo reiciendis corrupti reiciendis. + timestamp: Veritatis accusantium corporis. + sender_id: Laudantium neque ratione sint eum sed ullam. + sender_signature: Autem quia neque adipisci. + - challenge: + block: 133233139 + end_index: 3896885101814506590 + file_hash: Asperiores quidem. + merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. + start_index: 1614189715015821619 + timestamp: Molestias neque sed quos voluptate. + challenge_id: Dolorum ex. + challenger_evaluation: + block: 1965065906 + hash: Ratione laborum est omnis sit. + is_verified: false + merkelroot: Alias itaque eveniet cum. + timestamp: Autem libero deserunt aspernatur. + challenger_id: Rerum natus ut beatae sed maiores corporis. + message_type: Necessitatibus sunt. + observer_evaluation: + block: 1126733571 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Placeat mollitia. + reason: Aut dignissimos autem ut velit provident. + timestamp: Repellendus aut. + true_hash: Voluptas asperiores. + observers: + - Qui aperiam id sunt consequatur voluptas voluptatem. + - Voluptatem optio enim iure pariatur quia minus. + - Dicta et natus amet. + - Asperiores et ea. + recipient_id: Qui corrupti neque quod omnis. + response: + block: 1915105945 + hash: Ut quam beatae libero rerum. + merkelroot: Aperiam quo reiciendis corrupti reiciendis. + timestamp: Veritatis accusantium corporis. + sender_id: Laudantium neque ratione sint eum sed ullam. + sender_signature: Autem quia neque adipisci. + example: + - challenge: + block: 133233139 + end_index: 3896885101814506590 + file_hash: Asperiores quidem. + merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. + start_index: 1614189715015821619 + timestamp: Molestias neque sed quos voluptate. + challenge_id: Dolorum ex. + challenger_evaluation: + block: 1965065906 + hash: Ratione laborum est omnis sit. + is_verified: false + merkelroot: Alias itaque eveniet cum. + timestamp: Autem libero deserunt aspernatur. + challenger_id: Rerum natus ut beatae sed maiores corporis. + message_type: Necessitatibus sunt. + observer_evaluation: + block: 1126733571 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Placeat mollitia. + reason: Aut dignissimos autem ut velit provident. + timestamp: Repellendus aut. + true_hash: Voluptas asperiores. + observers: + - Qui aperiam id sunt consequatur voluptas voluptatem. + - Voluptatem optio enim iure pariatur quia minus. + - Dicta et natus amet. + - Asperiores et ea. + recipient_id: Qui corrupti neque quod omnis. + response: + block: 1915105945 + hash: Ut quam beatae libero rerum. + merkelroot: Aperiam quo reiciendis corrupti reiciendis. + timestamp: Veritatis accusantium corporis. + sender_id: Laudantium neque ratione sint eum sed ullam. + sender_signature: Autem quia neque adipisci. + - challenge: + block: 133233139 + end_index: 3896885101814506590 + file_hash: Asperiores quidem. + merkelroot: Quidem nostrum laudantium quo qui laboriosam sed. + start_index: 1614189715015821619 + timestamp: Molestias neque sed quos voluptate. + challenge_id: Dolorum ex. + challenger_evaluation: + block: 1965065906 + hash: Ratione laborum est omnis sit. + is_verified: false + merkelroot: Alias itaque eveniet cum. + timestamp: Autem libero deserunt aspernatur. + challenger_id: Rerum natus ut beatae sed maiores corporis. + message_type: Necessitatibus sunt. + observer_evaluation: + block: 1126733571 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Placeat mollitia. + reason: Aut dignissimos autem ut velit provident. + timestamp: Repellendus aut. + true_hash: Voluptas asperiores. + observers: + - Qui aperiam id sunt consequatur voluptas voluptatem. + - Voluptatem optio enim iure pariatur quia minus. + - Dicta et natus amet. + - Asperiores et ea. + recipient_id: Qui corrupti neque quod omnis. + response: + block: 1915105945 + hash: Ut quam beatae libero rerum. + merkelroot: Aperiam quo reiciendis corrupti reiciendis. + timestamp: Veritatis accusantium corporis. + sender_id: Laudantium neque ratione sint eum sed ullam. + sender_signature: Autem quia neque adipisci. + "400": + description: 'BadRequest: Bad Request response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "401": + description: 'Unauthorized: Unauthorized response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "404": + description: 'NotFound: Not Found response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + security: + - api_key_header_Authorization: [] + /storage_challenges/summary_stats: + get: + tags: + - StorageChallenge + summary: Fetches summary stats + description: Fetches summary stats data over a specified time range + operationId: StorageChallenge#getSummaryStats + parameters: + - name: from + in: query + description: Start time for the metrics data range + allowEmptyValue: true + schema: + type: string + description: Start time for the metrics data range + example: "2023-01-01T00:00:00Z" + format: date-time + example: "2023-01-01T00:00:00Z" + - name: to + in: query + description: End time for the metrics data range + allowEmptyValue: true + schema: + type: string + description: End time for the metrics data range + example: "2023-01-02T00:00:00Z" + format: date-time + example: "2023-01-02T00:00:00Z" + - name: pid + in: query + description: PastelID of the user to fetch metrics for + allowEmptyValue: true + required: true + schema: + type: string + description: PastelID of the user to fetch metrics for + example: jXYJud3rm... + example: jXYJud3rm... + responses: + "200": + description: OK response. + content: + application/json: + schema: + $ref: '#/components/schemas/SummaryStatsResult' + example: + sc_summary_stats: + no_of_invalid_evaluation_observed_by_observers: 5854226055096814600 + no_of_invalid_signatures_observed_by_observers: 4353527834150504494 + no_of_slow_responses_observed_by_observers: 1357252241103533124 + total_challenges_evaluated_by_challenger: 3728835119474173051 + total_challenges_issued: 6647138861710727929 + total_challenges_processed_by_recipient: 5873786866786505808 + total_challenges_verified: 6262794736214513307 + "400": + description: 'BadRequest: Bad Request response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "401": + description: 'Unauthorized: Unauthorized response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "404": + description: 'NotFound: Not Found response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + security: + - api_key_header_Authorization: [] + /userdatas/{pastelid}: + get: + tags: + - userdatas + summary: Returns the detail of Userdata + description: Gets the Userdata detail + operationId: userdatas#getUserdata + parameters: + - name: pastelid + in: path + description: Artist's PastelID + required: true + schema: + type: string + description: Artist's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + responses: + "200": + description: OK response. + content: + application/json: + schema: + $ref: '#/components/schemas/CreateUserdataRequestBody' + example: + avatar_image: + content: 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 + filename: image_name.png + biography: I'm a digital artist based in Paris, France. ... + categories: Manga&Anime,3D,Comics + cover_photo: + content: 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 + filename: image_name.png + facebook_link: https://www.facebook.com/Williams_Scottish + location: New York, US + native_currency: USD + primary_language: en + realname: Williams Scottish + twitter_link: https://www.twitter.com/@Williams_Scottish + user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + user_pastelid_passphrase: qwerasdf1234 + "400": + description: 'BadRequest: Bad Request response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "404": + description: 'NotFound: Not Found response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + /userdatas/create: + post: + tags: + - userdatas + summary: Create new user data + description: Create new user data + operationId: userdatas#createUserdata + requestBody: + required: true + content: + multipart/form-data: + schema: + $ref: '#/components/schemas/CreateUserdataRequestBody' + example: + avatar_image: + content: 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 + filename: image_name.png + biography: I'm a digital artist based in Paris, France. ... + categories: Manga&Anime,3D,Comics + cover_photo: + content: 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 + filename: image_name.png + facebook_link: https://www.facebook.com/Williams_Scottish + location: New York, US + native_currency: USD + primary_language: en + realname: Williams Scottish + twitter_link: https://www.twitter.com/@Williams_Scottish + user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + user_pastelid_passphrase: qwerasdf1234 + responses: + "200": + description: OK response. + content: + application/json: + schema: + $ref: '#/components/schemas/UserdataProcessResult' + example: + avatar_image: "" + biography: "" + categories: "" + cover_photo: "" + detail: All userdata is processed + facebook_link: "" + location: "" + native_currency: "" + primary_language: "" + realname: "" + response_code: 0 + twitter_link: "" + "400": + description: 'BadRequest: Bad Request response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + /userdatas/update: + post: + tags: + - userdatas + summary: Update user data for an existing user + description: Update user data for an existing user + operationId: userdatas#updateUserdata + requestBody: + required: true + content: + multipart/form-data: + schema: + $ref: '#/components/schemas/CreateUserdataRequestBody' + example: + avatar_image: + content: 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 + filename: image_name.png + biography: I'm a digital artist based in Paris, France. ... + categories: Manga&Anime,3D,Comics + cover_photo: + content: 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 + filename: image_name.png + facebook_link: https://www.facebook.com/Williams_Scottish + location: New York, US + native_currency: USD + primary_language: en + realname: Williams Scottish + twitter_link: https://www.twitter.com/@Williams_Scottish + user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + user_pastelid_passphrase: qwerasdf1234 + responses: + "200": + description: OK response. + content: + application/json: + schema: + $ref: '#/components/schemas/UserdataProcessResult' + example: + avatar_image: "" + biography: "" + categories: "" + cover_photo: "" + detail: All userdata is processed + facebook_link: "" + location: "" + native_currency: "" + primary_language: "" + realname: "" + response_code: 0 + twitter_link: "" + "400": + description: 'BadRequest: Bad Request response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' + "500": + description: 'InternalServerError: Internal Server Error response.' + content: + application/vnd.goa.error: + schema: + $ref: '#/components/schemas/Error' +components: + schemas: + ActivationAttempt: + type: object + properties: + activation_attempt_at: + type: string + description: Activation Attempt At in datetime format + example: "2004-03-10T19:54:00Z" + format: date-time + error_message: + type: string + description: Error Message + example: At suscipit iure placeat accusantium id et. + file_id: + type: string + description: File ID + example: Minus ad deleniti reiciendis quis vel animi. + id: + type: integer + description: ID + example: 6635050774088561625 + format: int64 + is_successful: + type: boolean + description: Indicates if the activation was successful + example: true + example: + activation_attempt_at: "1983-01-20T12:08:05Z" + error_message: Animi illum modi voluptate et sunt officiis. + file_id: Consequatur mollitia unde quibusdam enim voluptatem sit. + id: 3750382235025234773 + is_successful: true + required: + - id + - file_id + - activation_attempt_at + AlternativeNSFWScores: + type: object + properties: + drawings: + type: number + description: drawings nsfw score + example: 0.393297 + format: float + hentai: + type: number + description: hentai nsfw score + example: 0.5458527 + format: float + neutral: + type: number + description: neutral nsfw score + example: 0.7422886 + format: float + porn: + type: number + description: porn nsfw score + example: 0.6511306 + format: float + sexy: + type: number + description: sexy nsfw score + example: 0.4401386 + format: float + example: + drawings: 0.7850286 + hentai: 0.9919498 + neutral: 0.8171564 + porn: 0.06300681 + sexy: 0.3325743 + Asset: + type: object + properties: + expires_in: + type: string + description: File expiration + example: 2006-01-02T15:04:05Z07:00 + format: date-time + file_id: + type: string + description: Uploaded file ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + required_preburn_amount: + type: number + description: The amount that's required to be preburned + default: 1 + example: 20 + format: double + minimum: 1e-05 + total_estimated_fee: + type: number + description: Estimated fee + default: 1 + example: 100 + format: double + minimum: 1e-05 + example: + expires_in: 2006-01-02T15:04:05Z07:00 + file_id: VK7mpAqZ + required_preburn_amount: 20 + total_estimated_fee: 100 + required: + - file_id + - expires_in + - total_estimated_fee + AssetV2: + type: object + properties: + file_id: + type: string + description: Uploaded file ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + required_preburn_transaction_amounts: + type: array + items: + type: number + example: 0.36694836852401885 + format: double + description: The amounts that's required to be preburned - one per transaction + example: + - 0.5377481047121024 + - 0.881792511024194 + total_estimated_fee: + type: number + description: Estimated fee + default: 1 + example: 100 + format: double + minimum: 1e-05 + example: + file_id: VK7mpAqZ + required_preburn_transaction_amounts: + - 0.8783134220396522 + - 0.5268771209243681 + total_estimated_fee: 100 + required: + - file_id + - total_estimated_fee + ChallengeData: + type: object + properties: + block: + type: integer + description: Block + example: 1347335611 + format: int32 + end_index: + type: integer + description: End index + example: 1443664336129365015 + format: int64 + file_hash: + type: string + description: File hash + example: Unde excepturi corrupti et et. + merkelroot: + type: string + description: Merkelroot + example: Quas ab quaerat illo nulla reiciendis. + start_index: + type: integer + description: Start index + example: 6344929330784324471 + format: int64 + timestamp: + type: string + description: Timestamp + example: Explicabo sunt saepe voluptatem autem. + description: Data of challenge + example: + block: 151081210 + end_index: 2137971282208015444 + file_hash: Temporibus vitae aliquam incidunt ut autem. + merkelroot: Et consequatur asperiores corporis. + start_index: 5883693332615049783 + timestamp: Distinctio tenetur nostrum doloribus. + required: + - timestamp + - file_hash + - start_index + - end_index + ChallengesScores: + type: object + properties: + health_check_challenge_score: + type: number + description: Total accumulated HC challenge score + example: 0.9703800933093893 + format: double + ip_address: + type: string + description: IPAddress of the node + example: Est occaecati officia. + node_id: + type: string + description: Specific node id + example: Voluptatum explicabo quaerat aspernatur sit illum. + storage_challenge_score: + type: number + description: Total accumulated SC challenge score + example: 0.0686911122262466 + format: double + description: Combined accumulated scores for HC and SC challenges + example: + health_check_challenge_score: 0.7918354934679862 + ip_address: Similique doloribus placeat itaque rerum architecto. + node_id: Vel sunt minus alias. + storage_challenge_score: 0.686744339486576 + required: + - node_id + - storage_challenge_score + - health_check_challenge_score + CreateUserdataRequestBody: + type: object + properties: + avatar_image: + $ref: '#/components/schemas/UserImageUploadPayload' + biography: + type: string + description: Biography of the user + example: I'm a digital artist based in Paris, France. ... + maxLength: 1024 + categories: + type: string + description: The categories of user's work, separate by , + example: Manga&Anime,3D,Comics + cover_photo: + $ref: '#/components/schemas/UserImageUploadPayload' + facebook_link: + type: string + description: Facebook link of the user + example: https://www.facebook.com/Williams_Scottish + maxLength: 128 + location: + type: string + description: Location of the user + example: New York, US + maxLength: 256 + native_currency: + type: string + description: Native currency of user in ISO 4217 Alphabetic Code + example: USD + minLength: 3 + maxLength: 3 + primary_language: + type: string + description: Primary language of the user, follow ISO 639-2 standard + example: en + maxLength: 30 + realname: + type: string + description: Real name of the user + example: Williams Scottish + maxLength: 256 + twitter_link: + type: string + description: Twitter link of the user + example: https://www.twitter.com/@Williams_Scottish + maxLength: 128 + user_pastelid: + type: string + description: User's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + user_pastelid_passphrase: + type: string + description: Passphrase of the user's PastelID + example: qwerasdf1234 + example: + avatar_image: + content: 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 + filename: image_name.png + biography: I'm a digital artist based in Paris, France. ... + categories: Manga&Anime,3D,Comics + cover_photo: + content: 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 + filename: image_name.png + facebook_link: https://www.facebook.com/Williams_Scottish + location: New York, US + native_currency: USD + primary_language: en + realname: Williams Scottish + twitter_link: https://www.twitter.com/@Williams_Scottish + user_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + user_pastelid_passphrase: qwerasdf1234 + required: + - user_pastelid + - user_pastelid_passphrase + DDFPResultFile: + type: object + properties: + file: + type: string + description: File downloaded + example: Id ut quae. + example: + file: Ut suscipit. + required: + - file + DDServiceOutputFileResult: + type: object + properties: + alternative_nsfw_scores: + $ref: '#/components/schemas/AlternativeNSFWScores' + candidate_image_thumbnail_webp_as_base64_string: + type: string + description: candidate image thumbnail as base64 string + example: Eius dolorem quia. + child_probability: + type: number + description: child probability + example: 0.09279177 + format: float + collection_name_string: + type: string + description: name of the collection + example: Maiores at nisi hic. + cp_probability: + type: number + description: probability of CP + example: 0.8636645 + format: float + creator_name: + type: string + description: name of the creator + example: Doloribus ex. + creator_website: + type: string + description: website of creator + example: Sapiente rerum. + creator_written_statement: + type: string + description: written statement of creator + example: Ut est. + does_not_impact_the_following_collection_strings: + type: string + description: does not impact collection strings + example: Autem velit molestias explicabo natus. + dupe_detection_system_version: + type: string + description: system version of dupe detection + example: Rem rerum qui commodi facere distinctio. + file_type: + type: string + description: type of the file + example: Laboriosam voluptatibus iure natus tenetur error. + group_rareness_score: + type: number + description: rareness score of the group + example: 0.38544258 + format: float + hash_of_candidate_image_file: + type: string + description: hash of candidate image file + example: Temporibus sunt in sit. + image_file_path: + type: string + description: file path of the image + example: Ex molestiae veritatis et eveniet id. + image_fingerprint_of_candidate_image_file: + type: array + items: + type: number + example: 0.9296564369426022 + format: double + description: Image fingerprint of candidate image file + example: + - 0.9257838662558961 + - 0.4210962938546765 + - 0.17243348242039355 + internet_rareness: + $ref: '#/components/schemas/InternetRareness' + is_likely_dupe: + type: boolean + description: is this nft likely a duplicate + example: false + is_pastel_openapi_request: + type: boolean + description: is pastel open API request + example: false + is_rare_on_internet: + type: boolean + description: is this nft rare on the internet + example: false + max_permitted_open_nsfw_score: + type: number + description: max permitted open NSFW score + example: 0.4298777191641779 + format: double + nft_creation_video_youtube_url: + type: string + description: nft creation video youtube url + example: Deserunt sunt quasi tempora et esse molestiae. + nft_keyword_set: + type: string + description: keywords for NFT + example: Non sit nostrum. + nft_series_name: + type: string + description: series name of NFT + example: Rem nisi ut. + nft_title: + type: string + description: title of NFT + example: Tempore dignissimos temporibus. + open_api_group_id_string: + type: string + description: open api group id string + example: Culpa et sequi et et. + open_nsfw_score: + type: number + description: open nsfw score + example: 0.92024887 + format: float + original_file_size_in_bytes: + type: integer + description: original file size in bytes + example: 7816697105492004062 + format: int64 + overall_rareness_score: + type: number + description: pastel rareness score + example: 0.78057414 + format: float + pastel_block_hash_when_request_submitted: + type: string + description: block hash when request submitted + example: In quia ea omnis iste laudantium et. + pastel_block_height_when_request_submitted: + type: string + description: block Height when request submitted + example: Ea animi aut itaque. + pastel_id_of_registering_supernode_1: + type: string + description: pastel id of registering SN1 + example: Et ut veritatis repudiandae facilis optio non. + pastel_id_of_registering_supernode_2: + type: string + description: pastel id of registering SN2 + example: Dignissimos voluptas est eum est enim. + pastel_id_of_registering_supernode_3: + type: string + description: pastel id of registering SN3 + example: Nostrum omnis suscipit enim exercitationem. + pastel_id_of_submitter: + type: string + description: pastel id of the submitter + example: Qui iusto voluptas tenetur est hic adipisci. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: + type: number + description: PCT of top 10 most similar with dupe probe above 25 PCT + example: 0.008753272 + format: float + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: + type: number + description: PCT of top 10 most similar with dupe probe above 33 PCT + example: 0.4484356 + format: float + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: + type: number + description: PCT of top 10 most similar with dupe probe above 50 PCT + example: 0.29624 + format: float + preview_hash: + type: string + description: preview hash of NFT + example: + - 84 + - 101 + - 109 + - 112 + - 111 + - 114 + - 101 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 105 + - 110 + - 118 + - 101 + - 110 + - 116 + - 111 + - 114 + - 101 + - 46 + format: binary + rareness_scores_table_json_compressed_b64: + type: string + description: rareness scores table json compressed b64 + example: Nihil velit numquam ab sint inventore aut. + similarity_score_to_first_entry_in_collection: + type: number + description: similarity score to first entry in collection + example: 0.37307566 + format: float + thumbnail1_hash: + type: string + description: thumbnail1 hash of NFT + example: + - 73 + - 115 + - 116 + - 101 + - 32 + - 101 + - 116 + - 32 + - 113 + - 117 + - 97 + - 101 + - 114 + - 97 + - 116 + - 32 + - 115 + - 105 + - 110 + - 116 + - 32 + - 99 + - 111 + - 110 + - 115 + - 101 + - 113 + - 117 + - 117 + - 110 + - 116 + - 117 + - 114 + - 32 + - 109 + - 97 + - 120 + - 105 + - 109 + - 101 + - 46 + format: binary + thumbnail2_hash: + type: string + description: thumbnail2 hash of NFT + example: + - 83 + - 105 + - 116 + - 32 + - 99 + - 117 + - 112 + - 105 + - 100 + - 105 + - 116 + - 97 + - 116 + - 101 + - 32 + - 99 + - 111 + - 110 + - 115 + - 101 + - 99 + - 116 + - 101 + - 116 + - 117 + - 114 + - 32 + - 113 + - 117 + - 111 + - 32 + - 110 + - 117 + - 109 + - 113 + - 117 + - 97 + - 109 + - 46 + format: binary + total_copies: + type: integer + description: total copies of NFT + example: 7460552679591907032 + format: int64 + utc_timestamp_when_request_submitted: + type: string + description: timestamp of request when submitted + example: Incidunt minima similique. + example: + alternative_nsfw_scores: + drawings: 0.10935703 + hentai: 0.09246627 + neutral: 0.6267282 + porn: 0.44808388 + sexy: 0.10161177 + candidate_image_thumbnail_webp_as_base64_string: Eveniet iure id corporis et. + child_probability: 0.85841125 + collection_name_string: Laborum consectetur praesentium. + cp_probability: 0.020185858 + creator_name: Veritatis qui qui. + creator_website: Enim corrupti eaque. + creator_written_statement: Quis placeat sed voluptatem. + does_not_impact_the_following_collection_strings: In velit suscipit id. + dupe_detection_system_version: Sequi ut praesentium ducimus ea. + file_type: Totam unde quia magni. + group_rareness_score: 0.7813651 + hash_of_candidate_image_file: Earum ipsa molestiae sequi magni quod architecto. + image_file_path: Soluta iste omnis qui aut. + image_fingerprint_of_candidate_image_file: + - 0.6438323104374452 + - 0.9329325562583228 + - 0.932782678053973 + - 0.053544899534881556 + internet_rareness: + alternative_rare_on_internet_dict_as_json_compressed_b64: Nihil consequuntur sed et. + earliest_available_date_of_internet_results: Rerum expedita minus. + min_number_of_exact_matches_in_page: 2451569794 + rare_on_internet_graph_json_compressed_b64: Deserunt doloremque in. + rare_on_internet_summary_table_as_json_compressed_b64: Eum reiciendis eum et placeat. + is_likely_dupe: false + is_pastel_openapi_request: true + is_rare_on_internet: false + max_permitted_open_nsfw_score: 0.31090327792601796 + nft_creation_video_youtube_url: Corporis ipsum deleniti eos. + nft_keyword_set: Libero eaque error omnis aut ut. + nft_series_name: Aut reiciendis. + nft_title: Est qui. + open_api_group_id_string: Consequatur vel sed. + open_nsfw_score: 0.020267392 + original_file_size_in_bytes: 6170748445122680850 + overall_rareness_score: 0.68623006 + pastel_block_hash_when_request_submitted: Ratione blanditiis. + pastel_block_height_when_request_submitted: Beatae amet maiores sed neque omnis. + pastel_id_of_registering_supernode_1: Et qui iure dignissimos omnis. + pastel_id_of_registering_supernode_2: Occaecati maiores ut voluptatum dolor provident. + pastel_id_of_registering_supernode_3: Rerum repellat id. + pastel_id_of_submitter: Voluptatem ipsum voluptas eius porro animi totam. + pct_of_top_10_most_similar_with_dupe_prob_above_25pct: 0.97560793 + pct_of_top_10_most_similar_with_dupe_prob_above_33pct: 0.1190811 + pct_of_top_10_most_similar_with_dupe_prob_above_50pct: 0.12013802 + preview_hash: + - 81 + - 117 + - 105 + - 115 + - 113 + - 117 + - 97 + - 109 + - 32 + - 115 + - 97 + - 112 + - 105 + - 101 + - 110 + - 116 + - 101 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 117 + - 109 + - 32 + - 115 + - 105 + - 109 + - 105 + - 108 + - 105 + - 113 + - 117 + - 101 + - 32 + - 97 + - 116 + - 113 + - 117 + - 101 + - 46 + rareness_scores_table_json_compressed_b64: Magnam ipsum corrupti iste sequi. + similarity_score_to_first_entry_in_collection: 0.6906927 + thumbnail1_hash: + - 69 + - 120 + - 101 + - 114 + - 99 + - 105 + - 116 + - 97 + - 116 + - 105 + - 111 + - 110 + - 101 + - 109 + - 32 + - 109 + - 111 + - 108 + - 101 + - 115 + - 116 + - 105 + - 97 + - 115 + - 32 + - 101 + - 110 + - 105 + - 109 + - 46 + thumbnail2_hash: + - 69 + - 116 + - 32 + - 115 + - 101 + - 100 + - 32 + - 110 + - 97 + - 109 + - 32 + - 100 + - 105 + - 115 + - 116 + - 105 + - 110 + - 99 + - 116 + - 105 + - 111 + - 32 + - 100 + - 101 + - 108 + - 101 + - 110 + - 105 + - 116 + - 105 + - 46 + total_copies: 8886973211525526541 + utc_timestamp_when_request_submitted: Nam ut voluptas cum est molestiae eius. + required: + - creator_name + - creator_website + - creator_written_statement + - nft_title + - nft_series_name + - nft_creation_video_youtube_url + - nft_keyword_set + - total_copies + - preview_hash + - thumbnail1_hash + - thumbnail2_hash + - original_file_size_in_bytes + - file_type + - max_permitted_open_nsfw_score + Details: + type: object + properties: + fields: + type: object + description: important fields regarding status history + example: + Reiciendis velit modi dignissimos quasi.: Autem velit quibusdam laboriosam maiores possimus. + additionalProperties: true + message: + type: string + description: details regarding the status + example: Image has been downloaded... + example: + fields: + Voluptas dolore dolorem et aut.: Consequuntur iure. + message: Image has been downloaded... + DownloadResult: + type: object + properties: + file: + type: string + description: File downloaded + example: + - 85 + - 116 + - 32 + - 99 + - 117 + - 109 + - 32 + - 113 + - 117 + - 111 + - 46 + format: binary + example: + file: + - 69 + - 120 + - 101 + - 114 + - 99 + - 105 + - 116 + - 97 + - 116 + - 105 + - 111 + - 110 + - 101 + - 109 + - 32 + - 115 + - 101 + - 100 + - 32 + - 101 + - 115 + - 116 + - 32 + - 97 + - 109 + - 101 + - 116 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 101 + - 32 + - 114 + - 101 + - 114 + - 117 + - 109 + - 46 + required: + - file + DownloadTaskStatus: + type: object + properties: + data_downloaded_megabytes: + type: integer + description: data downloaded in megabytes so far + example: 1 + format: int64 + details: + $ref: '#/components/schemas/Details' + downloaded_volumes: + type: integer + description: Number of volumes successfully downloaded + example: 1 + format: int64 + message: + type: string + description: message string (if any) + example: Balance less than maximum fee provied in the request, could not gather enough confirmations... + size_of_the_file_megabytes: + type: integer + description: size of the file in megabytes + example: 1 + format: int64 + task_status: + type: string + description: Status of the operation + example: In Progress + enum: + - Completed + - Failed + - In Progress + total_volumes: + type: integer + description: Total Volumes + example: 1 + format: int64 + volumes_download_failed: + type: integer + description: Number of volumes failed to download + example: 1 + format: int64 + volumes_download_in_progress: + type: integer + description: Number of volumes currently being downloaded + example: 1 + format: int64 + volumes_pending_download: + type: integer + description: Number of volumes awaiting schedule + example: 1 + format: int64 + example: + data_downloaded_megabytes: 1 + details: + fields: + Quisquam non.: Voluptates qui aliquid sit atque inventore illo. + message: Image has been downloaded... + downloaded_volumes: 1 + message: Balance less than maximum fee provied in the request, could not gather enough confirmations... + size_of_the_file_megabytes: 1 + task_status: In Progress + total_volumes: 1 + volumes_download_failed: 1 + volumes_download_in_progress: 1 + volumes_pending_download: 1 + required: + - total_volumes + - downloaded_volumes + - volumes_download_in_progress + - volumes_download_failed + - task_status + - details + - volumes_pending_download + - size_of_the_file_megabytes + - data_downloaded_megabytes + Error: + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + EvaluationData: + type: object + properties: + block: + type: integer + description: Block + example: 1352248337 + format: int32 + hash: + type: string + description: Hash + example: Non fuga animi architecto sed omnis non. + is_verified: + type: boolean + description: IsVerified + example: true + merkelroot: + type: string + description: Merkelroot + example: Odit quae quo ut saepe aperiam laudantium. + timestamp: + type: string + description: Timestamp + example: Libero hic et. + description: Data of evaluation + example: + block: 2072291157 + hash: Quo dolores dolor ut. + is_verified: false + merkelroot: Magni rerum. + timestamp: Enim qui dignissimos. + required: + - timestamp + - hash + - is_verified + EventTicket: + type: object + properties: + data_hash: + type: string + example: + - 65 + - 100 + - 105 + - 112 + - 105 + - 115 + - 99 + - 105 + - 32 + - 101 + - 120 + - 32 + - 114 + - 101 + - 114 + - 117 + - 109 + - 32 + - 113 + - 117 + - 105 + - 32 + - 113 + - 117 + - 97 + - 109 + - 32 + - 105 + - 116 + - 97 + - 113 + - 117 + - 101 + - 32 + - 105 + - 110 + - 46 + format: binary + missing_keys: + type: array + items: + type: string + example: Quis adipisci amet voluptas nisi explicabo. + example: + - In debitis quia atque molestias. + - Asperiores culpa sunt sit. + - Similique porro voluptatem cum consequatur ut et. + recipient: + type: string + example: Optio alias quo amet voluptatem est cum. + ticket_type: + type: string + example: Doloremque vel doloremque facere. + tx_id: + type: string + example: In voluptatem sed enim impedit. + example: + data_hash: + - 68 + - 111 + - 108 + - 111 + - 114 + - 32 + - 113 + - 117 + - 105 + - 32 + - 117 + - 116 + - 32 + - 113 + - 117 + - 105 + - 32 + - 117 + - 116 + - 32 + - 112 + - 111 + - 115 + - 115 + - 105 + - 109 + - 117 + - 115 + - 46 + missing_keys: + - In officiis aspernatur deserunt. + - Ut officia. + - Iusto excepturi laboriosam occaecati accusantium. + recipient: Sequi veritatis fuga consequuntur maxime aut. + ticket_type: Est quae architecto. + tx_id: Debitis aut iure aperiam ut sapiente aspernatur. + File: + type: object + properties: + activation_attempts: + type: array + items: + $ref: '#/components/schemas/ActivationAttempt' + description: List of activation attempts + example: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: + type: string + description: Activation Transaction ID + example: Eos doloribus iste ut sit dolore est. + base_file_id: + type: string + description: Base File ID + example: Quae magni laudantium consequatur. + burn_txn_id: + type: string + description: Burn Transaction ID + example: Quos ut repellendus. + cascade_metadata_ticket_id: + type: string + description: Cascade Metadata Ticket ID + example: Autem suscipit rerum nihil neque voluptatum voluptas. + done_block: + type: integer + description: Done Block + example: 4456201531387665463 + format: int64 + file_id: + type: string + description: File ID + example: Velit distinctio maiores expedita quasi. + file_index: + type: string + description: Index of the file + example: Et voluptatem sapiente. + hash_of_original_big_file: + type: string + description: Hash of the Original Big File + example: Voluptatem consequatur architecto possimus. + is_concluded: + type: boolean + description: Indicates if the process is concluded + example: true + name_of_original_big_file_with_ext: + type: string + description: Name of the Original Big File with Extension + example: Est aut. + reg_txid: + type: string + description: Registration Transaction ID + example: Illo quasi debitis corrupti omnis consequatur. + registration_attempts: + type: array + items: + $ref: '#/components/schemas/RegistrationAttempt' + description: List of registration attempts + example: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: + type: number + description: Required Amount + example: 0.9296029408572861 + format: double + req_burn_txn_amount: + type: number + description: Required Burn Transaction Amount + example: 0.3390959026262366 + format: double + size_of_original_big_file: + type: number + description: Size of the Original Big File + example: 0.9621408527378433 + format: double + start_block: + type: integer + description: Start Block + example: 1849977542 + format: int32 + task_id: + type: string + description: Task ID + example: Ipsum perferendis autem. + upload_timestamp: + type: string + description: Upload Timestamp in datetime format + example: "1991-05-30T07:34:27Z" + format: date-time + uuid_key: + type: string + description: UUID Key + example: Veritatis ipsa. + example: + activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Pariatur fugit aut quis unde. + base_file_id: Facilis voluptatibus soluta id omnis accusamus. + burn_txn_id: Perferendis non fugit. + cascade_metadata_ticket_id: Vitae reprehenderit dolorum excepturi magnam. + done_block: 4799311747582476900 + file_id: Quis libero eius mollitia magni voluptas. + file_index: Saepe doloremque. + hash_of_original_big_file: Similique dolorum eum reprehenderit voluptas ut et. + is_concluded: true + name_of_original_big_file_with_ext: Quo voluptatibus magnam. + reg_txid: Asperiores harum. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.7894765105761659 + req_burn_txn_amount: 0.4628575016205468 + size_of_original_big_file: 0.4320393643933143 + start_block: 500203753 + task_id: Nemo ut nostrum sit natus molestiae eos. + upload_timestamp: "2014-01-17T14:36:31Z" + uuid_key: Facilis laborum earum consequatur laudantium voluptate. + required: + - file_id + - task_id + - upload_timestamp + - base_file_id + - registration_attempts + - activation_attempts + - req_burn_txn_amount + - req_amount + - cascade_metadata_ticket_id + - hash_of_original_big_file + - name_of_original_big_file_with_ext + - size_of_original_big_file + FileDownloadResult: + type: object + properties: + file_id: + type: string + description: File path + example: Nam dolorem voluptate et. + example: + file_id: Consequatur qui. + required: + - file_id + FuzzyMatch: + type: object + properties: + field_type: + type: string + description: Field that is matched + example: creator_name + enum: + - creator_name + - art_title + - series + - descr + - keyword + matched_indexes: + type: array + items: + type: integer + example: 7327100705529937634 + format: int64 + description: The indexes of matched characters. Useful for highlighting matches + example: + - 1948203020921215349 + - 3439362256873029095 + score: + type: integer + description: Score used to rank matches + example: 3391603739219505659 + format: int64 + str: + type: string + description: String that is matched + example: Enim a soluta iste quo qui officia. + example: + field_type: series + matched_indexes: + - 3514820691546776495 + - 4798601420640589548 + - 2130150614634239824 + - 8083708308528182434 + score: 3442499907269367633 + str: Ut voluptas molestiae. + HCChallengeData: + type: object + properties: + block: + type: integer + description: Block + example: 1852408021 + format: int32 + merkelroot: + type: string + description: Merkelroot + example: Praesentium similique itaque ea enim autem impedit. + timestamp: + type: string + description: Timestamp + example: Alias velit tempore. + description: Data of challenge + example: + block: 1004177845 + merkelroot: Explicabo est quaerat voluptas quia. + timestamp: Neque odit. + required: + - timestamp + HCEvaluationData: + type: object + properties: + block: + type: integer + description: Block + example: 408356242 + format: int32 + is_verified: + type: boolean + description: IsVerified + example: true + merkelroot: + type: string + description: Merkelroot + example: Qui commodi deleniti qui ut minima. + timestamp: + type: string + description: Timestamp + example: Eligendi fuga repudiandae beatae. + description: Data of evaluation + example: + block: 1389608811 + is_verified: true + merkelroot: Voluptatem molestiae laborum quibusdam magnam voluptatem. + timestamp: Nulla facere ut quas ab. + required: + - timestamp + - is_verified + HCObserverEvaluationData: + type: object + properties: + block: + type: integer + description: Block + example: 1206668699 + format: int32 + is_challenge_timestamp_ok: + type: boolean + description: IsChallengeTimestampOK + example: true + is_challenger_signature_ok: + type: boolean + description: IsChallengerSignatureOK + example: true + is_evaluation_result_ok: + type: boolean + description: IsEvaluationResultOK + example: true + is_evaluation_timestamp_ok: + type: boolean + description: IsEvaluationTimestampOK + example: false + is_process_timestamp_ok: + type: boolean + description: IsProcessTimestampOK + example: false + is_recipient_signature_ok: + type: boolean + description: IsRecipientSignatureOK + example: true + merkelroot: + type: string + description: Merkelroot + example: Rem et ut quod. + timestamp: + type: string + description: Timestamp + example: Molestiae optio sit. + description: Data of Observer's evaluation + example: + block: 1096271289 + is_challenge_timestamp_ok: true + is_challenger_signature_ok: true + is_evaluation_result_ok: true + is_evaluation_timestamp_ok: false + is_process_timestamp_ok: false + is_recipient_signature_ok: false + merkelroot: Earum animi sed consequatur sit ipsa ut. + timestamp: Doloribus aut. + required: + - timestamp + - is_challenge_timestamp_ok + - is_process_timestamp_ok + - is_evaluation_timestamp_ok + - is_recipient_signature_ok + - is_challenger_signature_ok + - is_evaluation_result_ok + HCSummaryStats: + type: object + properties: + no_of_invalid_evaluation_observed_by_observers: + type: integer + description: challenges failed due to invalid evaluation evaluated by observers + example: 728503584389264566 + format: int64 + no_of_invalid_signatures_observed_by_observers: + type: integer + description: challenges failed due to invalid signatures evaluated by observers + example: 5265598959677038068 + format: int64 + no_of_slow_responses_observed_by_observers: + type: integer + description: challenges failed due to slow-responses evaluated by observers + example: 6224984180198786822 + format: int64 + total_challenges_evaluated_by_challenger: + type: integer + description: Total number of challenges evaluated by the challenger node + example: 6092881920952109301 + format: int64 + total_challenges_issued: + type: integer + description: Total number of challenges issued + example: 4139038066016460499 + format: int64 + total_challenges_processed_by_recipient: + type: integer + description: Total number of challenges processed by the recipient node + example: 6200705247364471466 + format: int64 + total_challenges_verified: + type: integer + description: Total number of challenges verified by observers + example: 9003639930340756907 + format: int64 + description: HealthCheck-Challenge SummaryStats + example: + no_of_invalid_evaluation_observed_by_observers: 3758307129551045300 + no_of_invalid_signatures_observed_by_observers: 7216199585246499219 + no_of_slow_responses_observed_by_observers: 4708410375453246748 + total_challenges_evaluated_by_challenger: 319401182285872720 + total_challenges_issued: 4247816628451739144 + total_challenges_processed_by_recipient: 4685610385311218462 + total_challenges_verified: 9100485264281593584 + required: + - total_challenges_issued + - total_challenges_processed_by_recipient + - total_challenges_evaluated_by_challenger + - total_challenges_verified + - no_of_slow_responses_observed_by_observers + - no_of_invalid_signatures_observed_by_observers + - no_of_invalid_evaluation_observed_by_observers + HcDetailedLogsMessage: + type: object + properties: + challenge: + $ref: '#/components/schemas/HCChallengeData' + challenge_id: + type: string + description: ID of the challenge + example: Eligendi et earum cupiditate. + challenger_evaluation: + $ref: '#/components/schemas/HCEvaluationData' + challenger_id: + type: string + description: ID of the challenger + example: Dolorum fugiat aspernatur. + message_type: + type: string + description: type of the message + example: Suscipit ipsa minima. + observer_evaluation: + $ref: '#/components/schemas/HCObserverEvaluationData' + observers: + type: array + items: + type: string + example: Et ipsum. + description: List of observer IDs + example: + - Voluptates dolor placeat eum quis sit et. + - Quisquam repellat sequi voluptatum. + recipient_id: + type: string + description: ID of the recipient + example: Non impedit ex a consectetur consequatur. + response: + $ref: '#/components/schemas/HCChallengeData' + sender_id: + type: string + description: ID of the sender's node + example: Sit asperiores debitis vel et architecto. + sender_signature: + type: string + description: signature of the sender + example: Qui magni laborum eligendi at modi. + description: HealthCheck challenge message data + example: + challenge: + block: 1740108809 + merkelroot: Et neque culpa explicabo dolore natus. + timestamp: Voluptatibus hic voluptas doloremque eligendi et magni. + challenge_id: Itaque qui cumque recusandae. + challenger_evaluation: + block: 1664792371 + is_verified: true + merkelroot: Commodi repellat nihil qui dolores. + timestamp: Suscipit ipsum veniam debitis illum. + challenger_id: Facilis nostrum laudantium ea dolores. + message_type: Quam quis illo consequatur non dolor pariatur. + observer_evaluation: + block: 325896074 + is_challenge_timestamp_ok: true + is_challenger_signature_ok: true + is_evaluation_result_ok: false + is_evaluation_timestamp_ok: true + is_process_timestamp_ok: true + is_recipient_signature_ok: true + merkelroot: Qui laudantium et nihil libero aut delectus. + timestamp: Id dignissimos qui quaerat. + observers: + - Ipsum voluptatibus. + - Qui qui eos voluptas voluptas repudiandae eos. + - Voluptas laudantium dolor. + recipient_id: Id laboriosam molestias blanditiis voluptate aliquid consequatur. + response: + block: 1763433739 + merkelroot: Molestiae voluptas ut. + timestamp: Eaque perspiciatis earum a deserunt consectetur placeat. + sender_id: Eos delectus eaque iste at recusandae. + sender_signature: Necessitatibus quia amet necessitatibus. + required: + - challenge_id + - message_type + - sender_id + - challenger_id + - observers + - recipient_id + HcSummaryStatsResult: + type: object + properties: + hc_summary_stats: + $ref: '#/components/schemas/HCSummaryStats' + example: + hc_summary_stats: + no_of_invalid_evaluation_observed_by_observers: 5298572403287664370 + no_of_invalid_signatures_observed_by_observers: 3383689589076681506 + no_of_slow_responses_observed_by_observers: 827764771293379553 + total_challenges_evaluated_by_challenger: 8246003579136272374 + total_challenges_issued: 8051655920216908082 + total_challenges_processed_by_recipient: 5129431480100159883 + total_challenges_verified: 6477018306295341268 + required: + - hc_summary_stats + Image: + type: object + properties: + expires_in: + type: string + description: Image expiration + example: 2006-01-02T15:04:05Z07:00 + format: date-time + image_id: + type: string + description: Uploaded image ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + required_preburn_amount: + type: number + description: The amount that's required to be preburned + default: 1 + example: 20 + format: double + minimum: 1e-05 + total_estimated_fee: + type: number + description: Estimated fee + default: 1 + example: 100 + format: double + minimum: 1e-05 + example: + expires_in: 2006-01-02T15:04:05Z07:00 + image_id: VK7mpAqZ + required_preburn_amount: 20 + total_estimated_fee: 100 + required: + - image_id + - expires_in + - total_estimated_fee + ImageRes: + type: object + properties: + estimated_fee: + type: number + description: Estimated fee + default: 1 + example: 100 + format: double + minimum: 1e-05 + expires_in: + type: string + description: Image expiration + example: 2006-01-02T15:04:05Z07:00 + format: date-time + image_id: + type: string + description: Uploaded image ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + example: + estimated_fee: 100 + expires_in: 2006-01-02T15:04:05Z07:00 + image_id: VK7mpAqZ + required: + - image_id + - expires_in + - estimated_fee + InternetRareness: + type: object + properties: + alternative_rare_on_internet_dict_as_json_compressed_b64: + type: string + description: Base64 Compressed Json of Alternative Rare On Internet Dict + example: Illo doloribus reiciendis quia. + earliest_available_date_of_internet_results: + type: string + description: Earliest Available Date of Internet Results + example: Excepturi consequatur sapiente ex aspernatur molestiae. + min_number_of_exact_matches_in_page: + type: integer + description: Minimum Number of Exact Matches on Page + example: 4067716565 + format: int32 + rare_on_internet_graph_json_compressed_b64: + type: string + description: Base64 Compressed JSON of Rare On Internet Graph + example: Deleniti at. + rare_on_internet_summary_table_as_json_compressed_b64: + type: string + description: Base64 Compressed JSON Table of Rare On Internet Summary + example: Ut harum minus. + example: + alternative_rare_on_internet_dict_as_json_compressed_b64: Ea aliquam corrupti distinctio est. + earliest_available_date_of_internet_results: Enim dolorem ad debitis. + min_number_of_exact_matches_in_page: 3197925170 + rare_on_internet_graph_json_compressed_b64: Molestias sint. + rare_on_internet_summary_table_as_json_compressed_b64: Sunt quam velit tempora aspernatur ad. + MetricsResult: + type: object + properties: + self_healing_execution_events_stats: + $ref: '#/components/schemas/SHExecutionStats' + self_healing_trigger_events_stats: + type: array + items: + $ref: '#/components/schemas/SHTriggerStats' + description: Self-healing trigger stats + example: + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + example: + self_healing_execution_events_stats: + total_file_healing_failed: 7768590148358975878 + total_files_healed: 5003517749846764640 + total_reconstruction_not_required_evaluations_approved: 2806992559829453130 + total_reconstruction_required_evaluations_approved: 1107029843099257708 + total_reconstruction_required_evaluations_not_approved: 5899917961438241754 + total_reconstruction_required_hash_mismatch: 7662269731854437673 + total_reconstructions_not_required_evaluations_not_approved: 6465655469488946682 + total_self_healing_events_accepted: 8057201361166306844 + total_self_healing_events_acknowledged: 7507492928430008683 + total_self_healing_events_evaluations_unverified: 5026086393945454809 + total_self_healing_events_evaluations_verified: 7657744171058360435 + total_self_healing_events_issued: 6120797776831447879 + total_self_healing_events_rejected: 4720652167101259254 + self_healing_trigger_events_stats: + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + - list_of_nodes: Et deleniti accusantium delectus qui corporis quam. + nodes_offline: 1258661763829104839 + total_files_identified: 5876576034719855274 + total_tickets_identified: 1677436103568749246 + trigger_id: Nobis doloremque dolores nobis ut. + required: + - self_healing_trigger_events_stats + - self_healing_execution_events_stats + NftDetail: + type: object + properties: + alt_rare_on_internet_dict_json_b64: + type: string + description: Base64 Compressed Json of Alternative Rare On Internet Dict + example: Occaecati in libero eos. + copies: + type: integer + description: Number of copies + default: 1 + example: 1 + format: int64 + minimum: 1 + maximum: 1000 + creator_name: + type: string + description: Name of the artist + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Artist's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: Artist website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + drawing_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + earliest_date_of_results: + type: string + description: Earliest Available Date of Internet Results + example: Qui velit qui iste. + green_address: + type: boolean + description: Green address + example: false + hentai_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + is_likely_dupe: + type: boolean + description: Is this image likely a duplicate of another known image + example: false + is_rare_on_internet: + type: boolean + description: is this nft rare on the internet + example: false + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + min_num_exact_matches_on_page: + type: integer + description: Minimum Number of Exact Matches on Page + example: 2612472777 + format: int32 + neutral_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + nsfw_score: + type: number + description: NSFW Average score + example: 1 + format: float + minimum: 0 + maximum: 1 + porn_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + preview_thumbnail: + type: string + description: Preview Image + example: + - 77 + - 97 + - 103 + - 110 + - 105 + - 32 + - 113 + - 117 + - 105 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 100 + - 105 + - 103 + - 110 + - 105 + - 115 + - 115 + - 105 + - 109 + - 111 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 101 + - 110 + - 105 + - 109 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 46 + format: binary + rare_on_internet_graph_json_b64: + type: string + description: Base64 Compressed JSON of Rare On Internet Graph + example: Perspiciatis voluptatem aut. + rare_on_internet_summary_table_json_b64: + type: string + description: Base64 Compressed JSON Table of Rare On Internet Summary + example: Exercitationem beatae architecto sequi magnam. + rareness_score: + type: number + description: Average pastel rareness score + example: 1 + format: float + minimum: 0 + maximum: 1 + royalty: + type: number + description: how much artist should get on all future resales + example: 0.21136374743169004 + format: double + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + sexy_nsfw_score: + type: number + description: nsfw score + example: 1 + format: float + minimum: 0 + maximum: 1 + storage_fee: + type: integer + description: Storage fee % + example: 100 + format: int64 + thumbnail_1: + type: string + description: Thumbnail_1 image + example: + - 86 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 99 + - 111 + - 114 + - 114 + - 117 + - 112 + - 116 + - 105 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 101 + - 110 + - 100 + - 117 + - 115 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 32 + - 105 + - 112 + - 115 + - 97 + - 46 + format: binary + thumbnail_2: + type: string + description: Thumbnail_2 image + example: + - 65 + - 114 + - 99 + - 104 + - 105 + - 116 + - 101 + - 99 + - 116 + - 111 + - 32 + - 113 + - 117 + - 97 + - 115 + - 32 + - 108 + - 97 + - 117 + - 100 + - 97 + - 110 + - 116 + - 105 + - 117 + - 109 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 101 + - 32 + - 101 + - 114 + - 114 + - 111 + - 114 + - 32 + - 100 + - 105 + - 115 + - 116 + - 105 + - 110 + - 99 + - 116 + - 105 + - 111 + - 32 + - 97 + - 100 + - 46 + format: binary + title: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + version: + type: integer + description: version + example: 1 + format: int64 + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + example: + alt_rare_on_internet_dict_json_b64: Provident ex. + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + drawing_nsfw_score: 1 + earliest_date_of_results: Numquam et. + green_address: false + hentai_nsfw_score: 1 + is_likely_dupe: false + is_rare_on_internet: false + keywords: Renaissance, sfumato, portrait + min_num_exact_matches_on_page: 2034231454 + neutral_nsfw_score: 1 + nsfw_score: 1 + porn_nsfw_score: 1 + preview_thumbnail: + - 83 + - 105 + - 110 + - 116 + - 32 + - 102 + - 117 + - 103 + - 105 + - 97 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 101 + - 115 + - 32 + - 101 + - 116 + - 32 + - 114 + - 101 + - 114 + - 117 + - 109 + - 32 + - 105 + - 112 + - 115 + - 97 + - 109 + - 46 + rare_on_internet_graph_json_b64: Et voluptatem aliquid. + rare_on_internet_summary_table_json_b64: Est modi corporis aut voluptates et beatae. + rareness_score: 1 + royalty: 0.904486260011567 + series_name: Famous artist + sexy_nsfw_score: 1 + storage_fee: 100 + thumbnail_1: + - 78 + - 101 + - 115 + - 99 + - 105 + - 117 + - 110 + - 116 + - 32 + - 117 + - 116 + - 32 + - 108 + - 97 + - 98 + - 111 + - 114 + - 105 + - 111 + - 115 + - 97 + - 109 + - 32 + - 97 + - 117 + - 116 + - 46 + thumbnail_2: + - 86 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + version: 1 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - rareness_score + - nsfw_score + - is_likely_dupe + - is_rare_on_internet + - title + - description + - creator_name + - copies + - creator_pastelid + - txid + NftRegisterPayload: + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + key: + type: string + description: Passphrase of the owner's PastelID + example: Basic abcdef12345 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Vero optio maiores hic provident recusandae rem. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/components/schemas/ThumbnailcoordinateResponseBody' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: Request of the registration NFT + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Et hic sed deleniti repellendus. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + - key + NftSearchResult: + type: object + properties: + match_index: + type: integer + description: Sort index of the match based on score.This must be used to sort results on UI. + example: 339062948188476620 + format: int64 + matches: + type: array + items: + $ref: '#/components/schemas/FuzzyMatch' + description: Match result details + example: + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + nft: + $ref: '#/components/schemas/NftSummary' + example: + match_index: 1720479694923405058 + matches: + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + - field_type: keyword + matched_indexes: + - 5818914520330390061 + - 8674536662246191115 + - 6506012960807764347 + - 5168155951224844731 + score: 7675232511310410690 + str: Nostrum incidunt voluptatem sit velit et. + nft: + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + is_likely_dupe: false + keywords: Renaissance, sfumato, portrait + nsfw_score: 1 + rareness_score: 1 + series_name: Famous artist + thumbnail_1: + - 65 + - 117 + - 116 + - 32 + - 97 + - 109 + - 101 + - 116 + - 32 + - 115 + - 101 + - 113 + - 117 + - 105 + - 46 + thumbnail_2: + - 83 + - 101 + - 113 + - 117 + - 105 + - 32 + - 118 + - 101 + - 108 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - nft + - matches + - match_index + NftSummary: + type: object + properties: + copies: + type: integer + description: Number of copies + default: 1 + example: 1 + format: int64 + minimum: 1 + maximum: 1000 + creator_name: + type: string + description: Name of the artist + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Artist's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: Artist website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + is_likely_dupe: + type: boolean + description: Is this image likely a duplicate of another known image + example: false + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + nsfw_score: + type: number + description: NSFW Average score + example: 1 + format: float + minimum: 0 + maximum: 1 + rareness_score: + type: number + description: Average pastel rareness score + example: 1 + format: float + minimum: 0 + maximum: 1 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + thumbnail_1: + type: string + description: Thumbnail_1 image + example: + - 69 + - 97 + - 32 + - 111 + - 109 + - 110 + - 105 + - 115 + - 32 + - 97 + - 100 + - 32 + - 109 + - 97 + - 103 + - 110 + - 105 + - 32 + - 105 + - 110 + - 118 + - 101 + - 110 + - 116 + - 111 + - 114 + - 101 + - 46 + format: binary + thumbnail_2: + type: string + description: Thumbnail_2 image + example: + - 69 + - 116 + - 32 + - 108 + - 105 + - 98 + - 101 + - 114 + - 111 + - 32 + - 97 + - 108 + - 105 + - 97 + - 115 + - 32 + - 104 + - 105 + - 99 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 46 + format: binary + title: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + description: NFT response + example: + copies: 1 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + is_likely_dupe: false + keywords: Renaissance, sfumato, portrait + nsfw_score: 1 + rareness_score: 1 + series_name: Famous artist + thumbnail_1: + - 69 + - 116 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 99 + - 117 + - 109 + - 113 + - 117 + - 101 + - 32 + - 110 + - 105 + - 115 + - 105 + - 32 + - 109 + - 111 + - 100 + - 105 + - 32 + - 99 + - 111 + - 110 + - 115 + - 101 + - 113 + - 117 + - 97 + - 116 + - 117 + - 114 + - 46 + thumbnail_2: + - 78 + - 111 + - 98 + - 105 + - 115 + - 32 + - 115 + - 105 + - 116 + - 32 + - 101 + - 111 + - 115 + - 32 + - 112 + - 114 + - 111 + - 118 + - 105 + - 100 + - 101 + - 110 + - 116 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 115 + - 46 + title: Mona Lisa + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - title + - description + - creator_name + - copies + - creator_pastelid + - txid + ObserverEvaluationData: + type: object + properties: + block: + type: integer + description: Block + example: 535385203 + format: int32 + is_challenge_timestamp_ok: + type: boolean + description: IsChallengeTimestampOK + example: true + is_challenger_signature_ok: + type: boolean + description: IsChallengerSignatureOK + example: false + is_evaluation_result_ok: + type: boolean + description: IsEvaluationResultOK + example: true + is_evaluation_timestamp_ok: + type: boolean + description: IsEvaluationTimestampOK + example: true + is_process_timestamp_ok: + type: boolean + description: IsProcessTimestampOK + example: false + is_recipient_signature_ok: + type: boolean + description: IsRecipientSignatureOK + example: false + merkelroot: + type: string + description: Merkelroot + example: Et fuga voluptatem libero tempora vel consectetur. + reason: + type: string + description: Reason + example: Accusamus aut. + timestamp: + type: string + description: Timestamp + example: Rerum debitis optio dolores sint quam dolor. + true_hash: + type: string + description: TrueHash + example: Et reiciendis qui. + description: Data of Observer's evaluation + example: + block: 442629971 + is_challenge_timestamp_ok: false + is_challenger_signature_ok: false + is_evaluation_result_ok: false + is_evaluation_timestamp_ok: true + is_process_timestamp_ok: false + is_recipient_signature_ok: true + merkelroot: Magni voluptatem quia qui. + reason: Est et et dolor rerum quisquam natus. + timestamp: Fugit totam harum mollitia. + true_hash: Quia fuga quidem est dolorem quae odit. + required: + - timestamp + - is_challenge_timestamp_ok + - is_process_timestamp_ok + - is_evaluation_timestamp_ok + - is_recipient_signature_ok + - is_challenger_signature_ok + - is_evaluation_result_ok + - true_hash + RegisterCollectionRequestBody: + type: object + properties: + app_pastelid: + type: string + description: App PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + collection_item_copy_count: + type: integer + description: item copy count in the collection + default: 1 + example: 10 + format: int64 + minimum: 1 + maximum: 1000 + collection_name: + type: string + description: name of the collection + example: galaxies + green: + type: boolean + description: green + default: false + example: false + item_type: + type: string + description: type of items, store by collection + example: sense + enum: + - sense + - nft + list_of_pastelids_of_authorized_contributors: + type: array + items: + type: string + example: Eveniet possimus in iusto harum soluta. + description: list of authorized contributors + example: + - apple + - banana + - orange + max_collection_entries: + type: integer + description: max no of entries in the collection + example: 5000 + format: int64 + minimum: 1 + maximum: 10000 + max_permitted_open_nsfw_score: + type: number + description: max open nfsw score sense and nft items can have + example: 0.5 + format: double + minimum: 0 + maximum: 1 + minimum_similarity_score_to_first_entry_in_collection: + type: number + description: min similarity for 1st entry to have + example: 0.5 + format: double + minimum: 0 + maximum: 1 + no_of_days_to_finalize_collection: + type: integer + description: no of days to finalize collection + default: 7 + example: 5 + format: int64 + minimum: 1 + maximum: 7 + royalty: + type: number + description: royalty fee + default: 0 + example: 2.32 + format: double + minimum: 0 + maximum: 20 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 35 + example: + app_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + collection_item_copy_count: 10 + collection_name: galaxies + green: false + item_type: sense + list_of_pastelids_of_authorized_contributors: + - apple + - banana + - orange + max_collection_entries: 5000 + max_permitted_open_nsfw_score: 0.5 + minimum_similarity_score_to_first_entry_in_collection: 0.5 + no_of_days_to_finalize_collection: 5 + royalty: 2.32 + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + required: + - collection_name + - item_type + - list_of_pastelids_of_authorized_contributors + - max_collection_entries + - max_permitted_open_nsfw_score + - minimum_similarity_score_to_first_entry_in_collection + - app_pastelid + - spendable_address + RegisterCollectionResponse: + type: object + properties: + task_id: + type: string + description: Uploaded file ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + example: + task_id: VK7mpAqZ + required: + - task_id + RegisterRequestBody: + type: object + properties: + burn_txid: + type: string + description: Burn transaction ID + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + collection_act_txid: + type: string + description: 'Act Collection TxID to add given ticket in collection ' + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: + type: string + description: Name of the NFT creator + example: Leonardo da Vinci + maxLength: 256 + creator_pastelid: + type: string + description: Creator's PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + creator_website_url: + type: string + description: NFT creator website URL + example: https://www.leonardodavinci.net + maxLength: 256 + description: + type: string + description: Description of the NFT + example: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + maxLength: 1024 + green: + type: boolean + description: To donate 2% of the sale proceeds on every sale to TeamTrees which plants trees + example: false + image_id: + type: string + description: Uploaded image ID + example: VK7mpAqZ + minLength: 8 + maxLength: 8 + issued_copies: + type: integer + description: Number of copies issued + example: 1 + format: int64 + maximum: 1000 + keywords: + type: string + description: Keywords + example: Renaissance, sfumato, portrait + maxLength: 256 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + maximum_fee: + type: number + description: Used to find a suitable masternode with a fee equal or less + default: 1 + example: 100 + format: double + minimum: 1e-05 + name: + type: string + description: Name of the NFT + example: Mona Lisa + maxLength: 256 + open_api_group_id: + type: string + description: OpenAPI GroupID string + default: PASTEL + example: Vitae deserunt et minima reprehenderit sed sunt. + royalty: + type: number + description: Percentage the artist received in future sales. If set to 0% he only get paids for the first sale on each copy of the NFT + example: 12 + format: double + maximum: 20 + series_name: + type: string + description: Series name + example: Famous artist + maxLength: 256 + spendable_address: + type: string + description: Spendable address + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 36 + thumbnail_coordinate: + $ref: '#/components/schemas/Thumbnailcoordinate' + youtube_url: + type: string + description: NFT creation video youtube URL + example: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + maxLength: 128 + example: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + image_id: VK7mpAqZ + issued_copies: 1 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Recusandae ipsam est. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + required: + - image_id + - creator_name + - name + - creator_pastelid + - spendable_address + - maximum_fee + RegisterResult: + type: object + properties: + task_id: + type: string + description: Task ID of the registration process + example: n6Qn6TFM + minLength: 8 + maxLength: 8 + example: + task_id: n6Qn6TFM + required: + - task_id + RegisterTaskResponseBody: + type: object + properties: + id: + type: string + description: JOb ID of the registration process + example: n6Qn6TFM + minLength: 8 + maxLength: 8 + states: + type: array + items: + $ref: '#/components/schemas/TaskState' + description: List of states from the very beginning of the process + example: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: + type: string + description: Status of the registration process + example: Task Started + enum: + - Task Started + - Connected + - Validated Duplicate Reg Tickets + - Validating Burn Txn + - Burn Txn Validated + - Image Probed + - Image And Thumbnail Uploaded + - Status Gen ReptorQ Symbols + - Preburn Registration Fee + - Downloaded + - Request Accepted + - Request Registered + - Request Activated + - Error Setting up mesh of supernodes + - Error Sending Reg Metadata + - Error Uploading Image + - Error Converting Image to Bytes + - Error Encoding Image + - Error Creating Ticket + - Error Signing Ticket + - Error Uploading Ticket + - Error Activating Ticket + - Error Probing Image + - Error checking dd-server availability before probe image + - Error Generating DD and Fingerprint IDs + - Error comparing suitable storage fee with task request maximum fee + - Error balance not sufficient + - Error getting hash of the image + - Error sending signed ticket to SNs + - Error checking balance + - Error burning reg fee to get reg ticket id + - Error validating reg ticket txn id + - Error validating activate ticket txn id + - Error Insufficient Fee + - Error Signatures Dont Match + - Error Fingerprints Dont Match + - Error ThumbnailHashes Dont Match + - Error GenRaptorQ Symbols Failed + - Error File Don't Match + - Error Not Enough SuperNode + - Error Find Responding SNs + - Error Not Enough Downloaded Filed + - Error Download Failed + - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch + - Task Failed + - Task Rejected + - Task Completed + ticket: + $ref: '#/components/schemas/NftRegisterPayload' + txid: + type: string + description: txid + example: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + minLength: 64 + maxLength: 64 + description: RegisterTaskResponseBody result type (default view) + example: + id: n6Qn6TFM + states: + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + - date: 2006-01-02T15:04:05Z07:00 + status: Task Started + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Cupiditate nobis nesciunt. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + required: + - id + - status + - ticket + Registration: + type: object + properties: + files: + type: array + items: + $ref: '#/components/schemas/File' + description: List of files + example: + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + example: + files: + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + - activation_attempts: + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + - activation_attempt_at: "2015-07-10T22:10:25Z" + error_message: Minima quae. + file_id: Ea dolor ipsa cumque eum natus velit. + id: 4896761915080050783 + is_successful: true + activation_txid: Perferendis unde qui qui dicta. + base_file_id: Numquam voluptas. + burn_txn_id: Alias qui est vel ipsa. + cascade_metadata_ticket_id: Quasi quia cum officia quis. + done_block: 4549696835988976285 + file_id: Ut officiis sed recusandae et qui neque. + file_index: Et autem. + hash_of_original_big_file: Veritatis ducimus veniam accusantium sit. + is_concluded: true + name_of_original_big_file_with_ext: Doloribus neque placeat iure distinctio nihil quam. + reg_txid: Accusamus repellat commodi architecto aut quidem inventore. + registration_attempts: + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + - error_message: Quia repudiandae explicabo esse. + file_id: Voluptatem architecto et deleniti ut voluptas. + finished_at: "1978-07-19T05:51:12Z" + id: 5954754729161757441 + is_successful: false + processor_sns: Debitis et perspiciatis aut incidunt necessitatibus ea. + reg_started_at: "1992-08-06T08:57:14Z" + req_amount: 0.5901269096462677 + req_burn_txn_amount: 0.5209096568475247 + size_of_original_big_file: 0.7605141273682495 + start_block: 423177126 + task_id: Voluptatem aliquam molestias. + upload_timestamp: "1975-10-05T20:05:50Z" + uuid_key: Non aut. + required: + - files + RegistrationAttempt: + type: object + properties: + error_message: + type: string + description: Error Message + example: Dolore sequi. + file_id: + type: string + description: File ID + example: Et iure veritatis ut unde qui aut. + finished_at: + type: string + description: Finished At in datetime format + example: "1970-06-13T21:57:33Z" + format: date-time + id: + type: integer + description: ID + example: 320148559926332562 + format: int64 + is_successful: + type: boolean + description: Indicates if the registration was successful + example: true + processor_sns: + type: string + description: Processor SNS + example: Ullam non deleniti pariatur perferendis sequi. + reg_started_at: + type: string + description: Registration Started At in datetime format + example: "1994-12-12T00:18:47Z" + format: date-time + example: + error_message: Eos at accusamus sunt. + file_id: Dolor aut voluptatem. + finished_at: "1975-03-22T18:00:03Z" + id: 7837618538679308024 + is_successful: true + processor_sns: Aspernatur ducimus. + reg_started_at: "1998-08-30T12:34:56Z" + required: + - id + - file_id + - reg_started_at + - finished_at + RespondedTicket: + type: object + properties: + is_reconstruction_required: + type: boolean + example: false + missing_keys: + type: array + items: + type: string + example: Qui reprehenderit est. + example: + - Recusandae illum. + - Enim adipisci quod. + reconstructed_file_hash: + type: string + example: + - 68 + - 105 + - 103 + - 110 + - 105 + - 115 + - 115 + - 105 + - 109 + - 111 + - 115 + - 32 + - 118 + - 101 + - 110 + - 105 + - 97 + - 109 + - 32 + - 112 + - 111 + - 114 + - 114 + - 111 + - 32 + - 101 + - 116 + - 32 + - 115 + - 105 + - 110 + - 116 + - 32 + - 100 + - 117 + - 99 + - 105 + - 109 + - 117 + - 115 + - 46 + format: binary + ticket_type: + type: string + example: Numquam consectetur voluptatum. + tx_id: + type: string + example: Magnam omnis debitis consequatur aspernatur excepturi. + example: + is_reconstruction_required: true + missing_keys: + - Et quia maiores minima dolor. + - Cupiditate ipsa. + reconstructed_file_hash: + - 77 + - 111 + - 108 + - 101 + - 115 + - 116 + - 105 + - 97 + - 115 + - 32 + - 97 + - 110 + - 105 + - 109 + - 105 + - 32 + - 109 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 113 + - 117 + - 105 + - 98 + - 117 + - 115 + - 100 + - 97 + - 109 + - 46 + ticket_type: Velit nesciunt est aut. + tx_id: Est voluptas repellendus. + ResponseData: + type: object + properties: + block: + type: integer + description: Block + example: 805125620 + format: int32 + hash: + type: string + description: Hash + example: Omnis ut esse voluptatem quibusdam nihil. + merkelroot: + type: string + description: Merkelroot + example: Explicabo aperiam consequatur in accusamus. + timestamp: + type: string + description: Timestamp + example: Voluptas ut et minima suscipit est nam. + description: Data of response + example: + block: 740280977 + hash: Porro eius dolorem est. + merkelroot: Consequatur iusto repudiandae reprehenderit est. + timestamp: Provident voluptas dolorem. + required: + - timestamp + RestoreFile: + type: object + properties: + activated_volumes: + type: integer + description: Total volumes that are activated + example: 8426744880740692251 + format: int64 + registered_volumes: + type: integer + description: Total registered volumes + example: 3559206715321474151 + format: int64 + total_volumes: + type: integer + description: Total volumes of selected file + example: 1098105068733038967 + format: int64 + volumes_activated_in_recovery_flow: + type: integer + description: Total volumes that are activated in restore process + example: 3818185115290444123 + format: int64 + volumes_registration_in_progress: + type: integer + description: Total volumes with in-progress registration + example: 8772042060352284466 + format: int64 + volumes_with_pending_registration: + type: integer + description: Total volumes with pending registration + example: 3727705082800096595 + format: int64 + example: + activated_volumes: 636875621281698798 + registered_volumes: 874086234174926113 + total_volumes: 8121047562571365333 + volumes_activated_in_recovery_flow: 3063150712474952209 + volumes_registration_in_progress: 6718196916299404612 + volumes_with_pending_registration: 4748871480729151297 + required: + - total_volumes + - registered_volumes + - volumes_with_pending_registration + - volumes_registration_in_progress + - activated_volumes + - volumes_activated_in_recovery_flow + RestoreRequestBody: + type: object + properties: + app_pastelId: + type: string + description: App PastelID + example: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + pattern: ^[a-zA-Z0-9]+$ + minLength: 86 + maxLength: 86 + make_publicly_accessible: + type: boolean + description: To make it publicly accessible + default: false + example: false + spendable_address: + type: string + description: 'Address to use for registration fee ' + example: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + pattern: ^[a-zA-Z0-9]+$ + minLength: 35 + maxLength: 35 + example: + app_pastelId: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + make_publicly_accessible: false + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + required: + - app_pastelId + SHExecutionStats: + type: object + properties: + total_file_healing_failed: + type: integer + description: Total number of file healings that failed + example: 600035297633492919 + format: int64 + total_files_healed: + type: integer + description: Total number of files healed + example: 8639078711306985033 + format: int64 + total_reconstruction_not_required_evaluations_approved: + type: integer + description: Total number of reconstructions not required approved by verifier nodes + example: 5539198291737590419 + format: int64 + total_reconstruction_required_evaluations_approved: + type: integer + description: Total number of reconstructions approved by verifier nodes + example: 2764680129885746875 + format: int64 + total_reconstruction_required_evaluations_not_approved: + type: integer + description: Total number of reconstructions not approved by verifier nodes + example: 729077924371917902 + format: int64 + total_reconstruction_required_hash_mismatch: + type: integer + description: Total number of reconstructions required with hash mismatch + example: 965154047329691272 + format: int64 + total_reconstructions_not_required_evaluations_not_approved: + type: integer + description: Total number of reconstructions not required evaluation not approved by verifier nodes + example: 3895338302541362261 + format: int64 + total_self_healing_events_accepted: + type: integer + description: Total number of events accepted (healer node evaluated that reconstruction is required) + example: 447735336983725964 + format: int64 + total_self_healing_events_acknowledged: + type: integer + description: Total number of events acknowledged by the healer node + example: 1010705405100376002 + format: int64 + total_self_healing_events_evaluations_unverified: + type: integer + description: Total number of challenge evaluations unverified by verifier nodes + example: 3438722586354257104 + format: int64 + total_self_healing_events_evaluations_verified: + type: integer + description: Total number of challenges verified + example: 1974367370018426106 + format: int64 + total_self_healing_events_issued: + type: integer + description: Total number of self-healing events issued + example: 4802944690403323506 + format: int64 + total_self_healing_events_rejected: + type: integer + description: Total number of events rejected (healer node evaluated that reconstruction is not required) + example: 2869225782216519834 + format: int64 + description: Self-healing execution stats + example: + total_file_healing_failed: 6356734628013537993 + total_files_healed: 7363763434478222822 + total_reconstruction_not_required_evaluations_approved: 5922279983601605385 + total_reconstruction_required_evaluations_approved: 282068039988137384 + total_reconstruction_required_evaluations_not_approved: 1071365249693659128 + total_reconstruction_required_hash_mismatch: 5432621285288541737 + total_reconstructions_not_required_evaluations_not_approved: 2615228122055479737 + total_self_healing_events_accepted: 547812972672561730 + total_self_healing_events_acknowledged: 7389611438520604255 + total_self_healing_events_evaluations_unverified: 5818042888904850105 + total_self_healing_events_evaluations_verified: 2955050043126000894 + total_self_healing_events_issued: 7749784342702682559 + total_self_healing_events_rejected: 3277213621180435391 + required: + - total_self_healing_events_issued + - total_self_healing_events_acknowledged + - total_self_healing_events_rejected + - total_self_healing_events_accepted + - total_self_healing_events_evaluations_verified + - total_reconstruction_required_evaluations_approved + - total_reconstruction_not_required_evaluations_approved + - total_self_healing_events_evaluations_unverified + - total_reconstruction_required_evaluations_not_approved + - total_reconstructions_not_required_evaluations_not_approved + - total_files_healed + - total_file_healing_failed + SHTriggerStats: + type: object + properties: + list_of_nodes: + type: string + description: Comma-separated list of offline nodes + example: A officia iusto et dignissimos ea. + nodes_offline: + type: integer + description: Number of nodes offline + example: 3219136894373510389 + format: int64 + total_files_identified: + type: integer + description: Total number of files identified for self-healing + example: 7480284090582634898 + format: int64 + total_tickets_identified: + type: integer + description: Total number of tickets identified for self-healing + example: 4696543953839667998 + format: int64 + trigger_id: + type: string + description: Unique identifier for the trigger + example: Qui laudantium maiores magnam numquam sed. + description: Self-healing trigger stats + example: + list_of_nodes: Vel eveniet odit voluptas ea. + nodes_offline: 2106324933418549113 + total_files_identified: 7665255617375603928 + total_tickets_identified: 5348384551062672275 + trigger_id: Et et id expedita. + required: + - trigger_id + - nodes_offline + - list_of_nodes + - total_files_identified + - total_tickets_identified + SelfHealingChallengeData: + type: object + properties: + block: + type: integer + example: 15564711 + format: int32 + event_tickets: + type: array + items: + $ref: '#/components/schemas/EventTicket' + example: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: + type: string + example: Dolor harum laborum non qui. + nodes_on_watchlist: + type: string + example: Est dolores quas id. + timestamp: + type: string + example: Unde soluta ad. + example: + block: 1798339404 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Consectetur tenetur quas quia a adipisci esse. + nodes_on_watchlist: Rem dicta. + timestamp: Excepturi laudantium consectetur fugit quibusdam sit. + SelfHealingMessage: + type: object + properties: + data: + $ref: '#/components/schemas/SelfHealingMessageData' + message_type: + type: string + example: Qui nostrum et harum enim voluptates et. + sender_id: + type: string + example: Accusantium deleniti ut enim et rem eos. + sender_signature: + type: string + example: + - 82 + - 101 + - 112 + - 114 + - 101 + - 104 + - 101 + - 110 + - 100 + - 101 + - 114 + - 105 + - 116 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 101 + - 109 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 46 + format: binary + trigger_id: + type: string + example: Et debitis. + example: + data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 + - 114 + - 111 - 32 - - 100 + - 110 - 105 - - 99 - - 116 - - 97 + - 104 + - 105 + - 108 - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - - 111 - - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - - 108 - - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 - 116 - 32 + - 101 + - 120 + - 112 + - 101 - 100 - - 111 - - 108 - - 111 - - 114 + - 105 + - 116 + - 97 - 32 + - 105 - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 - 101 - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 - 101 - - 99 - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 - 117 - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 - 97 + - 116 + - 105 + - 98 - 117 + - 115 + - 32 + - 101 + - 115 - 116 - 32 - - 100 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 - 105 - - 99 - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 - 97 + - 109 + - 32 + - 117 + - 116 - 46 - trigger_id: Ut omnis. + message_type: Similique nam et odio vero consectetur. + sender_id: Ea aut quaerat ut rem sunt alias. + sender_signature: + - 77 + - 97 + - 103 + - 110 + - 105 + - 32 + - 97 + - 117 + - 116 + - 101 + - 109 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 110 + - 116 + - 105 + - 117 + - 109 + - 32 + - 115 + - 105 + - 116 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 32 + - 113 + - 117 + - 97 + - 101 + - 114 + - 97 + - 116 + - 32 + - 101 + - 116 + - 46 + trigger_id: Eveniet non vitae qui ducimus. + SelfHealingMessageData: + type: object + properties: + challenger_id: + type: string + example: Cum mollitia magni aut molestiae similique. + event_details: + $ref: '#/components/schemas/SelfHealingChallengeData' + recipient_id: + type: string + example: Consequuntur necessitatibus eveniet. + response: + $ref: '#/components/schemas/SelfHealingResponseData' + verification: + $ref: '#/components/schemas/SelfHealingVerificationData' example: + challenger_id: Voluptas est. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Nihil sit maiores sapiente. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + SelfHealingMessageKV: + type: object + properties: + message_type: + type: string + description: Message type + example: Ipsum accusantium rerum. messages: - - message_type: Recusandae ipsa sit ipsa. - messages: + type: array + items: + $ref: '#/components/schemas/SelfHealingMessage' + description: Self-healing messages + example: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 - 109 - 32 - - 105 + - 97 - 112 - - 115 - - 117 + - 101 + - 114 + - 105 + - 97 - 109 - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 - 105 - 116 + - 32 + - 105 + - 112 + - 115 - 97 + - 32 - 113 - 117 + - 105 + - 32 - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 - 114 + - 105 - 111 + - 114 + - 101 + - 115 + - 32 - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 - 105 - - 100 + - 98 + - 117 + - 115 + - 32 - 101 + - 115 + - 116 + - 32 + - 110 + - 111 - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: + Ut culpa.: - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 + - 114 + - 111 - 32 - - 112 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -18794,241 +16863,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -19038,1219 +17101,3355 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 - - 101 - - 32 - 112 + - 101 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 + - 97 + - 109 + - 32 + - 117 - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + example: + message_type: Amet qui voluptatibus magni consectetur voluptate. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + SelfHealingReport: + type: object + properties: + messages: + type: array + items: + $ref: '#/components/schemas/SelfHealingMessageKV' + description: Map of message type to SelfHealingMessages + example: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 + - 117 + - 116 + - 32 + - 101 + - 120 + - 112 + - 101 + - 100 + - 105 + - 116 + - 97 + - 32 + - 105 + - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 + - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 + - 112 + - 116 + - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + example: + messages: + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 + - 86 - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 - - 116 - 111 - 32 - - 118 - - 101 - - 108 - - 105 - - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - 110 - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - - 32 - - 111 - - 99 - - 99 - - 97 - - 101 - - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - - 115 - - 32 - - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 + - 104 - 105 - - 32 - - 117 - - 108 - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - 32 + - 110 - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 + - 104 - 105 - - 100 - - 101 - - 110 - - 116 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 - - 105 - 101 - - 110 - - 116 + - 114 + - 105 + - 111 + - 114 - 101 - - 32 - 115 - - 101 - - 113 - - 117 - - 105 - 32 - - 117 - - 108 + - 118 + - 111 - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. - messages: - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - 116 - 97 - - 113 + - 116 + - 105 + - 98 - 117 - - 101 + - 115 - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 + - 115 - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 + - 32 + - 110 + - 111 - 110 - - 97 - - 109 - 32 - 105 - - 112 - 115 - - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 + - 112 - 101 - - 99 + - 108 + - 108 + - 97 - 116 + - 46 + Ut culpa.: + - 77 - 111 - - 32 - - 118 - - 101 + - 108 - 108 - 105 - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - 105 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - - 105 - 32 - - 111 - - 99 - - 99 - - 97 + - 114 - 101 - 99 - - 97 - - 116 - - 105 - - 32 - - 118 - - 111 - - 108 - 117 - - 112 - - 116 - - 97 - - 116 - - 101 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 - - 105 - 101 - - 110 - - 116 + - 114 + - 105 + - 111 + - 114 - 101 - - 32 - 115 - - 101 - - 113 - - 117 - - 105 - 32 - - 117 - - 108 + - 118 + - 111 - 108 + - 117 + - 112 + - 116 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 + - 116 + - 105 + - 98 - 117 + - 115 + - 32 - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 + - 115 + - 116 + - 32 + - 110 + - 111 - 110 - - 97 - - 109 - 32 - 105 - - 112 - 115 - - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 + - 112 + - 101 + - 108 + - 108 + - 97 - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: + Ut culpa.: - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -20260,241 +20459,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: + Ut culpa.: - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 111 + - 108 + - 108 - 105 - 116 + - 105 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -20504,256 +20697,250 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. SelfHealingReportKV: type: object properties: event_id: type: string description: Challenge ID - example: Praesentium ducimus ea voluptates optio et sed. + example: Dolor hic. report: $ref: '#/components/schemas/SelfHealingReport' example: - event_id: Dolorum velit aliquam eum quod aut. + event_id: Sit sint explicabo molestias aliquam repellendus. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -20763,241 +20950,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -21007,241 +21188,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -21251,241 +21428,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -21495,243 +21666,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 - 110 - 105 - - 115 - - 32 - - 97 - - 117 + - 101 - 116 - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - 105 + - 100 - 32 - - 111 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -21741,241 +21906,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 - - 116 + - 105 - 32 - - 97 - - 100 + - 101 + - 118 + - 101 + - 110 - 105 - - 112 + - 101 + - 116 + - 32 - 105 - - 115 + - 100 + - 32 + - 97 + - 99 - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 - - 32 - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 - - 97 - - 116 - - 105 + - 115 - 32 - 118 - 111 @@ -21985,571 +22144,572 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 + - 86 + - 101 + - 114 + - 111 + - 32 - 110 - - 97 - - 109 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 - 117 - - 109 + - 116 - 32 + - 101 + - 120 + - 112 + - 101 + - 100 - 105 - 116 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - - 114 - - 111 - - 118 - 105 - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 - 101 - - 110 + - 108 + - 105 - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - 32 - 105 - 112 - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - 97 + - 32 - 113 - 117 - - 101 + - 105 - 32 - - 112 - - 114 - - 111 + - 101 - 118 - - 105 - - 100 - 101 - 110 + - 105 + - 101 - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: - 65 + - 115 + - 112 + - 101 - 114 - - 99 - - 104 - 105 - - 116 - - 101 - - 99 - - 116 - 111 + - 114 + - 101 + - 115 - 32 - 118 - - 101 + - 111 - 108 - - 105 + - 117 + - 112 + - 116 + - 97 - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - 105 + - 98 + - 117 - 115 - 32 - - 97 - - 117 + - 101 + - 115 - 116 - 32 - - 97 - - 100 - - 105 - - 112 + - 110 + - 111 + - 110 + - 32 - 105 - 115 - - 99 - - 105 + - 116 + - 101 - 32 - - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 + - 112 + - 101 + - 108 + - 108 - 97 - 116 - - 105 - - 32 - - 118 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - 101 - - 32 - - 115 - - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 - 32 - - 97 - - 100 - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 + - 114 - 105 + - 111 + - 114 + - 101 - 115 - - 99 - - 105 - 32 + - 118 - 111 - - 99 - - 99 + - 108 + - 117 + - 112 + - 116 - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - - 99 - - 97 + - 115 - 116 + - 32 + - 110 + - 111 + - 110 + - 32 - 105 + - 115 + - 116 + - 101 - 32 - - 118 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. SelfHealingReports: type: object properties: @@ -22559,169 +22719,152 @@ components: $ref: '#/components/schemas/SelfHealingReportKV' description: Map of challenge ID to SelfHealingReport example: - - event_id: Eum itaque totam dicta. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -22731,485 +22874,475 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 - 97 - - 98 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 - - 105 - 101 - - 110 - - 116 + - 114 + - 105 + - 111 + - 114 - 101 - - 32 - 115 - - 101 - - 113 - - 117 - - 105 - 32 - - 117 - - 108 + - 118 + - 111 - 108 + - 117 + - 112 + - 116 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 + - 116 + - 105 + - 98 - 117 + - 115 + - 32 - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 + - 115 + - 116 + - 32 + - 110 + - 111 - 110 - - 97 - - 109 - 32 - 105 - - 112 - 115 - - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 + - 112 + - 101 + - 108 + - 108 + - 97 - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: + Ut culpa.: - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -23219,241 +23352,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 - 105 - 116 + - 105 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -23463,243 +23590,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -23709,241 +23830,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 - - 114 - - 111 - - 118 - - 105 - - 100 + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -23953,241 +24068,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - 32 + - 110 - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 104 - 105 - - 116 - - 97 - - 113 - - 117 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -24197,241 +24308,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -24441,246 +24546,240 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 - 110 - 105 - - 115 - - 32 - - 97 - - 117 + - 101 - 116 - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - 105 + - 100 - 32 - - 111 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -24690,241 +24789,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 - - 116 + - 105 - 32 - - 97 - - 100 + - 101 + - 118 + - 101 + - 110 - 105 - - 112 + - 101 + - 116 + - 32 - 105 - - 115 + - 100 + - 32 + - 97 - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 - - 32 - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 - - 97 - - 116 - - 105 + - 115 - 32 - 118 - 111 @@ -24934,485 +25027,475 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 - 32 - - 97 + - 105 - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 + - 32 + - 118 + - 111 + - 108 + - 117 - 112 + - 116 + - 97 + - 116 - 105 + - 98 + - 117 - 115 - - 99 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 - 105 + - 115 + - 116 + - 101 - 32 - - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 + - 112 + - 101 + - 108 + - 108 - 97 - 116 - - 105 - - 32 - - 118 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - 101 - - 32 - - 115 - - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -25421,244 +25504,238 @@ components: - 112 - 116 - 97 - - 116 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -25668,485 +25745,475 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + - 116 + - 101 + - 32 + - 114 + - 101 - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 - 105 + - 97 + - 32 + - 114 - 101 + - 99 + - 117 + - 115 + - 97 - 110 - - 116 + - 100 + - 97 - 101 - 32 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 - - 105 - 101 - - 110 - - 116 + - 114 + - 105 + - 111 + - 114 - 101 - - 32 - 115 - - 101 - - 113 - - 117 - - 105 - 32 - - 117 - - 108 + - 118 + - 111 - 108 + - 117 + - 112 + - 116 - 97 - - 109 - - 32 - - 110 - - 101 - - 113 + - 116 + - 105 + - 98 - 117 + - 115 + - 32 - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 + - 115 + - 116 + - 32 + - 110 + - 111 - 110 - - 97 - - 109 - 32 - 105 - - 112 - 115 - - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 + - 112 + - 101 + - 108 + - 108 + - 97 - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: + Ut culpa.: - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -26156,241 +26223,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 - - 117 - - 116 - - 32 - - 100 + - 113 + - 117 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -26400,248 +26461,242 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. example: reports: - - event_id: Eum itaque totam dicta. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -26651,241 +26706,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - 32 + - 110 - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 104 - 105 - - 116 - - 97 - - 113 - - 117 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -26895,241 +26944,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -27139,241 +27184,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 + - 105 + - 32 + - 101 + - 118 + - 101 - 110 - 105 - - 115 - - 32 - - 97 - - 117 + - 101 - 116 - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - 105 + - 100 - 32 - - 111 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -27383,243 +27422,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 - 99 + - 117 + - 115 - 97 - - 116 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 + - 101 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -27629,485 +27662,475 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 - 32 - - 97 - - 100 - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 + - 114 - 105 + - 111 + - 114 + - 101 - 115 - - 99 - - 105 - 32 + - 118 - 111 - - 99 - - 99 + - 108 + - 117 + - 112 + - 116 - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 + - 32 + - 114 - 101 - - 99 + - 112 + - 101 + - 108 + - 108 - 97 - 116 - - 105 - - 32 - - 118 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -28117,241 +28140,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 + - 32 + - 110 + - 111 + - 110 + - 32 + - 105 + - 115 + - 116 + - 101 - 32 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 - 97 - - 98 - 32 - - 100 - - 117 + - 114 + - 101 - 99 - - 105 - - 109 - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - 97 - - 112 - - 105 - - 101 - 110 - - 116 + - 100 + - 97 - 101 - 32 - - 115 - - 101 - - 113 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 105 + - 109 - 32 - - 117 - - 108 - - 108 + - 97 + - 112 + - 101 + - 114 + - 105 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -28361,246 +28378,240 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 - 101 - - 113 - - 117 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 - 117 - - 108 - - 108 + - 115 + - 97 + - 110 + - 100 - 97 + - 101 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 - 109 - 32 - - 110 + - 97 + - 112 - 101 - - 113 + - 114 + - 105 + - 97 + - 109 + - 32 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -28610,241 +28621,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 + - 105 + - 100 + - 101 + - 109 - 32 - - 100 - - 105 - - 99 - - 116 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -28854,241 +28859,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 - - 101 - - 32 - - 112 + - 86 + - 101 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -29098,241 +29099,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 - - 101 - - 32 - 112 + - 101 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - 97 - 109 - 32 - - 105 - - 112 - - 115 - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -29342,243 +29337,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 65 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -29588,241 +29577,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 + - 105 + - 116 + - 32 + - 105 + - 112 + - 115 + - 97 + - 32 + - 113 + - 117 - 105 - - 115 - 32 - - 97 - - 117 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 - 32 - - 97 - - 100 - - 105 - - 112 - - 105 - - 115 - - 99 - 105 + - 100 - 32 - - 111 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -29832,241 +29815,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 - - 116 + - 105 - 32 - - 97 - - 100 + - 101 + - 118 + - 101 + - 110 - 105 - - 112 + - 101 + - 116 + - 32 - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 - 115 - - 99 + - 112 + - 101 + - 114 - 105 - - 32 - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 - - 97 - - 116 - - 105 + - 115 - 32 - 118 - 111 @@ -30076,734 +30055,716 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 + - 86 + - 101 + - 114 + - 111 + - 32 - 110 - - 97 - - 109 + - 105 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 + - 101 + - 114 + - 111 - 32 + - 110 - 105 - - 112 - - 115 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. + response: + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. + responded_ticket: + is_reconstruction_required: false + missing_keys: + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. + reconstructed_file_hash: + - 65 - 117 - - 109 + - 116 - 32 + - 101 + - 120 + - 112 + - 101 + - 100 - 105 - 116 - 97 - - 113 - - 117 - - 101 - 32 - - 112 - - 114 - - 111 - - 118 - 105 - 100 + - 46 + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. + verifiers: + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. + verification: + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. + verified_ticket: + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. + missing_keys: + - Facilis illum. + - Vel ratione a occaecati veniam. + reconstructed_file_hash: + - 86 - 101 - - 110 + - 108 + - 105 - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - 32 - 105 - 112 - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - 97 + - 32 - 113 - 117 - - 101 + - 105 - 32 - - 112 - - 114 - - 111 + - 101 - 118 - - 105 - - 100 - 101 - 110 + - 105 + - 101 - 116 + - 32 + - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. - response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. - responded_ticket: - is_reconstruction_required: true - missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. - reconstructed_file_hash: + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: - 65 + - 115 + - 112 + - 101 - 114 - - 99 - - 104 - 105 - - 116 - - 101 - - 99 - - 116 - 111 + - 114 + - 101 + - 115 - 32 - 118 - - 101 + - 111 - 108 - - 105 + - 117 + - 112 + - 116 + - 97 - 116 - - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. - verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. - verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. - verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. - missing_keys: - - Et quia. - - Qui vel dolor. - reconstructed_file_hash: - - 79 - - 109 - - 110 - 105 + - 98 + - 117 - 115 - 32 - - 97 - - 117 + - 101 + - 115 - 116 - 32 - - 97 - - 100 - - 105 - - 112 + - 110 + - 111 + - 110 + - 32 - 105 - 115 - - 99 - - 105 + - 116 + - 101 - 32 - - 111 - - 99 - - 99 - - 97 + - 114 - 101 - - 99 + - 112 + - 101 + - 108 + - 108 - 97 - 116 - - 105 - - 32 - - 118 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - event_id: Eum itaque totam dicta. + trigger_id: Totam qui. + - event_id: Architecto illo amet et sunt velit repellat. report: messages: - - message_type: Recusandae ipsa sit ipsa. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 + - 116 - 32 + - 105 + - 112 + - 115 - 97 + - 32 + - 113 - 117 + - 105 + - 32 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 - 32 - - 97 - - 100 - 105 + - 100 + - 32 + - 97 + - 99 + - 99 + - 117 + - 115 + - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 - 112 + - 101 + - 114 - 105 + - 111 + - 114 + - 101 - 115 - - 99 - - 105 - 32 + - 118 - 111 - - 99 - - 99 + - 108 + - 117 + - 112 + - 116 - 97 + - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - - 99 - - 97 + - 115 - 116 + - 32 + - 110 + - 111 + - 110 + - 32 - 105 + - 115 + - 116 + - 101 - 32 - - 118 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 - 111 - 108 - - 117 - - 112 + - 108 + - 105 - 116 + - 105 - 97 - - 116 + - 32 + - 114 - 101 + - 99 + - 117 - 115 - - 32 - 97 - - 98 + - 110 + - 100 + - 97 + - 101 - 32 - 100 + - 111 + - 108 + - 111 + - 114 - 117 - - 99 - - 105 - 109 - - 117 - - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 + - 32 - 97 - 112 - - 105 - - 101 - - 110 - - 116 - - 101 - - 32 - - 115 - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -30813,485 +30774,475 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + - 116 + - 101 + - 32 + - 114 + - 101 - 112 + - 101 + - 108 + - 108 + - 97 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 - 105 + - 97 + - 32 + - 114 - 101 + - 99 + - 117 + - 115 + - 97 - 110 - - 116 + - 100 + - 97 - 101 - 32 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 + - 117 + - 109 + - 32 + - 97 + - 112 - 101 - - 113 - - 117 + - 114 - 105 - - 32 - - 117 - - 108 - - 108 - 97 - 109 - 32 - - 110 - - 101 - - 113 - 117 - - 101 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 + Earum consectetur et.: + - 65 + - 115 - 112 - - 105 - 101 - - 110 - - 116 + - 114 + - 105 + - 111 + - 114 - 101 - - 32 - 115 - - 101 - - 113 - - 117 - - 105 - 32 - - 117 - - 108 + - 118 + - 111 - 108 - - 97 - - 109 - - 32 - - 110 - - 101 - - 113 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 - - 97 - - 103 - - 110 + - 112 + - 116 - 97 - - 109 - - 32 + - 116 - 105 - - 112 - - 115 + - 98 - 117 - - 109 + - 115 + - 32 + - 101 + - 115 + - 116 + - 32 + - 110 + - 111 + - 110 - 32 - 105 + - 115 - 116 - - 97 - - 113 - - 117 - 101 - 32 - - 112 - 114 - - 111 - - 118 - - 105 - - 100 - 101 - - 110 + - 112 + - 101 + - 108 + - 108 + - 97 - 116 - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: + Ut culpa.: - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 + - 32 + - 114 + - 101 + - 99 + - 117 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -31301,243 +31252,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 - - 117 - - 116 - - 32 - - 100 + - 113 + - 117 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. - - message_type: Recusandae ipsa sit ipsa. + trigger_id: Totam qui. + - message_type: Id ex ea. messages: - data: - challenger_id: Omnis in quaerat molestiae iusto. + challenger_id: Magnam ipsum itaque provident. event_details: - block: 1202389484 + block: 1887029882 event_tickets: - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -31547,241 +31492,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 + - 97 + - 112 + - 101 + - 114 - 105 - - 116 - 97 - - 113 + - 109 + - 32 - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. - data_hash: - - 77 - - 97 - - 103 - - 110 - - 97 - - 109 - - 32 - - 105 - - 112 - - 115 - - 117 - - 109 - - 32 - - 105 - - 116 - - 97 - - 113 - - 117 + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -31791,241 +31730,237 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 - - 101 - - 32 - 112 + - 101 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - 97 - 109 - 32 + - 117 + - 116 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - message_type: Id ex ea. + messages: + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 + - 101 + - 114 + - 111 + - 32 + - 110 - 105 - - 112 - - 115 - - 117 - - 109 - - 32 + - 104 - 105 - - 116 - - 97 - - 113 - - 117 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 - - 105 - - 100 - - 101 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -32035,241 +31970,235 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 - - 110 + - 114 - 101 - - 113 + - 99 - 117 - - 101 - - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. - sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 - - 115 - - 32 - - 97 - - 117 - - 116 - - 32 - - 100 - - 105 - - 99 - - 116 - - 97 - - 46 - trigger_id: Ut omnis. - - data: - challenger_id: Omnis in quaerat molestiae iusto. - event_details: - block: 1202389484 - event_tickets: - - data_hash: - - 77 + - 115 - 97 - - 103 - 110 + - 100 - 97 - - 109 + - 101 - 32 - - 105 - - 112 - - 115 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 - 109 - 32 - - 105 - - 116 - 97 - - 113 - - 117 - - 101 - - 32 - 112 + - 101 - 114 - - 111 - - 118 - 105 - - 100 - - 101 - - 110 - - 116 - - 46 - missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - - data_hash: - - 77 - - 97 - - 103 - - 110 - 97 - 109 - 32 - - 105 - - 112 - - 115 - 117 - - 109 - - 32 - - 105 - 116 - - 97 - - 113 - - 117 + - 46 + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. + sender_signature: + - 79 + - 109 + - 110 + - 105 + - 115 + - 32 + - 113 + - 117 + - 105 + - 100 + - 101 + - 109 + - 32 + - 110 + - 97 + - 109 + - 46 + trigger_id: Totam qui. + - data: + challenger_id: Magnam ipsum itaque provident. + event_details: + block: 1887029882 + event_tickets: + - data_hash: + - 86 - 101 - - 32 - - 112 - 114 - 111 - - 118 + - 32 + - 110 - 105 - - 100 + - 104 + - 105 + - 108 + - 46 + missing_keys: + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + - data_hash: + - 86 - 101 + - 114 + - 111 + - 32 - 110 - - 116 + - 105 + - 104 + - 105 + - 108 - 46 missing_keys: - - Totam qui. - - Aliquam quidem. - recipient: Aliquid voluptatem. - ticket_type: Repellat qui reprehenderit id ex ea. - tx_id: Amet et sunt. - merkelroot: Aperiam voluptates magnam. - nodes_on_watchlist: Et iste nisi eos. - timestamp: Voluptatem nobis. - recipient_id: Sed a cupiditate repellat at non et. + - Qui voluptatibus aspernatur ducimus omnis. + - Veniam porro corrupti voluptates consequatur. + recipient: Molestias quia aut rerum expedita. + ticket_type: Sunt consectetur laudantium. + tx_id: Totam et. + merkelroot: Iste nisi eos. + nodes_on_watchlist: Nostrum fuga excepturi. + timestamp: Sapiente nulla ipsum qui. + recipient_id: Aliquid voluptatem. response: - block: 1982812630 - event_id: Sapiente nulla ipsum qui. - merkelroot: Totam et. + block: 1678684821 + event_id: Architecto velit. + merkelroot: Non quibusdam sit id pariatur minima est. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Sunt consectetur laudantium. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Aut voluptas repellat beatae voluptatibus sint modi. verifiers: - - Quibusdam sit id pariatur. - - Est consectetur aut voluptas repellat. + - Ex qui. + - Dolor molestiae omnis aut adipisci occaecati. + - Ab ducimus quis. verification: - block: 125244077 - event_id: Voluptatibus sint modi voluptas quisquam quisquam. - merkelroot: Quo quia doloribus aut numquam deleniti. - timestamp: Esse dolorem id molestiae iusto. + block: 955150212 + event_id: Voluptas libero. + merkelroot: Est aut voluptas nihil et. + timestamp: Sed suscipit sapiente. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 + - 101 + - 118 + - 101 + - 110 + - 105 + - 101 + - 116 + - 32 + - 105 + - 100 + - 32 + - 97 - 99 - 99 + - 117 + - 115 - 97 + - 109 + - 117 + - 115 + - 46 + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. + verifiers_data: + Earum consectetur et.: + - 65 + - 115 + - 112 - 101 - - 99 - - 97 - - 116 + - 114 - 105 + - 111 + - 114 + - 101 + - 115 - 32 - 118 - 111 @@ -32279,431 +32208,361 @@ components: - 116 - 97 - 116 + - 105 + - 98 + - 117 + - 115 + - 32 - 101 - 115 + - 116 - 32 - - 97 - - 98 + - 110 + - 111 + - 110 - 32 - - 100 - - 117 - - 99 - 105 - - 109 - - 117 - 115 - - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. - verifiers_data: - Voluptas nihil et voluptates sed.: - - 83 - - 97 - - 112 - - 105 - - 101 - - 110 - 116 - 101 - 32 - - 115 + - 114 + - 101 + - 112 - 101 - - 113 - - 117 - - 105 - - 32 - - 117 - 108 - 108 - 97 - - 109 + - 116 + - 46 + Ut culpa.: + - 77 + - 111 + - 108 + - 108 + - 105 + - 116 + - 105 + - 97 - 32 + - 114 + - 101 + - 99 + - 117 + - 115 + - 97 - 110 + - 100 + - 97 - 101 - - 113 + - 32 + - 100 + - 111 + - 108 + - 111 + - 114 - 117 + - 109 + - 32 + - 97 + - 112 - 101 + - 114 + - 105 + - 97 + - 109 + - 32 + - 117 + - 116 - 46 - message_type: Delectus aut rerum. - sender_id: Quas ut natus beatae voluptatem quis dolorum. + message_type: Aliquam quidem. + sender_id: Molestiae illum neque quia quos autem. sender_signature: - - 85 - - 116 - - 32 - - 100 - - 111 - - 108 - - 111 - - 114 - - 32 - - 100 - - 101 - - 108 - - 101 - - 99 - - 116 - - 117 + - 79 + - 109 + - 110 + - 105 - 115 - 32 - - 97 + - 113 - 117 - - 116 - - 32 - - 100 - 105 - - 99 - - 116 + - 100 + - 101 + - 109 + - 32 + - 110 - 97 + - 109 - 46 - trigger_id: Ut omnis. + trigger_id: Totam qui. SelfHealingResponseData: type: object properties: block: type: integer - example: 15564711 + example: 1587956188 format: int32 event_id: type: string - example: Consequuntur necessitatibus eveniet. + example: Id labore. merkelroot: type: string - example: Dolor harum laborum non qui. + example: Accusamus et perspiciatis cumque praesentium ut. responded_ticket: $ref: '#/components/schemas/RespondedTicket' timestamp: type: string - example: Unde soluta ad. + example: Ipsa odit atque dicta non ab. verifiers: type: array items: type: string - example: Qui ut qui ut. + example: Dignissimos impedit. example: - - Sequi veritatis fuga consequuntur maxime aut. - - Voluptas est. + - Debitis voluptatem. + - Ea molestias. + - Autem soluta. + - Provident ea molestiae ea et nisi aut. example: - block: 1344120165 - event_id: Quas id id ut consectetur. - merkelroot: Quia a adipisci esse. + block: 1515814838 + event_id: Provident aperiam molestiae ipsum. + merkelroot: Aut enim. responded_ticket: - is_reconstruction_required: true + is_reconstruction_required: false missing_keys: - - Nihil molestias. - - Quia aut. - - Expedita ea nostrum fuga excepturi. + - Dolorem id molestiae iusto quo saepe. + - Nisi est est veritatis est dolor. reconstructed_file_hash: - 65 - - 114 - - 99 - - 104 - - 105 - - 116 - - 101 - - 99 + - 117 - 116 - - 111 - 32 - - 118 - 101 - - 108 + - 120 + - 112 + - 101 + - 100 - 105 - 116 + - 97 + - 32 + - 105 + - 100 - 46 - ticket_type: Veniam porro corrupti voluptates consequatur. - tx_id: Ipsam qui voluptatibus aspernatur ducimus omnis. - timestamp: Excepturi laudantium consectetur fugit quibusdam sit. + ticket_type: Numquam deleniti. + tx_id: Quisquam quisquam voluptatem eligendi quo quia doloribus. + timestamp: Est aut ut. verifiers: - - Rem dicta. - - Id labore. - - Modi accusamus et perspiciatis cumque praesentium. - - Ut ipsa odit. + - Officiis ipsum quidem. + - Et cumque consectetur expedita dolor ea quos. + - Voluptatem et. SelfHealingVerificationData: type: object properties: block: type: integer - example: 1701068661 + example: 1762192540 format: int32 event_id: type: string - example: Dicta non. + example: Iure non. merkelroot: type: string - example: Magnam omnis debitis consequatur aspernatur excepturi. + example: Incidunt veniam debitis repellendus modi dignissimos voluptas. timestamp: type: string - example: Numquam consectetur voluptatum. + example: Magni qui. verified_ticket: $ref: '#/components/schemas/VerifiedTicket' verifiers_data: type: object example: - Et et iure.: - - 86 - - 111 - - 108 - - 117 - - 112 + Accusantium sit incidunt dolore assumenda.: + - 69 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 + - 104 - 97 - - 116 + - 114 - 117 - 109 - 32 - - 114 - - 101 - - 112 + - 113 - 117 - - 100 - 105 - - 97 - - 110 - - 100 - - 97 - - 101 - 32 - - 105 - - 110 - - 99 - - 105 - - 100 + - 101 + - 115 + - 116 + - 46 + Qui ipsa dolorum velit aliquam eum quod.: + - 86 + - 111 + - 108 - 117 - - 110 + - 112 - 116 - - 32 - - 118 - - 101 - - 110 - - 105 - 97 - - 109 - - 32 - - 100 - - 101 - - 98 - - 105 - 116 - - 105 - - 115 + - 101 - 32 + - 104 + - 97 - 114 - - 101 - - 112 - - 101 - - 108 - - 108 - - 101 - - 110 - - 100 - 117 - - 115 - - 32 - 109 + - 32 + - 118 - 111 - - 100 - - 105 - - 46 - Voluptas atque magni qui dolore et rerum.: - - 70 + - 108 + - 117 + - 112 + - 116 - 97 - - 99 + - 116 - 101 + - 109 + - 32 + - 100 + - 111 + - 108 + - 111 - 114 + - 117 + - 109 + - 32 + - 97 + - 116 + - 113 + - 117 - 101 - 32 - - 114 + - 115 - 101 - - 112 + - 113 - 117 - - 100 - 105 + - 32 - 97 + - 115 + - 112 + - 101 + - 114 - 110 - - 100 - 97 - - 101 + - 116 + - 117 + - 114 - 46 additionalProperties: type: string example: - - 67 - - 111 + - 66 + - 108 + - 97 - 110 - - 115 - - 101 - - 99 - - 116 - - 101 - - 116 - - 117 - - 114 - - 32 - - 101 - - 120 - - 112 - - 101 - 100 - 105 - 116 - - 97 + - 105 + - 105 + - 115 - 32 - - 100 + - 118 - 111 - 108 - - 111 - - 114 - - 32 - - 101 - - 97 - - 32 - - 113 - 117 - - 111 + - 112 + - 116 + - 97 - 115 - 46 format: binary example: - block: 469848106 - event_id: Voluptatum est. - merkelroot: Quo consequuntur id. - timestamp: Est vero qui itaque facilis ut et. + block: 1147500050 + event_id: Amet quaerat blanditiis consequatur et perferendis. + merkelroot: Aut non explicabo eligendi ea. + timestamp: Ratione fuga nobis incidunt est. verified_ticket: - is_reconstruction_required: false - is_verified: true - message: Libero et alias. + is_reconstruction_required: true + is_verified: false + message: Ab aliquid totam nesciunt autem vel. missing_keys: - - Et quia. - - Qui vel dolor. + - Facilis illum. + - Vel ratione a occaecati veniam. reconstructed_file_hash: - - 79 - - 109 - - 110 + - 86 + - 101 + - 108 - 105 - - 115 - - 32 - - 97 - - 117 - 116 - 32 - - 97 - - 100 - 105 - 112 - - 105 - 115 - - 99 + - 97 + - 32 + - 113 + - 117 - 105 - 32 - - 111 - - 99 - - 99 - - 97 - 101 - - 99 - - 97 + - 118 + - 101 + - 110 + - 105 + - 101 - 116 + - 32 - 105 + - 100 - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - 97 - - 116 - - 101 + - 99 + - 99 + - 117 - 115 - - 32 - 97 - - 98 - - 32 - - 100 - - 117 - - 99 - - 105 - 109 - 117 - 115 - 46 - ticket_type: Dolor qui aut expedita. - tx_id: Saepe excepturi nisi est est veritatis. + ticket_type: Quis dolorum similique ut dolor delectus. + tx_id: Ullam neque sint quas ut natus beatae. verifiers_data: - Consequuntur saepe qui.: - - 67 - - 117 - - 109 - - 32 - - 112 - - 114 - - 97 - - 101 - - 115 - - 101 - - 110 - - 116 - - 105 - - 117 - - 109 - - 32 - - 101 - - 120 - - 32 - - 113 - - 117 + Debitis nihil architecto.: + - 65 + - 108 - 105 - - 32 - 113 - 117 - - 105 - - 32 - - 115 - 97 - - 101 - - 112 - - 101 - - 46 - Deserunt omnis nesciunt et eos dolores.: - - 73 - - 115 - - 116 - - 101 + - 109 - 32 - - 110 + - 102 - 97 - - 116 - - 117 - - 115 - - 32 + - 99 + - 101 + - 114 - 101 - - 110 - - 105 - - 109 - 32 - - 105 - - 115 - - 116 - 101 - - 46 - Sed reprehenderit molestias odio sit facere repellat.: - - 83 - - 105 - - 110 - 116 - 32 - - 113 - - 117 - 105 + - 100 - 32 + - 109 - 105 - - 117 - - 114 - - 101 - - 32 + - 110 - 105 - - 112 - - 115 + - 109 - 97 - 46 StartProcessingRequestBody: @@ -32726,7 +32585,7 @@ components: type: array items: type: string - example: Rerum harum esse et. + example: Autem quod expedita consequatur. description: List of Burn transaction IDs for multi-volume registration example: - 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 @@ -32775,7 +32634,7 @@ components: type: string description: OpenAPI GroupID string default: PASTEL - example: Nulla eveniet non vitae qui ducimus. + example: Animi architecto ea. spendable_address: type: string description: 'Address to use for registration fee ' @@ -32787,7 +32646,7 @@ components: app_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 - open_api_group_id: Similique nam et odio vero consectetur. + open_api_group_id: Veniam quidem quia amet et qui. spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j required: - burn_txid @@ -32813,83 +32672,86 @@ components: challenge_id: type: string description: ID of the challenge - example: Amet qui voluptatibus magni consectetur voluptate. + example: Numquam autem aut. challenger_evaluation: $ref: '#/components/schemas/EvaluationData' challenger_id: type: string description: ID of the challenger - example: Numquam sed et eos a officia iusto. + example: Tenetur exercitationem et reprehenderit quo sed. message_type: type: string description: type of the message - example: Et nulla laudantium. + example: Fuga quos. observer_evaluation: $ref: '#/components/schemas/ObserverEvaluationData' observers: type: array items: type: string - example: Laboriosam vero fuga illum mollitia non ducimus. + example: Suscipit est libero tempore totam. description: List of observer IDs example: - - Laudantium animi architecto ea. - - Veniam quidem quia amet et qui. + - Odio minus repellendus. + - Explicabo molestiae dolorem. + - Doloribus consequatur et quis perspiciatis dolores fuga. recipient_id: type: string description: ID of the recipient - example: Rerum ut cum quo et. + example: Ea reprehenderit quia. response: $ref: '#/components/schemas/ResponseData' sender_id: type: string description: ID of the sender's node - example: Sint explicabo molestias aliquam repellendus nobis. + example: Deleniti et culpa doloremque id corrupti. sender_signature: type: string description: signature of the sender - example: Mollitia qui laudantium maiores. + example: Amet laudantium necessitatibus vero laborum. description: Storage challenge message data example: challenge: - block: 626674453 - end_index: 1362782358179080945 - file_hash: Molestias aut beatae. - merkelroot: Sint aut repellat consequatur dignissimos voluptatibus. - start_index: 6285852628941175332 - timestamp: Odio deleniti omnis maiores dolorem. - challenge_id: Provident voluptas dolorem. + block: 1533850580 + end_index: 3333691379975401886 + file_hash: Quidem deserunt rem. + merkelroot: Accusantium qui quod voluptas officiis. + start_index: 6009480957455380299 + timestamp: Quia repellendus labore architecto. + challenge_id: Vel inventore iusto voluptatem nihil tempora. challenger_evaluation: - block: 346663458 - hash: Voluptatem sint recusandae. + block: 1162046023 + hash: Aliquid voluptatum qui sit nemo accusamus. is_verified: true - merkelroot: Et rem ducimus maxime aut. - timestamp: Fugit eaque nesciunt eum quasi. - challenger_id: Omnis non neque ducimus alias magni rerum. - message_type: Voluptas odit quae quo ut saepe aperiam. + merkelroot: Id rem omnis iste eveniet eligendi veniam. + timestamp: Voluptatibus commodi iure ut unde voluptatum. + challenger_id: Itaque commodi. + message_type: Accusamus numquam qui modi laudantium incidunt quam. observer_evaluation: - block: 1725989442 + block: 1933870942 is_challenge_timestamp_ok: false is_challenger_signature_ok: true is_evaluation_result_ok: false is_evaluation_timestamp_ok: false is_process_timestamp_ok: false - is_recipient_signature_ok: false - merkelroot: Ut provident pariatur. - reason: Ut quia repellendus. - timestamp: Voluptas exercitationem quisquam id accusantium voluptatibus. - true_hash: Architecto sit quidem deserunt rem dolore aut. + is_recipient_signature_ok: true + merkelroot: Voluptates ipsum quibusdam facilis quos. + reason: Commodi quibusdam voluptatem quam itaque libero. + timestamp: Ea veniam ipsum esse est. + true_hash: Quas sit eum laudantium quo. observers: - - Qui dignissimos quae. - - Dolores dolor ut totam vel officia. - recipient_id: Fuga voluptatem libero tempora vel consectetur. + - Non rem rerum deserunt qui et. + - Quam cum ullam est quis voluptatem eum. + - Cumque deserunt. + - Exercitationem ut officia occaecati iure quisquam. + recipient_id: Hic sit cum sed. response: - block: 2076283382 - hash: Dolor autem quo vero quia quod omnis. - merkelroot: Et ullam officiis libero. - timestamp: Qui non quibusdam. - sender_id: Sunt libero hic. - sender_signature: Molestiae non fuga animi architecto. + block: 816684052 + hash: Explicabo nihil non occaecati accusamus. + merkelroot: Exercitationem quisquam id accusantium voluptatibus blanditiis dolorem. + timestamp: Asperiores pariatur et dolor dolore qui cum. + sender_id: Officia et accusantium. + sender_signature: Debitis tenetur exercitationem voluptates perspiciatis repudiandae. required: - challenge_id - message_type @@ -32904,13 +32766,13 @@ components: $ref: '#/components/schemas/HCSummaryStats' example: sc_summary_stats: - no_of_invalid_evaluation_observed_by_observers: 2982554539974798863 - no_of_invalid_signatures_observed_by_observers: 804645458629257575 - no_of_slow_responses_observed_by_observers: 6016941875889227877 - total_challenges_evaluated_by_challenger: 9084935928395605172 - total_challenges_issued: 554226313255902356 - total_challenges_processed_by_recipient: 9153767776266110855 - total_challenges_verified: 6924812056467069635 + no_of_invalid_evaluation_observed_by_observers: 5854226055096814600 + no_of_invalid_signatures_observed_by_observers: 4353527834150504494 + no_of_slow_responses_observed_by_observers: 1357252241103533124 + total_challenges_evaluated_by_challenger: 3728835119474173051 + total_challenges_issued: 6647138861710727929 + total_challenges_processed_by_recipient: 5873786866786505808 + total_challenges_verified: 6262794736214513307 required: - sc_summary_stats TaskHistory: @@ -32999,6 +32861,8 @@ components: - Error Not Enough Downloaded Filed - Error Download Failed - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch - Task Failed - Task Rejected - Task Completed @@ -33028,7 +32892,7 @@ components: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -33065,7 +32929,61 @@ components: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + - id: n6Qn6TFM + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Quos vel in corrupti. + royalty: 12 + series_name: Famous artist + spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j + thumbnail_coordinate: + bottom_right_x: 640 + bottom_right_y: 480 + top_left_x: 0 + top_left_y: 0 + youtube_url: https://www.youtube.com/watch?v=0xl6Ufo4ZX0 + txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + - id: n6Qn6TFM + status: Task Started + ticket: + burn_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + collection_act_txid: 576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58 + creator_name: Leonardo da Vinci + creator_pastelid: jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS + creator_website_url: https://www.leonardodavinci.net + description: The Mona Lisa is an oil painting by Italian artist, inventor, and writer Leonardo da Vinci. Likely completed in 1506, the piece features a portrait of a seated woman set against an imaginary landscape. + green: false + issued_copies: 1 + key: Basic abcdef12345 + keywords: Renaissance, sfumato, portrait + make_publicly_accessible: false + maximum_fee: 100 + name: Mona Lisa + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -33092,7 +33010,7 @@ components: make_publicly_accessible: false maximum_fee: 100 name: Mona Lisa - open_api_group_id: Dolorem repellendus omnis. + open_api_group_id: Quos vel in corrupti. royalty: 12 series_name: Famous artist spendable_address: PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j @@ -33159,6 +33077,8 @@ components: - Error Not Enough Downloaded Filed - Error Download Failed - Error Invalid Burn TxID + - Error Ownership Not Match + - Error Hash Mismatch - Task Failed - Task Rejected - Task Completed @@ -33251,60 +33171,41 @@ components: type: string description: File to upload example: - - 82 - - 101 - - 109 - - 32 - - 101 - - 120 - - 99 - - 101 - - 112 - - 116 - - 117 - - 114 - - 105 - - 32 + - 80 - 101 - - 97 - 114 - - 117 - - 109 - - 32 - - 116 + - 102 - 101 - - 109 - - 112 - - 111 - 114 - 101 + - 110 + - 100 + - 105 + - 115 - 32 - - 116 - - 101 - 109 - - 112 - - 111 - - 114 - 105 - - 98 + - 110 - 117 - 115 - 32 - - 113 - - 117 - - 105 - 115 - - 32 - - 97 + - 117 - 115 + - 99 + - 105 - 112 - - 101 - - 114 - - 110 - - 97 + - 105 - 116 - - 117 + - 32 + - 99 + - 111 - 114 + - 114 + - 117 + - 112 + - 116 + - 105 - 46 format: binary filename: @@ -33319,50 +33220,23 @@ components: format: int64 example: file: - - 78 - - 117 - - 108 - - 108 - - 97 - - 32 - - 102 - - 117 - - 103 - - 105 - - 116 - - 32 - - 99 - - 111 - - 110 - - 115 - - 101 - - 99 - - 116 - - 101 - - 116 - - 117 + - 80 - 114 - - 32 + - 97 - 101 - 115 - - 116 - - 32 - - 100 - - 105 - - 115 - - 116 - - 105 + - 101 - 110 - - 99 - 116 - 105 - - 111 + - 117 + - 109 - 32 - 109 - - 97 - - 103 - - 110 - 105 + - 110 + - 117 + - 115 - 46 required: - file @@ -33373,33 +33247,41 @@ components: type: string description: File to upload example: - - 77 - - 111 - - 108 + - 80 - 101 + - 114 - 115 + - 112 + - 105 + - 99 + - 105 + - 97 - 116 - 105 + - 115 + - 32 + - 109 - 97 + - 120 + - 105 + - 109 - 101 - 32 - - 108 - 97 - - 98 + - 115 + - 112 + - 101 + - 114 + - 105 - 111 - 114 - - 117 - - 109 + - 101 + - 115 - 32 - 113 - 117 - - 105 - - 98 - - 117 - - 115 - - 100 - 97 - - 109 + - 101 - 46 format: binary filename: @@ -33407,35 +33289,48 @@ components: description: For internal use example: file: - - 86 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 - - 116 + - 69 + - 115 + - 115 - 101 - - 109 - 32 + - 110 - 105 - - 112 - 115 + - 105 + - 32 + - 97 + - 112 + - 101 + - 114 + - 105 - 97 - 109 - 32 - - 110 - - 117 - - 108 + - 100 + - 101 - 108 - - 97 + - 101 + - 99 + - 116 + - 117 + - 115 - 32 - - 102 + - 101 - 97 - - 99 + - 32 - 101 - - 114 + - 120 + - 112 + - 108 + - 105 + - 99 + - 97 + - 98 + - 111 + - 32 - 101 + - 116 - 46 required: - file @@ -33548,87 +33443,111 @@ components: example: true message: type: string - example: Mollitia quibusdam vel saepe dignissimos impedit consequatur. + example: Ex qui. missing_keys: type: array items: type: string - example: Adipisci quod non dignissimos veniam porro et. + example: Est vero qui itaque facilis ut et. example: - - Reiciendis sit. - - Voluptas repellendus aut velit nesciunt. - - Aut aut. - - Et quia maiores minima dolor. + - Sed reprehenderit molestias odio sit facere repellat. + - Sint qui iure ipsa. + - Deserunt omnis nesciunt et eos dolores. + - Iste natus enim iste. reconstructed_file_hash: type: string example: - 67 + - 111 + - 110 + - 115 + - 101 + - 113 - 117 - - 112 - - 105 - - 100 - - 105 + - 117 + - 110 - 116 + - 117 + - 114 + - 32 + - 115 - 97 - - 116 + - 101 + - 112 - 101 - 32 + - 113 + - 117 - 105 - - 112 - - 115 - - 97 - 46 format: binary ticket_type: type: string - example: Ipsum recusandae illum voluptatum. + example: Est amet natus quo consequuntur id. tx_id: type: string - example: Qui reprehenderit est. + example: Et rerum accusamus facere repudiandae eaque. example: is_reconstruction_required: true - is_verified: false - message: Laborum unde officiis ipsum quidem qui et. + is_verified: true + message: Et nihil voluptatum assumenda dolorum qui. missing_keys: - - Soluta ullam provident ea. - - Ea et nisi. - - Omnis provident aperiam molestiae. + - Dolore dolor. + - Eligendi corporis repellat. + - A ullam qui nihil molestias asperiores. + - Quos quibusdam. reconstructed_file_hash: - - 65 - - 117 - - 116 + - 83 - 101 - - 109 + - 100 - 32 - - 97 - - 116 - 113 - 117 - - 101 + - 111 + - 100 - 32 - 97 - 117 - 116 - - 32 - 101 - - 110 - - 105 - 109 - 32 - - 99 - - 111 + - 114 + - 101 + - 112 + - 101 + - 108 + - 108 + - 101 - 110 + - 100 + - 117 - 115 - - 101 - - 113 + - 32 + - 102 - 117 + - 103 + - 105 - 97 - 116 - - 117 - - 114 + - 32 + - 98 + - 101 + - 97 + - 116 + - 97 + - 101 + - 32 + - 111 + - 102 + - 102 + - 105 + - 99 + - 105 + - 97 - 46 - ticket_type: Ea molestias. - tx_id: Debitis voluptatem. + ticket_type: Quod beatae. + tx_id: Saepe aut qui quisquam cum quasi. securitySchemes: api_key_header_Authorization: type: apiKey diff --git a/walletnode/api/gen/http/sense/client/cli.go b/walletnode/api/gen/http/sense/client/cli.go index c1444c68d..8bc4decf9 100644 --- a/walletnode/api/gen/http/sense/client/cli.go +++ b/walletnode/api/gen/http/sense/client/cli.go @@ -24,7 +24,7 @@ func BuildUploadImagePayload(senseUploadImageBody string) (*sense.UploadImagePay { err = json.Unmarshal([]byte(senseUploadImageBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"file\": \"TmFtIHF1byBuZXF1ZSBjdW1xdWUu\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"file\": \"SW52ZW50b3JlIGRlYml0aXMgYW1ldCBvZmZpY2lpcyBxdWkgZnVnaWF0IG9tbmlzLg==\"\n }'") } if body.Bytes == nil { err = goa.MergeErrors(err, goa.MissingFieldError("file", "body")) @@ -49,7 +49,7 @@ func BuildStartProcessingPayload(senseStartProcessingBody string, senseStartProc { err = json.Unmarshal([]byte(senseStartProcessingBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"app_pastelid\": \"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS\",\n \"burn_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"collection_act_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"open_api_group_id\": \"Earum quam et.\",\n \"spendable_address\": \"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"app_pastelid\": \"jXYJud3rmrR1Sk2scvR47N4E4J5Vv48uCC6se2nzHrBRdjaKj3ybPoi1Y2VVoRqi1GnQrYKjSxQAC7NBtvtEdS\",\n \"burn_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"collection_act_txid\": \"576e7b824634a488a2f0baacf5a53b237d883029f205df25b300b87c8877ab58\",\n \"open_api_group_id\": \"Officiis quaerat sint aut.\",\n \"spendable_address\": \"PtiqRXn2VQwBjp1K8QXR2uW2w2oZ3Ns7N6j\"\n }'") } if utf8.RuneCountInString(body.BurnTxid) < 64 { err = goa.MergeErrors(err, goa.InvalidLengthError("body.burn_txid", body.BurnTxid, utf8.RuneCountInString(body.BurnTxid), 64, true)) diff --git a/walletnode/api/gen/http/sense/client/types.go b/walletnode/api/gen/http/sense/client/types.go index 7c4d9e924..c42577f86 100644 --- a/walletnode/api/gen/http/sense/client/types.go +++ b/walletnode/api/gen/http/sense/client/types.go @@ -590,8 +590,8 @@ func ValidateRegisterTaskStateResponseBody(body *RegisterTaskStateResponseBody) err = goa.MergeErrors(err, goa.MissingFieldError("status", "body")) } if body.Status != nil { - if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*body.Status == "Task Started" || *body.Status == "Connected" || *body.Status == "Validated Duplicate Reg Tickets" || *body.Status == "Validating Burn Txn" || *body.Status == "Burn Txn Validated" || *body.Status == "Image Probed" || *body.Status == "Image And Thumbnail Uploaded" || *body.Status == "Status Gen ReptorQ Symbols" || *body.Status == "Preburn Registration Fee" || *body.Status == "Downloaded" || *body.Status == "Request Accepted" || *body.Status == "Request Registered" || *body.Status == "Request Activated" || *body.Status == "Error Setting up mesh of supernodes" || *body.Status == "Error Sending Reg Metadata" || *body.Status == "Error Uploading Image" || *body.Status == "Error Converting Image to Bytes" || *body.Status == "Error Encoding Image" || *body.Status == "Error Creating Ticket" || *body.Status == "Error Signing Ticket" || *body.Status == "Error Uploading Ticket" || *body.Status == "Error Activating Ticket" || *body.Status == "Error Probing Image" || *body.Status == "Error checking dd-server availability before probe image" || *body.Status == "Error Generating DD and Fingerprint IDs" || *body.Status == "Error comparing suitable storage fee with task request maximum fee" || *body.Status == "Error balance not sufficient" || *body.Status == "Error getting hash of the image" || *body.Status == "Error sending signed ticket to SNs" || *body.Status == "Error checking balance" || *body.Status == "Error burning reg fee to get reg ticket id" || *body.Status == "Error validating reg ticket txn id" || *body.Status == "Error validating activate ticket txn id" || *body.Status == "Error Insufficient Fee" || *body.Status == "Error Signatures Dont Match" || *body.Status == "Error Fingerprints Dont Match" || *body.Status == "Error ThumbnailHashes Dont Match" || *body.Status == "Error GenRaptorQ Symbols Failed" || *body.Status == "Error File Don't Match" || *body.Status == "Error Not Enough SuperNode" || *body.Status == "Error Find Responding SNs" || *body.Status == "Error Not Enough Downloaded Filed" || *body.Status == "Error Download Failed" || *body.Status == "Error Invalid Burn TxID" || *body.Status == "Error Ownership Not Match" || *body.Status == "Error Hash Mismatch" || *body.Status == "Task Failed" || *body.Status == "Task Rejected" || *body.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.status", *body.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } return diff --git a/walletnode/api/gen/nft/views/view.go b/walletnode/api/gen/nft/views/view.go index 79a6c65fa..975c8f377 100644 --- a/walletnode/api/gen/nft/views/view.go +++ b/walletnode/api/gen/nft/views/view.go @@ -294,8 +294,8 @@ func ValidateTaskViewTiny(result *TaskView) (err error) { } } if result.Status != nil { - if !(*result.Status == "Task Started" || *result.Status == "Connected" || *result.Status == "Validated Duplicate Reg Tickets" || *result.Status == "Validating Burn Txn" || *result.Status == "Burn Txn Validated" || *result.Status == "Image Probed" || *result.Status == "Image And Thumbnail Uploaded" || *result.Status == "Status Gen ReptorQ Symbols" || *result.Status == "Preburn Registration Fee" || *result.Status == "Downloaded" || *result.Status == "Request Accepted" || *result.Status == "Request Registered" || *result.Status == "Request Activated" || *result.Status == "Error Setting up mesh of supernodes" || *result.Status == "Error Sending Reg Metadata" || *result.Status == "Error Uploading Image" || *result.Status == "Error Converting Image to Bytes" || *result.Status == "Error Encoding Image" || *result.Status == "Error Creating Ticket" || *result.Status == "Error Signing Ticket" || *result.Status == "Error Uploading Ticket" || *result.Status == "Error Activating Ticket" || *result.Status == "Error Probing Image" || *result.Status == "Error checking dd-server availability before probe image" || *result.Status == "Error Generating DD and Fingerprint IDs" || *result.Status == "Error comparing suitable storage fee with task request maximum fee" || *result.Status == "Error balance not sufficient" || *result.Status == "Error getting hash of the image" || *result.Status == "Error sending signed ticket to SNs" || *result.Status == "Error checking balance" || *result.Status == "Error burning reg fee to get reg ticket id" || *result.Status == "Error validating reg ticket txn id" || *result.Status == "Error validating activate ticket txn id" || *result.Status == "Error Insufficient Fee" || *result.Status == "Error Signatures Dont Match" || *result.Status == "Error Fingerprints Dont Match" || *result.Status == "Error ThumbnailHashes Dont Match" || *result.Status == "Error GenRaptorQ Symbols Failed" || *result.Status == "Error File Don't Match" || *result.Status == "Error Not Enough SuperNode" || *result.Status == "Error Find Responding SNs" || *result.Status == "Error Not Enough Downloaded Filed" || *result.Status == "Error Download Failed" || *result.Status == "Error Invalid Burn TxID" || *result.Status == "Task Failed" || *result.Status == "Task Rejected" || *result.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("result.status", *result.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*result.Status == "Task Started" || *result.Status == "Connected" || *result.Status == "Validated Duplicate Reg Tickets" || *result.Status == "Validating Burn Txn" || *result.Status == "Burn Txn Validated" || *result.Status == "Image Probed" || *result.Status == "Image And Thumbnail Uploaded" || *result.Status == "Status Gen ReptorQ Symbols" || *result.Status == "Preburn Registration Fee" || *result.Status == "Downloaded" || *result.Status == "Request Accepted" || *result.Status == "Request Registered" || *result.Status == "Request Activated" || *result.Status == "Error Setting up mesh of supernodes" || *result.Status == "Error Sending Reg Metadata" || *result.Status == "Error Uploading Image" || *result.Status == "Error Converting Image to Bytes" || *result.Status == "Error Encoding Image" || *result.Status == "Error Creating Ticket" || *result.Status == "Error Signing Ticket" || *result.Status == "Error Uploading Ticket" || *result.Status == "Error Activating Ticket" || *result.Status == "Error Probing Image" || *result.Status == "Error checking dd-server availability before probe image" || *result.Status == "Error Generating DD and Fingerprint IDs" || *result.Status == "Error comparing suitable storage fee with task request maximum fee" || *result.Status == "Error balance not sufficient" || *result.Status == "Error getting hash of the image" || *result.Status == "Error sending signed ticket to SNs" || *result.Status == "Error checking balance" || *result.Status == "Error burning reg fee to get reg ticket id" || *result.Status == "Error validating reg ticket txn id" || *result.Status == "Error validating activate ticket txn id" || *result.Status == "Error Insufficient Fee" || *result.Status == "Error Signatures Dont Match" || *result.Status == "Error Fingerprints Dont Match" || *result.Status == "Error ThumbnailHashes Dont Match" || *result.Status == "Error GenRaptorQ Symbols Failed" || *result.Status == "Error File Don't Match" || *result.Status == "Error Not Enough SuperNode" || *result.Status == "Error Find Responding SNs" || *result.Status == "Error Not Enough Downloaded Filed" || *result.Status == "Error Download Failed" || *result.Status == "Error Invalid Burn TxID" || *result.Status == "Error Ownership Not Match" || *result.Status == "Error Hash Mismatch" || *result.Status == "Task Failed" || *result.Status == "Task Rejected" || *result.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("result.status", *result.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } if result.Txid != nil { @@ -339,8 +339,8 @@ func ValidateTaskView(result *TaskView) (err error) { } } if result.Status != nil { - if !(*result.Status == "Task Started" || *result.Status == "Connected" || *result.Status == "Validated Duplicate Reg Tickets" || *result.Status == "Validating Burn Txn" || *result.Status == "Burn Txn Validated" || *result.Status == "Image Probed" || *result.Status == "Image And Thumbnail Uploaded" || *result.Status == "Status Gen ReptorQ Symbols" || *result.Status == "Preburn Registration Fee" || *result.Status == "Downloaded" || *result.Status == "Request Accepted" || *result.Status == "Request Registered" || *result.Status == "Request Activated" || *result.Status == "Error Setting up mesh of supernodes" || *result.Status == "Error Sending Reg Metadata" || *result.Status == "Error Uploading Image" || *result.Status == "Error Converting Image to Bytes" || *result.Status == "Error Encoding Image" || *result.Status == "Error Creating Ticket" || *result.Status == "Error Signing Ticket" || *result.Status == "Error Uploading Ticket" || *result.Status == "Error Activating Ticket" || *result.Status == "Error Probing Image" || *result.Status == "Error checking dd-server availability before probe image" || *result.Status == "Error Generating DD and Fingerprint IDs" || *result.Status == "Error comparing suitable storage fee with task request maximum fee" || *result.Status == "Error balance not sufficient" || *result.Status == "Error getting hash of the image" || *result.Status == "Error sending signed ticket to SNs" || *result.Status == "Error checking balance" || *result.Status == "Error burning reg fee to get reg ticket id" || *result.Status == "Error validating reg ticket txn id" || *result.Status == "Error validating activate ticket txn id" || *result.Status == "Error Insufficient Fee" || *result.Status == "Error Signatures Dont Match" || *result.Status == "Error Fingerprints Dont Match" || *result.Status == "Error ThumbnailHashes Dont Match" || *result.Status == "Error GenRaptorQ Symbols Failed" || *result.Status == "Error File Don't Match" || *result.Status == "Error Not Enough SuperNode" || *result.Status == "Error Find Responding SNs" || *result.Status == "Error Not Enough Downloaded Filed" || *result.Status == "Error Download Failed" || *result.Status == "Error Invalid Burn TxID" || *result.Status == "Task Failed" || *result.Status == "Task Rejected" || *result.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("result.status", *result.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*result.Status == "Task Started" || *result.Status == "Connected" || *result.Status == "Validated Duplicate Reg Tickets" || *result.Status == "Validating Burn Txn" || *result.Status == "Burn Txn Validated" || *result.Status == "Image Probed" || *result.Status == "Image And Thumbnail Uploaded" || *result.Status == "Status Gen ReptorQ Symbols" || *result.Status == "Preburn Registration Fee" || *result.Status == "Downloaded" || *result.Status == "Request Accepted" || *result.Status == "Request Registered" || *result.Status == "Request Activated" || *result.Status == "Error Setting up mesh of supernodes" || *result.Status == "Error Sending Reg Metadata" || *result.Status == "Error Uploading Image" || *result.Status == "Error Converting Image to Bytes" || *result.Status == "Error Encoding Image" || *result.Status == "Error Creating Ticket" || *result.Status == "Error Signing Ticket" || *result.Status == "Error Uploading Ticket" || *result.Status == "Error Activating Ticket" || *result.Status == "Error Probing Image" || *result.Status == "Error checking dd-server availability before probe image" || *result.Status == "Error Generating DD and Fingerprint IDs" || *result.Status == "Error comparing suitable storage fee with task request maximum fee" || *result.Status == "Error balance not sufficient" || *result.Status == "Error getting hash of the image" || *result.Status == "Error sending signed ticket to SNs" || *result.Status == "Error checking balance" || *result.Status == "Error burning reg fee to get reg ticket id" || *result.Status == "Error validating reg ticket txn id" || *result.Status == "Error validating activate ticket txn id" || *result.Status == "Error Insufficient Fee" || *result.Status == "Error Signatures Dont Match" || *result.Status == "Error Fingerprints Dont Match" || *result.Status == "Error ThumbnailHashes Dont Match" || *result.Status == "Error GenRaptorQ Symbols Failed" || *result.Status == "Error File Don't Match" || *result.Status == "Error Not Enough SuperNode" || *result.Status == "Error Find Responding SNs" || *result.Status == "Error Not Enough Downloaded Filed" || *result.Status == "Error Download Failed" || *result.Status == "Error Invalid Burn TxID" || *result.Status == "Error Ownership Not Match" || *result.Status == "Error Hash Mismatch" || *result.Status == "Task Failed" || *result.Status == "Task Rejected" || *result.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("result.status", *result.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } for _, e := range result.States { @@ -377,8 +377,8 @@ func ValidateTaskStateView(result *TaskStateView) (err error) { err = goa.MergeErrors(err, goa.MissingFieldError("status", "result")) } if result.Status != nil { - if !(*result.Status == "Task Started" || *result.Status == "Connected" || *result.Status == "Validated Duplicate Reg Tickets" || *result.Status == "Validating Burn Txn" || *result.Status == "Burn Txn Validated" || *result.Status == "Image Probed" || *result.Status == "Image And Thumbnail Uploaded" || *result.Status == "Status Gen ReptorQ Symbols" || *result.Status == "Preburn Registration Fee" || *result.Status == "Downloaded" || *result.Status == "Request Accepted" || *result.Status == "Request Registered" || *result.Status == "Request Activated" || *result.Status == "Error Setting up mesh of supernodes" || *result.Status == "Error Sending Reg Metadata" || *result.Status == "Error Uploading Image" || *result.Status == "Error Converting Image to Bytes" || *result.Status == "Error Encoding Image" || *result.Status == "Error Creating Ticket" || *result.Status == "Error Signing Ticket" || *result.Status == "Error Uploading Ticket" || *result.Status == "Error Activating Ticket" || *result.Status == "Error Probing Image" || *result.Status == "Error checking dd-server availability before probe image" || *result.Status == "Error Generating DD and Fingerprint IDs" || *result.Status == "Error comparing suitable storage fee with task request maximum fee" || *result.Status == "Error balance not sufficient" || *result.Status == "Error getting hash of the image" || *result.Status == "Error sending signed ticket to SNs" || *result.Status == "Error checking balance" || *result.Status == "Error burning reg fee to get reg ticket id" || *result.Status == "Error validating reg ticket txn id" || *result.Status == "Error validating activate ticket txn id" || *result.Status == "Error Insufficient Fee" || *result.Status == "Error Signatures Dont Match" || *result.Status == "Error Fingerprints Dont Match" || *result.Status == "Error ThumbnailHashes Dont Match" || *result.Status == "Error GenRaptorQ Symbols Failed" || *result.Status == "Error File Don't Match" || *result.Status == "Error Not Enough SuperNode" || *result.Status == "Error Find Responding SNs" || *result.Status == "Error Not Enough Downloaded Filed" || *result.Status == "Error Download Failed" || *result.Status == "Error Invalid Burn TxID" || *result.Status == "Task Failed" || *result.Status == "Task Rejected" || *result.Status == "Task Completed") { - err = goa.MergeErrors(err, goa.InvalidEnumValueError("result.status", *result.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Task Failed", "Task Rejected", "Task Completed"})) + if !(*result.Status == "Task Started" || *result.Status == "Connected" || *result.Status == "Validated Duplicate Reg Tickets" || *result.Status == "Validating Burn Txn" || *result.Status == "Burn Txn Validated" || *result.Status == "Image Probed" || *result.Status == "Image And Thumbnail Uploaded" || *result.Status == "Status Gen ReptorQ Symbols" || *result.Status == "Preburn Registration Fee" || *result.Status == "Downloaded" || *result.Status == "Request Accepted" || *result.Status == "Request Registered" || *result.Status == "Request Activated" || *result.Status == "Error Setting up mesh of supernodes" || *result.Status == "Error Sending Reg Metadata" || *result.Status == "Error Uploading Image" || *result.Status == "Error Converting Image to Bytes" || *result.Status == "Error Encoding Image" || *result.Status == "Error Creating Ticket" || *result.Status == "Error Signing Ticket" || *result.Status == "Error Uploading Ticket" || *result.Status == "Error Activating Ticket" || *result.Status == "Error Probing Image" || *result.Status == "Error checking dd-server availability before probe image" || *result.Status == "Error Generating DD and Fingerprint IDs" || *result.Status == "Error comparing suitable storage fee with task request maximum fee" || *result.Status == "Error balance not sufficient" || *result.Status == "Error getting hash of the image" || *result.Status == "Error sending signed ticket to SNs" || *result.Status == "Error checking balance" || *result.Status == "Error burning reg fee to get reg ticket id" || *result.Status == "Error validating reg ticket txn id" || *result.Status == "Error validating activate ticket txn id" || *result.Status == "Error Insufficient Fee" || *result.Status == "Error Signatures Dont Match" || *result.Status == "Error Fingerprints Dont Match" || *result.Status == "Error ThumbnailHashes Dont Match" || *result.Status == "Error GenRaptorQ Symbols Failed" || *result.Status == "Error File Don't Match" || *result.Status == "Error Not Enough SuperNode" || *result.Status == "Error Find Responding SNs" || *result.Status == "Error Not Enough Downloaded Filed" || *result.Status == "Error Download Failed" || *result.Status == "Error Invalid Burn TxID" || *result.Status == "Error Ownership Not Match" || *result.Status == "Error Hash Mismatch" || *result.Status == "Task Failed" || *result.Status == "Task Rejected" || *result.Status == "Task Completed") { + err = goa.MergeErrors(err, goa.InvalidEnumValueError("result.status", *result.Status, []any{"Task Started", "Connected", "Validated Duplicate Reg Tickets", "Validating Burn Txn", "Burn Txn Validated", "Image Probed", "Image And Thumbnail Uploaded", "Status Gen ReptorQ Symbols", "Preburn Registration Fee", "Downloaded", "Request Accepted", "Request Registered", "Request Activated", "Error Setting up mesh of supernodes", "Error Sending Reg Metadata", "Error Uploading Image", "Error Converting Image to Bytes", "Error Encoding Image", "Error Creating Ticket", "Error Signing Ticket", "Error Uploading Ticket", "Error Activating Ticket", "Error Probing Image", "Error checking dd-server availability before probe image", "Error Generating DD and Fingerprint IDs", "Error comparing suitable storage fee with task request maximum fee", "Error balance not sufficient", "Error getting hash of the image", "Error sending signed ticket to SNs", "Error checking balance", "Error burning reg fee to get reg ticket id", "Error validating reg ticket txn id", "Error validating activate ticket txn id", "Error Insufficient Fee", "Error Signatures Dont Match", "Error Fingerprints Dont Match", "Error ThumbnailHashes Dont Match", "Error GenRaptorQ Symbols Failed", "Error File Don't Match", "Error Not Enough SuperNode", "Error Find Responding SNs", "Error Not Enough Downloaded Filed", "Error Download Failed", "Error Invalid Burn TxID", "Error Ownership Not Match", "Error Hash Mismatch", "Task Failed", "Task Rejected", "Task Completed"})) } } return diff --git a/walletnode/api/services/cascade.go b/walletnode/api/services/cascade.go index a1168b6c1..6b2deb0ef 100644 --- a/walletnode/api/services/cascade.go +++ b/walletnode/api/services/cascade.go @@ -30,7 +30,6 @@ import ( ) const ( - maxFileSize = 300 * 1024 * 1024 // 300MB in bytes maxFileRegistrationAttempts = 3 downloadDeadline = 120 * time.Minute downloadConcurrency = 2 @@ -290,6 +289,15 @@ func (service *CascadeAPIHandler) getTxIDs(ctx context.Context, txID string) (tx return } + } else { + filename, size, err := service.download.GetFilenameAndSize(ctx, txID) + if err != nil { + return nil, ticket + } + + ticket.NameOfOriginalFile = filename + ticket.SizeOfOriginalFileMB = utils.BytesIntToMB(size) + } txIDs = append(txIDs, txID) @@ -313,6 +321,9 @@ func (service *CascadeAPIHandler) Download(ctx context.Context, p *cascade.Downl txIDs, ticket := service.getTxIDs(ctx, p.Txid) isMultiVolume := len(txIDs) > 1 + if isMultiVolume { + return nil, cascade.MakeBadRequest(errors.New("multi-volume download not supported. Please use /v2/download endpoint to download multi-volume files")) + } // Create directory with p.Txid folderPath := filepath.Join(service.config.StaticFilesDir, p.Txid) @@ -439,6 +450,14 @@ func (service *CascadeAPIHandler) Download(ctx context.Context, p *cascade.Downl }, nil } +func getTxIDsKey(id string) string { + return fmt.Sprintf("%s_txids", id) +} + +func getPrimaryTxIDKey(id string) string { + return fmt.Sprintf("%s_primary_txid", id) +} + // Download registered cascade file - also supports multi-volume files func (service *CascadeAPIHandler) DownloadV2(ctx context.Context, p *cascade.DownloadPayload) (*cascade.FileDownloadV2Result, error) { log.WithContext(ctx).WithField("txid", p.Txid).Info("Download Request Received (V2)") @@ -460,7 +479,7 @@ func (service *CascadeAPIHandler) DownloadV2(ctx context.Context, p *cascade.Dow // generating a single unique ID uniqueID := randIDFunc() service.fileMappings.Store(uniqueID, folderPath) - + service.fileMappings.Store(getPrimaryTxIDKey(uniqueID), p.Txid) // Start asynchronous download process go service.manageDownloads(ctx, p, txIDs, folderPath, isMultiVolume, ticket.NameOfOriginalFile, ticket.SHA3256HashOfOriginalFile, uniqueID) @@ -470,13 +489,15 @@ func (service *CascadeAPIHandler) DownloadV2(ctx context.Context, p *cascade.Dow } func (service *CascadeAPIHandler) manageDownloads(_ context.Context, p *cascade.DownloadPayload, txIDs []string, folderPath string, isMulti bool, name string, sha string, id string) { - sem := make(chan struct{}, downloadConcurrency) // Max 3 concurrent downloads + sem := make(chan struct{}, downloadConcurrency) // Control Max concurrent downloads taskResults := make(chan *DownloadResult) errorsChan := make(chan error) ctx, cancel := context.WithTimeout(context.Background(), downloadDeadline) defer cancel() + service.fileMappings.Store(getTxIDsKey(id), txIDs) + // Starting multiple download tasks tasks := 0 for _, txID := range txIDs { @@ -493,6 +514,8 @@ func (service *CascadeAPIHandler) manageDownloads(_ context.Context, p *cascade. if len(txIDs) == 1 { service.fileMappings.Store(id, filePath) } + + service.fileMappings.Store(txID, txID) continue } else { log.WithContext(ctx).WithField("filename", filename).WithField("txid", txID).Warn("file exists but downloading again due to size mismatch") @@ -505,6 +528,8 @@ func (service *CascadeAPIHandler) manageDownloads(_ context.Context, p *cascade. defer func() { <-sem }() // Releasing the semaphore taskID := service.download.AddTask(&nft.DownloadPayload{Key: p.Key, Pid: p.Pid, Txid: txID}, pastel.ActionTypeCascade, false) + service.fileMappings.Store(txID, taskID) + task := service.download.GetTask(taskID) defer task.Cancel() @@ -540,7 +565,7 @@ func (service *CascadeAPIHandler) manageDownloads(_ context.Context, p *cascade. service.processDownloadResults(ctx, taskResults, errorsChan, folderPath, isMulti, tasks, sha, name, id) } -func (service *CascadeAPIHandler) GetDownloadTaskState(ctx context.Context, p *cascade.GetDownloadTaskStatePayload) (res []*cascade.TaskHistory, err error) { +func (service *CascadeAPIHandler) GetDownloadTaskState(ctx context.Context, p *cascade.GetDownloadTaskStatePayload) (th *cascade.DownloadTaskStatus, err error) { filePath, ok := service.fileMappings.Load(p.FileID) if !ok { return nil, cascade.MakeNotFound(errors.New("file not found")) @@ -552,11 +577,129 @@ func (service *CascadeAPIHandler) GetDownloadTaskState(ctx context.Context, p *c } // Check if the file exists - if _, err := os.Stat(filePathStr); os.IsNotExist(err) { - return nil, cascade.MakeNotFound(errors.New("file not found")) + primaryTxID, ok := service.fileMappings.Load(getPrimaryTxIDKey(p.FileID)) + if !ok { + return nil, cascade.MakeNotFound(errors.New("file not found - please try requesting download again")) + } + + _, ticket := service.getTxIDs(ctx, primaryTxID.(string)) + if _, err := os.Stat(filepath.Join(filePathStr, ticket.NameOfOriginalFile)); err == nil { + th = &cascade.DownloadTaskStatus{ + TaskStatus: "Completed", + } + + return th, nil + } + + val, ok := service.fileMappings.Load(getTxIDsKey(p.FileID)) + if !ok { + return nil, cascade.MakeNotFound(errors.New("No such file download in progress. Please double check the file id - Please request download again if the app was restarted")) + } + + details := cascade.Details{ + Fields: make(map[string]any), + } + + type txidDetails struct { + Txid string + TaskID string + Status string + Error string + } + + txids := val.([]string) + var success int + var failed int + var pending int + var dataDownloaded int + for _, txid := range txids { + _, ticket := service.getTxIDs(ctx, txid) + td := txidDetails{ + Txid: txid, + } + + taskID, ok := service.fileMappings.Load(txid) + if !ok || taskID == "" { + pending++ + td.Status = "Pending" + details.Fields[txid] = td + continue + + } + + if taskID == txid { + td.Status = common.StatusDownloaded.String() + details.Fields[txid] = td + dataDownloaded += ticket.SizeOfOriginalFileMB + success++ + continue + } + + task := service.download.GetTask(taskID.(string)) + if task == nil { + if _, err := os.Stat(filepath.Join(filePathStr, ticket.NameOfOriginalFile)); err == nil { + td.Status = common.StatusDownloaded.String() + details.Fields[txid] = td + success++ + dataDownloaded += ticket.SizeOfOriginalFileMB + continue + } else { + return nil, cascade.MakeInternalServerError(fmt.Errorf("no such task found for txid %s - please try requesting download again", txid)) + } + } + td.TaskID = taskID.(string) + + statuses := task.StatusHistory() + for _, status := range statuses { + if status.IsFailure() { + failed++ + errStr := fmt.Errorf("internal processing error: %s", status.String()) + if task.Error() != nil { + errStr = task.Error() + } + td.Error = errStr.Error() + details.Fields[txid] = td + + continue + } + + if status.Is(common.StatusTaskCompleted) || status.Is(common.StatusDownloaded) { + success++ + td.Status = common.StatusDownloaded.String() + dataDownloaded += ticket.SizeOfOriginalFileMB + details.Fields[txid] = td + continue + } + td.Status = "In Progress" + details.Fields[txid] = td + } + } + + total := len(txids) + + th = &cascade.DownloadTaskStatus{ + TotalVolumes: total, + DownloadedVolumes: success, + VolumesDownloadFailed: failed, + VolumesPendingDownload: pending, + VolumesDownloadInProgress: total - success - failed - pending, + SizeOfTheFileMegabytes: ticket.SizeOfOriginalFileMB, + DataDownloadedMegabytes: dataDownloaded, } - return []*cascade.TaskHistory{}, nil + if total == success { + th.TaskStatus = "Completed" + } else if failed == 0 { + th.TaskStatus = "In Progress" + } else { + th.TaskStatus = "Failed" + msg := fmt.Sprintf("Download failed for %d volumes - please try requesting download again", failed) + th.Message = &msg + } + + th.Details = &details + + return th, nil } func (service *CascadeAPIHandler) processDownloadResults(ctx context.Context, taskResults chan *DownloadResult, errorsChan chan error, folderPath string, @@ -567,7 +710,6 @@ func (service *CascadeAPIHandler) processDownloadResults(ctx context.Context, ta select { case res := <-taskResults: filePath = filepath.Join(folderPath, res.Filename) - fmt.Println("file path", filePath) if err := os.WriteFile(filePath, res.File, 0644); err != nil { log.WithContext(ctx).WithError(err).Error("unable to write file") return fmt.Errorf("unable to write file: %w", err) @@ -599,6 +741,10 @@ func (service *CascadeAPIHandler) processDownloadResults(ctx context.Context, ta if hex.EncodeToString(hash) != sha { return fmt.Errorf("hash mismatch: %w", errors.New("hash mismatch")) } + + if err := deleteUnmatchedFiles(folderPath, name); err != nil { + log.WithContext(ctx).WithError(err).Error("unable to delete volume files") + } } if filePath != "" { service.fileMappings.Store(id, filePath) @@ -757,8 +903,33 @@ func (service *CascadeAPIHandler) checkBurnTxIDsValidForRegistration(ctx context return nil } +// deleteUnmatchedFiles deletes all files in the specified folderPath that do not match the given filename. +func deleteUnmatchedFiles(folderPath, name string) error { + entries, err := os.ReadDir(folderPath) + if err != nil { + return fmt.Errorf("unable to read directory: %w", err) + } + + for _, entry := range entries { + if entry.Name() != name { + // Check if the directory entry is a file before attempting to delete + if !entry.IsDir() { + filePath := filepath.Join(folderPath, entry.Name()) + if err := os.Remove(filePath); err != nil { + log.WithContext(context.Background()).WithError(err).Errorf("unable to delete file: %s", filePath) + // Continue with the loop even if there's an error deleting a file + } + } + } + } + return nil +} + // NewCascadeAPIHandler returns the swagger OpenAPI implementation. func NewCascadeAPIHandler(config *Config, filesMap *sync.Map, register *cascaderegister.CascadeRegistrationService, download *download.NftDownloadingService) *CascadeAPIHandler { + partSizeMB = config.MultiVolumeChunkSize + chunkSize = config.MultiVolumeChunkSize * 1024 * 1024 + return &CascadeAPIHandler{ Common: NewCommon(config), register: register, diff --git a/walletnode/api/services/common.go b/walletnode/api/services/common.go index 4323e3dd2..b8c5bb1b4 100644 --- a/walletnode/api/services/common.go +++ b/walletnode/api/services/common.go @@ -11,8 +11,9 @@ var randIDGen = rand.New(rand.NewSource(time.Now().UTC().UnixNano())) // Config represents a config for the common service. type Config struct { - StaticFilesDir string `mapstructure:"static_files_dir" json:"static_files_dir,omitempty"` - CascadeFilesDir string `mapstructure:"cascade_files_dir" json:"cascade_files_dir,omitempty"` + StaticFilesDir string `mapstructure:"static_files_dir" json:"static_files_dir,omitempty"` + CascadeFilesDir string `mapstructure:"cascade_files_dir" json:"cascade_files_dir,omitempty"` + MultiVolumeChunkSize int `mapstructure:"multi_volume_chunk_size" json:"multi_volume_chunk_size,omitempty"` } // Common represents common service. diff --git a/walletnode/api/services/multipart.go b/walletnode/api/services/multipart.go index bd03c67c0..efc3e9a10 100644 --- a/walletnode/api/services/multipart.go +++ b/walletnode/api/services/multipart.go @@ -33,7 +33,11 @@ import ( const ( contentTypePrefix = "image/" imagePartName = "file" - partSizeMB = 300 +) + +var ( + partSizeMB int + chunkSize = partSizeMB * 1024 * 1024 // MB ) // NftRegUploadImageDecoderFunc implements the multipart decoder for service "nftreg" endpoint "UploadImage". @@ -180,10 +184,6 @@ func handleUploadImage(ctx context.Context, reader *multipart.Reader, storage *f return filename, "", nil } -const ( - chunkSize = 300 * 1024 * 1024 // 300 MB -) - func handleUploadFile(ctx context.Context, reader *multipart.Reader, baseDir string, putMaxCap bool) (string, string, int64, error) { id, err := random.String(8, random.Base62Chars) if err != nil { @@ -238,7 +238,7 @@ func handleUploadFile(ctx context.Context, reader *multipart.Reader, baseDir str hash = hex.EncodeToString(hashB) fs := common.FileSplitter{PartSizeMB: partSizeMB} - if fileSize > chunkSize { + if fileSize > int64(chunkSize) { if putMaxCap { return "", "", 0, errors.New("file size exceeds the maximum allowed size - Please use API V2 to upload large files") } diff --git a/walletnode/cmd/app.go b/walletnode/cmd/app.go index 0b98e23f4..2c00d7e1a 100644 --- a/walletnode/cmd/app.go +++ b/walletnode/cmd/app.go @@ -38,11 +38,12 @@ import ( ) const ( - appName = "walletnode" - appUsage = "WalletNode" // TODO: Write a clear description. - rqFilesDir = "rqfiles" - staticFilesDir = "files" - cascadeFiles = "cascadefiles" + appName = "walletnode" + appUsage = "WalletNode" // TODO: Write a clear description. + rqFilesDir = "rqfiles" + staticFilesDir = "files" + cascadeFiles = "cascadefiles" + defaultMultiVolumeChunkSizeMB = 280 ) var ( @@ -189,6 +190,9 @@ func runApp(ctx context.Context, config *configs.Config) error { config.NftRegister.RqFilesDir = config.RqFilesDir config.CascadeRegister.RaptorQServiceAddress = rqAddr config.CascadeRegister.RqFilesDir = config.RqFilesDir + config.CascadeRegister.StaticFilesDir = config.StaticFilesDir + config.CascadeRegister.CascadeFilesDir = config.CascadeFilesDir + config.CascadeRegister.MultiVolumeChunkSize = config.MultiVolumeChunkSize // NB: As part of current dev push for Sense and Cascade, we are disabling userdata handling thru rqlite. @@ -231,14 +235,28 @@ func runApp(ctx context.Context, config *configs.Config) error { // The API Server takes our configured services and wraps them further with "Mount", creating the API endpoints. // Since the API Server has access to the services, this is what finally exposes useful methods like // "NftGet" and "Download". + if config.CascadeRegister.CascadeFilesDir == "" { + config.CascadeRegister.CascadeFilesDir = defaultCascadeFilesDir + } + + if config.CascadeRegister.StaticFilesDir == "" { + config.CascadeRegister.StaticFilesDir = defaultStaticFilesDir + } + + if config.CascadeRegister.MultiVolumeChunkSize == 0 { + config.CascadeRegister.MultiVolumeChunkSize = defaultMultiVolumeChunkSizeMB + } + apiSrcvConf := &services.Config{ - StaticFilesDir: defaultStaticFilesDir, - CascadeFilesDir: defaultCascadeFilesDir, + StaticFilesDir: config.CascadeRegister.StaticFilesDir, + CascadeFilesDir: config.CascadeRegister.CascadeFilesDir, + MultiVolumeChunkSize: config.CascadeRegister.MultiVolumeChunkSize, } - config.API.StaticFilesDir = defaultStaticFilesDir - config.API.CascadeFilesDir = defaultCascadeFilesDir - config.NftDownload.StaticDir = defaultStaticFilesDir - config.NftDownload.CascadeFilesDir = defaultCascadeFilesDir + + config.API.StaticFilesDir = apiSrcvConf.StaticFilesDir + config.API.CascadeFilesDir = apiSrcvConf.CascadeFilesDir + config.NftDownload.StaticDir = apiSrcvConf.StaticFilesDir + config.NftDownload.CascadeFilesDir = apiSrcvConf.CascadeFilesDir // These services connect the different clients and configs together to provide tasking and handling for // the required functionality. These services aren't started with these declarations, they will be run diff --git a/walletnode/configs/config.go b/walletnode/configs/config.go index 66a5c90d7..f22550c0d 100644 --- a/walletnode/configs/config.go +++ b/walletnode/configs/config.go @@ -17,11 +17,14 @@ const ( // Config contains configuration of all components of the WalletNode. type Config struct { - LogConfig *LogConfig `mapstructure:"log-config" json:"log-config,omitempty"` - Quiet bool `mapstructure:"quiet" json:"quiet"` - TempDir string `mapstructure:"temp-dir" json:"temp-dir"` - WorkDir string `mapstructure:"work-dir" json:"work-dir"` - RqFilesDir string `mapstructure:"rq-files-dir" json:"rq-files-dir"` + LogConfig *LogConfig `mapstructure:"log-config" json:"log-config,omitempty"` + Quiet bool `mapstructure:"quiet" json:"quiet"` + TempDir string `mapstructure:"temp-dir" json:"temp-dir"` + WorkDir string `mapstructure:"work-dir" json:"work-dir"` + RqFilesDir string `mapstructure:"rq-files-dir" json:"rq-files-dir"` + CascadeFilesDir string `mapstructure:"cascade-files-dir" json:"cascade-files-dir"` + StaticFilesDir string `mapstructure:"static-files-dir" json:"static-files-dir"` + MultiVolumeChunkSize int `mapstructure:"multi-volume-chunk-size" json:"multi-volume-chunk-size,omitempty"` Node `mapstructure:"node" json:"node,omitempty"` Pastel *pastel.Config `mapstructure:"-" json:"-"` diff --git a/walletnode/configs/node.go b/walletnode/configs/node.go index 13e5a9ed0..31711f799 100644 --- a/walletnode/configs/node.go +++ b/walletnode/configs/node.go @@ -35,7 +35,7 @@ func NewNode() Node { NftRegister: *nftregister.NewConfig(), NftDownload: *download.NewConfig(), API: api.NewConfig(), - // UserdataProcess: *userdataprocess.NewConfig(), + SenseRegister: *senseregister.NewConfig(), CascadeRegister: *cascaderegister.NewConfig(), CollectionRegister: *collectionregister.NewConfig(), diff --git a/walletnode/services/cascaderegister/config.go b/walletnode/services/cascaderegister/config.go index 2f877f55c..57aa8f96a 100644 --- a/walletnode/services/cascaderegister/config.go +++ b/walletnode/services/cascaderegister/config.go @@ -1,9 +1,6 @@ package cascaderegister import ( - "path/filepath" - - "github.com/pastelnetwork/gonode/common/configurer" "github.com/pastelnetwork/gonode/walletnode/services/common" ) @@ -17,10 +14,6 @@ const ( defaultRQIDsMax = 50 ) -var ( - defaultCascadeFilesDir = filepath.Join(configurer.DefaultPath(), "cascadefiles") -) - // Config contains settings of the registering nft. type Config struct { common.Config `mapstructure:",squash" json:"-"` @@ -34,8 +27,10 @@ type Config struct { // raptorq service RaptorQServiceAddress string `mapstructure:"-" json:"-"` - RqFilesDir string - CascadeFilesDir string + RqFilesDir string `mapstructure:"rq_files_dir" json:"rq_files_dir,omitempty"` + StaticFilesDir string `mapstructure:"static_files_dir" json:"static_files_dir,omitempty"` + CascadeFilesDir string `mapstructure:"cascade_files_dir" json:"cascade_files_dir,omitempty"` + MultiVolumeChunkSize int `mapstructure:"multi_volume_chunk_size" json:"multi_volume_chunk_size,omitempty"` } // NewConfig returns a new Config instance. @@ -47,6 +42,5 @@ func NewConfig() *Config { WaitTxnValidInterval: defaultWaitTxnValidInterval, RQIDsMax: defaultRQIDsMax, NumberRQIDSFiles: defaultNumberRQIDSFiles, - CascadeFilesDir: defaultCascadeFilesDir, } } diff --git a/walletnode/services/cascaderegister/restore.go b/walletnode/services/cascaderegister/restore.go index 62283a3a2..96a7ff784 100644 --- a/walletnode/services/cascaderegister/restore.go +++ b/walletnode/services/cascaderegister/restore.go @@ -12,7 +12,7 @@ import ( ) const ( - defaultRestoreVolumeInterval = 60 * time.Minute + defaultRestoreVolumeInterval = 3 * time.Minute ) // RestoreService restore the missed volume file @@ -34,7 +34,7 @@ func (service *RestoreService) Run(ctx context.Context, cascadeRegistrationServi if err != nil { log.WithContext(ctx).WithError(err).Error("Error restoring files") } - log.WithContext(ctx).WithField("restoring_files_res", restoringFilesRes).Info("successfully called restored files function") + log.WithContext(ctx).WithField("restoring_files_res", restoringFilesRes).Debug("successfully called restored files function") } } } @@ -62,13 +62,13 @@ func (service *RestoreService) restore(ctx context.Context, cascadeRegistrationS for _, ucFile := range ucFiles { if ucFile.TaskID == "" || ucFile.PastelID == "" || ucFile.Passphrase == "" { log.WithContext(ctx).WithField("file_id", ucFile.FileID). - Info("un-concluded volume without task-id, pastel-id & passphrase, cannot proceed with recovery") + Debug("un-concluded volume without task-id, pastel-id & passphrase, cannot proceed with recovery") continue } if _, exists := runningTaskIDs[ucFile.TaskID]; exists { log.WithContext(ctx).WithField("task_id", ucFile.TaskID).WithField("base_file_id", ucFile.BaseFileID). - Info("current task is already in-progress can't execute the recovery-flow") + Debug("current task is already in-progress can't execute the recovery-flow") continue } diff --git a/walletnode/services/cascaderegister/service.go b/walletnode/services/cascaderegister/service.go index 69f936daf..8f81e5125 100644 --- a/walletnode/services/cascaderegister/service.go +++ b/walletnode/services/cascaderegister/service.go @@ -656,7 +656,7 @@ func (service *CascadeRegistrationService) RegisterVolumeTicket(ctx context.Cont var sha3256HashOfOriginalFile string nameOfOriginalFile = relatedFiles[0].NameOfOriginalBigFileWithExt - sizeOfOriginalFileMB = int(relatedFiles[0].SizeOfOriginalBigFile) + sizeOfOriginalFileMB = utils.BytesIntToMB(int(relatedFiles[0].SizeOfOriginalBigFile)) sha3256HashOfOriginalFile = relatedFiles[0].HashOfOriginalBigFile for _, relatedFile := range relatedFiles { @@ -785,7 +785,7 @@ func (service *CascadeRegistrationService) RestoreFile(ctx context.Context, p *c for _, v := range volumes { if _, exists := runningTaskIDs[v.TaskID]; exists { log.WithContext(ctx).WithField("task_id", v.TaskID).WithField("base_file_id", v.BaseFileID). - Info("current task is already in-progress can't execute the recovery-flow") + Debug("current task is already in-progress can't execute the recovery-flow") continue } diff --git a/walletnode/services/cascaderegister/task.go b/walletnode/services/cascaderegister/task.go index 3f08f58b8..89925a764 100644 --- a/walletnode/services/cascaderegister/task.go +++ b/walletnode/services/cascaderegister/task.go @@ -365,7 +365,11 @@ func (task *CascadeRegistrationTask) runTicketRegActTask(ctx context.Context) (r filePath := filepath.Join(task.service.config.CascadeFilesDir, task.Request.BaseFileID, task.Request.FileID) if err := os.Remove(filePath); err != nil { - log.WithContext(ctx).WithField("file", filePath).WithError(err).Error("error removing file") + if os.IsNotExist(err) { + log.WithContext(ctx).WithField("file", filePath).Warn("File does not exist") + } else { + log.WithContext(ctx).WithField("file", filePath).WithError(err).Error("Error removing file") + } } task.UpdateStatus(common.StatusTicketRegistered) diff --git a/walletnode/services/common/status.go b/walletnode/services/common/status.go index 4e9bab78e..17b62a61d 100644 --- a/walletnode/services/common/status.go +++ b/walletnode/services/common/status.go @@ -58,6 +58,8 @@ const ( StatusErrorNotEnoughFiles StatusErrorDownloadFailed StatusErrorInvalidBurnTxID + StatusErrorOwnershipNotMatch + StatusErrorHashMismatch // Final StatusTaskFailed @@ -122,6 +124,9 @@ var statusNames = map[Status]string{ StatusErrorDownloadFailed: "Error Download Failed", StatusErrorInvalidBurnTxID: "Error Invalid Burn TxID", + StatusErrorOwnershipNotMatch: "Error Ownership Not Match", + StatusErrorHashMismatch: "Error Hash Mismatch", + // Final StatusTaskFailed: "Task Failed", StatusTaskRejected: "Task Rejected", @@ -159,7 +164,9 @@ func (status Status) IsFailure() bool { status == StatusErrorFindRespondingSNs || status == StatusErrorInvalidBurnTxID || status == StatusTaskRejected || - status == StatusTaskFailed + status == StatusTaskFailed || + status == StatusErrorOwnershipNotMatch || + status == StatusErrorHashMismatch } // StatusNames returns a sorted list of status names. diff --git a/walletnode/services/common/status_test.go b/walletnode/services/common/status_test.go index ef98b5b15..f0488d9d2 100644 --- a/walletnode/services/common/status_test.go +++ b/walletnode/services/common/status_test.go @@ -63,6 +63,8 @@ func TestStatusNames(t *testing.T) { StatusErrorNotEnoughFiles, StatusErrorDownloadFailed, StatusErrorInvalidBurnTxID, + StatusErrorOwnershipNotMatch, + StatusErrorHashMismatch, // Final StatusTaskFailed, StatusTaskRejected, diff --git a/walletnode/services/download/task.go b/walletnode/services/download/task.go index 00faefcf8..5f9b6e1ac 100644 --- a/walletnode/services/download/task.go +++ b/walletnode/services/download/task.go @@ -85,8 +85,9 @@ func (task *NftDownloadingTask) run(ctx context.Context) (err error) { if !tInfo.IsTicketPublic { ttxid, err = task.service.pastelHandler.PastelClient.TicketOwnership(ctx, task.Request.Txid, task.Request.PastelID, task.Request.PastelIDPassphrase) if err != nil && task.Request.Type != pastel.ActionTypeSense { - log.WithContext(ctx).WithError(err).WithField("txid", task.Request.Txid).WithField("pastelid", task.Request.PastelID).Error("Could not get ticket ownership") - return errors.Errorf("get ticket ownership: %w", err) + log.WithContext(ctx).WithError(err).WithField("txid", task.Request.Txid).WithField("pastelid", task.Request.PastelID).Error("Could not validate ticket ownership") + task.UpdateStatus(common.StatusErrorOwnershipNotMatch) + return errors.Errorf("validate ticket ownership: %w", err) } } @@ -145,7 +146,6 @@ func (task *NftDownloadingTask) run(ctx context.Context) (err error) { continue } - task.UpdateStatus(common.StatusDownloaded) // Check files are the same n, badNodes, err := task.MatchFiles() if err != nil { @@ -174,10 +174,12 @@ func (task *NftDownloadingTask) run(ctx context.Context) (err error) { } addSkipNodes(badNodes) + task.UpdateStatus(common.StatusErrorHashMismatch) log.WithContext(ctx).WithField("txid", task.Request.Txid).Error("Hashes do not match") continue } } + task.UpdateStatus(common.StatusDownloaded) break } @@ -213,6 +215,7 @@ func (task *NftDownloadingTask) Download(cctx context.Context, txid, ttxid, ttyp if err != nil { log.WithContext(ctx).WithError(err).WithField("txid", task.Request.Txid).WithField("timestamp", timestamp).WithField("pastelid", task.Request.PastelID).Error("Could not sign timestamp") errChan <- err + continue } log.WithContext(ctx).WithField("address", someNode.String()).WithField("txid", txid).Info("Downloading from supernode")