Created
October 5, 2021 09:58
-
-
Save IhostVlad/b40f237b3f1c8046b625fc3e0ae45407 to your computer and use it in GitHub Desktop.
HN comments Postgres Rust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const STRING_INDEX_TYPE = 'VARCHAR(190)'; | |
const NUMBER_INDEX_TYPE = 'BIGINT'; | |
const MAX_LIMIT_VALUE = 0x0fffffff | 0; | |
const compareOperators = { | |
$eq: (a, b) => ` | |
(((${a} = ${b}) and (not (${a} is null)) and (not (${b} is null))) or | |
((${a} is null) and (${b} is null))) | |
`, | |
$ne: (a, b) => ` | |
(((${a} <> ${b}) and (not (${a} is null)) and (not (${b} is null))) or | |
((${a} is null) and (not (${b} is null)) ) or | |
((${b} is null) and (not (${a} is null)) )) | |
`, | |
$lte: (a, b) => ` | |
(((${a} <= ${b}) and (not (${a} is null)) and (not (${b} is null))) or | |
((${a} is null) and (${b} is null))) | |
`, | |
$gte: (a, b) => ` | |
(((${a} >= ${b}) and (not (${a} is null)) and (not (${b} is null))) or | |
((${a} is null) and (${b} is null))) | |
`, | |
$lt: (a, b) => ` | |
(((${a} < ${b}) and (not (${a} is null)) and (not (${b} is null)))) | |
`, | |
$gt: (a, b) => ` | |
(((${a} > ${b}) and (not (${a} is null)) and (not (${b} is null)))) | |
` | |
}; | |
const searchToWhereExpression = (expression, escapeId, escapeStr, makeNestedPath, splitNestedPath) => { | |
const searchExprArray = []; | |
const isDocumentExpr = !('$and' in expression || '$or' in expression || '$not' in expression); | |
if (isDocumentExpr) { | |
for (let fieldName of Object.keys(expression)) { | |
const [baseName, ...nestedPath] = splitNestedPath(fieldName); | |
const resultFieldName = nestedPath.length > 0 ? `${escapeId(baseName)} #> '${makeNestedPath(nestedPath)}'` : escapeId(baseName); | |
let fieldValue = expression[fieldName]; | |
let fieldOperator = '$eq'; | |
if (fieldValue instanceof Object) { | |
fieldOperator = Object.keys(fieldValue)[0]; | |
fieldValue = fieldValue[fieldOperator]; | |
} | |
const compareInlinedValue = fieldValue != null ? `CAST(${escapeStr(JSON.stringify(fieldValue))} AS JSONB)` : `CAST(${escapeStr('null')} AS JSONB)`; | |
if (compareOperators[fieldOperator] == null) { | |
throw new Error(`Malformed JSON ${JSON.stringify(fieldOperator)}, must be JSON primitive value`); | |
} | |
const resultExpression = compareOperators[fieldOperator](resultFieldName, compareInlinedValue); | |
searchExprArray.push(resultExpression); | |
} | |
return searchExprArray.join(' AND '); | |
} | |
for (let operatorName of Object.keys(expression)) { | |
if (operatorName === '$and' || operatorName === '$or') { | |
const localSearchExprArray = []; | |
for (let innerExpr of expression[operatorName]) { | |
const whereExpr = searchToWhereExpression(innerExpr, escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
localSearchExprArray.push(whereExpr); | |
} | |
const joiner = operatorName === '$and' ? ' AND ' : ' OR '; | |
if (localSearchExprArray.length > 1) { | |
searchExprArray.push(localSearchExprArray.map(val => `(${val})`).join(joiner)); | |
} else { | |
searchExprArray.push(localSearchExprArray[0]); | |
} | |
break; | |
} | |
if (operatorName === '$not') { | |
const whereExpr = searchToWhereExpression(expression[operatorName], escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
searchExprArray.push(`NOT (${whereExpr})`); | |
break; | |
} | |
} | |
return searchExprArray.join(' AND '); | |
}; | |
const empty = Symbol('empty'); | |
const updateToSetExpression = (expression, escapeId, escapeStr, makeNestedPath, splitNestedPath) => { | |
const updatingFieldsDescriptors = new Set(); | |
const updatingFields = new Map(); | |
const errors = []; | |
for (let operatorName of Object.keys(expression)) { | |
if (!(operatorName === '$set' || operatorName === '$unset' || operatorName === '$inc')) { | |
errors.push(new Error(`Update operator "${operatorName}" is invalid`)); | |
continue; | |
} | |
const extractedExpression = expression[operatorName]; | |
for (let fieldName of Object.keys(extractedExpression)) { | |
const fieldValue = extractedExpression[fieldName]; | |
const [baseName, ...nestedPath] = splitNestedPath(fieldName); | |
let updatingFieldLevelMap = updatingFields; | |
let updatingFieldDescriptor = null; | |
for (const partName of [baseName, ...nestedPath]) { | |
if (!updatingFieldLevelMap.has(partName)) { | |
updatingFieldLevelMap.set(partName, { | |
key: updatingFieldDescriptor !== empty && updatingFieldDescriptor != null ? `${updatingFieldDescriptor.key}.${partName}` : partName, | |
nestedKey: nestedPath, | |
baseName, | |
selectedOperation: empty, | |
children: new Map(), | |
$set: empty, | |
$unset: empty, | |
$inc: empty | |
}); | |
} | |
updatingFieldDescriptor = updatingFieldLevelMap.get(partName); | |
updatingFieldLevelMap = updatingFieldDescriptor.children; | |
updatingFieldsDescriptors.add(updatingFieldDescriptor); | |
} | |
void (updatingFieldDescriptor[operatorName] = fieldValue); | |
} | |
} | |
for (const descriptor of updatingFieldsDescriptors) { | |
const flags = { | |
unset: descriptor['$unset'] !== empty, | |
set: descriptor['$set'] !== empty, | |
inc: descriptor['$inc'] !== empty, | |
child: descriptor.children.size > 0 | |
}; | |
if (Object.values(flags).reduce((acc, flag) => +flag + acc, 0) !== 1) { | |
errors.push(new Error([`Updating set for key "${descriptor.key}" came into conflict: `, `either key includes "$set", "$unset", "$inc" simultaneously, `, `either key has children update nodes`].join(''))); | |
} | |
switch (true) { | |
case flags.unset: | |
descriptor.selectedOperation = '$unset'; | |
descriptor['$set'] = empty; | |
// eslint-disable-next-line no-fallthrough | |
case flags.set: | |
descriptor.selectedOperation = descriptor.selectedOperation !== empty ? descriptor.selectedOperation : '$set'; | |
descriptor['$inc'] = empty; | |
// eslint-disable-next-line no-fallthrough | |
case flags.inc: | |
descriptor.selectedOperation = descriptor.selectedOperation !== empty ? descriptor.selectedOperation : '$inc'; | |
descriptor.children.clear(); | |
// eslint-disable-next-line no-fallthrough | |
default: | |
break; | |
} | |
} | |
for (const descriptor of updatingFieldsDescriptors) { | |
if (descriptor.children.size !== 0) { | |
continue; | |
} | |
const baseDescriptor = updatingFields.get(descriptor.baseName); | |
const operationName = descriptor.selectedOperation; | |
const fieldValue = operationName !== empty && operationName != null ? descriptor[operationName] : empty; | |
if (fieldValue === empty) { | |
errors.push(new Error(`Empty field value at ${descriptor.key}`)); | |
} | |
const operation = { | |
operationName, | |
fieldValue | |
}; | |
if (descriptor.nestedKey.length > 0) { | |
operation.nestedPath = descriptor.nestedKey; | |
} | |
if (baseDescriptor === descriptor) { | |
baseDescriptor.operations = operation; | |
} else if (Array.isArray(baseDescriptor.operations)) { | |
baseDescriptor.operations.push(operation); | |
} else { | |
baseDescriptor.operations = [operation]; | |
} | |
} | |
let inlineTableNameIdx = 0; | |
const updateOperations = new Map(); | |
for (const [baseKey, baseDescriptor] of updatingFields) { | |
updateOperations.set(baseKey, baseDescriptor.operations); | |
} | |
const updateExprArray = []; | |
updatingFieldsDescriptors.clear(); | |
updatingFields.clear(); | |
for (const [baseName, operations] of updateOperations) { | |
if (!Array.isArray(operations) && operations != null) { | |
const baseOperation = operations; | |
if (baseOperation.operationName === '$unset') { | |
updateExprArray.push(`${escapeId(baseName)} = NULL `); | |
} else if (baseOperation.operationName === '$set') { | |
const fieldValue = baseOperation.fieldValue; | |
updateExprArray.push(`${escapeId(baseName)} = ${fieldValue != null ? `CAST(${escapeStr(JSON.stringify(fieldValue))} AS JSONB)` : `CAST('null' AS JSONB)`} `); | |
} else if (baseOperation.operationName === '$inc') { | |
const inlineTableName = escapeId(`inline-table-${inlineTableNameIdx++}`); | |
const fieldValue = baseOperation.fieldValue; | |
const fieldValueType = escapeStr(fieldValue != null ? fieldValue.constructor === String ? 'string' : fieldValue.constructor === Number ? 'number' : 'unknown' : 'unknown'); | |
updateExprArray.push(`${escapeId(baseName)} = (SELECT CASE | |
WHEN (jsonb_typeof(${inlineTableName}."val") || '-' || ${fieldValueType} ) = 'string-string' THEN to_jsonb( | |
CAST(${inlineTableName}."val" #>> '{}' AS VARCHAR) || | |
CAST(${escapeStr(`${fieldValue}`)} AS VARCHAR) | |
) | |
WHEN (jsonb_typeof(${inlineTableName}."val") || '-' || ${fieldValueType} ) = 'number-number' THEN to_jsonb( | |
CAST(${inlineTableName}."val" #>> '{}' AS DECIMAL(48, 16)) + | |
CAST(${+fieldValue} AS DECIMAL(48, 16)) | |
) | |
ELSE to_jsonb(jsonb_typeof((SELECT 'MalformedIncOperation')::jsonb)) | |
END FROM ( | |
SELECT ${escapeId(baseName)} AS "val" | |
) ${inlineTableName}) | |
`); | |
} | |
} else if (Array.isArray(operations)) { | |
let updateExpr = escapeId(baseName); | |
for (const { | |
operationName, | |
nestedPath, | |
fieldValue | |
} of operations) { | |
const inlineTableName = escapeId(`inline-table-${inlineTableNameIdx++}`); | |
if (operationName === '$unset') { | |
updateExpr = `(SELECT CASE | |
WHEN jsonb_typeof(${inlineTableName}."val" #> '${makeNestedPath(nestedPath)}') IS NOT NULL THEN | |
${inlineTableName}."val" #- '${makeNestedPath(nestedPath)}' | |
ELSE to_jsonb(jsonb_typeof((SELECT 'MalformedUnsetOperation')::jsonb)) | |
END FROM ( | |
SELECT ${updateExpr} AS "val" | |
) ${inlineTableName}) | |
`; | |
} else if (operationName === '$set') { | |
const baseNestedPath = makeNestedPath(nestedPath.slice(0, -1)); | |
const lastNestedPathElementType = escapeStr(nestedPath[nestedPath.length - 1] != null ? !isNaN(+nestedPath[nestedPath.length - 1]) ? 'number' : 'string' : 'unknown'); | |
updateExpr = `(SELECT CASE | |
WHEN ((jsonb_typeof(${inlineTableName}."val" #> '${baseNestedPath}') || '-' || ${lastNestedPathElementType} ) = 'object-string' OR | |
(jsonb_typeof(${inlineTableName}."val" #> '${baseNestedPath}') || '-' || ${lastNestedPathElementType} ) = 'array-number') THEN | |
jsonb_set(${updateExpr}, '${makeNestedPath(nestedPath)}', ${fieldValue != null ? `CAST(${escapeStr(JSON.stringify(fieldValue))} AS JSONB)` : `CAST('null' AS JSONB)`}) | |
ELSE to_jsonb(jsonb_typeof((SELECT 'MalformedSetOperation')::jsonb)) | |
END FROM ( | |
SELECT ${updateExpr} AS "val" | |
) ${inlineTableName}) | |
`; | |
} else if (operationName === '$inc') { | |
const fieldValueType = escapeStr(fieldValue != null ? fieldValue.constructor === String ? 'string' : fieldValue.constructor === Number ? 'number' : 'unknown' : 'unknown'); | |
updateExpr = `(SELECT CASE | |
WHEN (jsonb_typeof(${inlineTableName}."val" #> '${makeNestedPath(nestedPath)}') || '-' || ${fieldValueType} ) = 'string-string' THEN jsonb_set(${updateExpr}, '${makeNestedPath(nestedPath)}', to_jsonb( | |
CAST(${inlineTableName}."val" #>> '${makeNestedPath(nestedPath)}' AS VARCHAR) || | |
CAST(${escapeStr(`${fieldValue}`)} AS VARCHAR) | |
)) | |
WHEN (jsonb_typeof(${inlineTableName}."val" #> '${makeNestedPath(nestedPath)}') || '-' || ${fieldValueType} ) = 'number-number' THEN jsonb_set(${updateExpr}, '${makeNestedPath(nestedPath)}', to_jsonb( | |
CAST(${inlineTableName}."val" #>> '${makeNestedPath(nestedPath)}' AS DECIMAL(48, 16)) + | |
CAST(${+fieldValue} AS DECIMAL(48, 16)) | |
)) | |
ELSE to_jsonb(jsonb_typeof((SELECT 'MalformedIncOperation')::jsonb)) | |
END FROM ( | |
SELECT ${updateExpr} AS "val" | |
) ${inlineTableName}) | |
`; | |
} | |
} | |
updateExprArray.push(`${escapeId(baseName)} = ${updateExpr}`); | |
} | |
} | |
if (errors.length > 0) { | |
const summaryError = new Error(errors.map(({ | |
message | |
}) => message).join('\n')); | |
summaryError.stack = errors.map(({ | |
stack | |
}) => stack).join('\n'); | |
throw summaryError; | |
} | |
return updateExprArray.join(', '); | |
}; | |
const buildUpsertDocument = (searchExpression, updateExpression, splitNestedPath) => { | |
const searchPart = !('$and' in searchExpression || '$or' in searchExpression || '$not' in searchExpression) ? searchExpression : {}; | |
const updatePart = '$set' in updateExpression ? updateExpression['$set'] : {}; | |
const baseDocument = { ...searchPart, | |
...updatePart | |
}; | |
const resultDocument = {}; | |
for (const key of Object.keys(baseDocument)) { | |
const nestedKeys = splitNestedPath(key); | |
let currentResultDocument = resultDocument; | |
for (const [idx, innerKey] of nestedKeys.entries()) { | |
if (!currentResultDocument.hasOwnProperty(innerKey)) { | |
currentResultDocument[innerKey] = isNaN(Number(nestedKeys[idx + 1])) ? nestedKeys.length - 1 === idx ? baseDocument[key] : {} : []; | |
currentResultDocument = currentResultDocument[innerKey]; | |
} | |
} | |
} | |
return resultDocument; | |
}; | |
const makeNestedPath = nestedPath => { | |
const jsonPathParts = []; | |
for (const part of nestedPath) { | |
if (part == null || part.constructor !== String) { | |
throw new Error('Invalid JSON path'); | |
} | |
if (!isNaN(+part)) { | |
jsonPathParts.push(String(+part)); | |
} else { | |
jsonPathParts.push(JSON.stringify(part)); | |
} | |
} | |
return `{${jsonPathParts.join(',')}}`; | |
}; | |
const splitNestedPath = input => { | |
if(input == null || input.constructor !== String) { | |
throw new Error(`Invalid nested path ${input}`) | |
} | |
// FOR EXTREMELY CASE WITHOUT DOTS AND QUOTES IN FIELDS NAMES | |
return Array.from(input.split(".")) | |
}; | |
const escapeId = str => `"${String(str).replace(/(["])/gi, '$1$1')}"`; | |
const escapeStr = str => `'${String(str).replace(/(['])/gi, '$1$1')}'`; | |
const makeSqlQuery = ({ | |
searchToWhereExpression, | |
updateToSetExpression, | |
buildUpsertDocument, | |
splitNestedPath, | |
makeNestedPath, | |
escapeId, | |
escapeStr, | |
schemaName, | |
tablePrefix | |
}, readModelName, operation, ...inputArgs) => { | |
const args = inputArgs; | |
switch (operation) { | |
case 'defineTable': | |
{ | |
const [tableName, tableDescription] = args; | |
if (tableDescription == null || tableDescription.constructor !== Object || tableDescription.indexes == null || tableDescription.indexes.constructor !== Object || !Array.isArray(tableDescription.fields)) { | |
throw new Error(`Wrong table description ${tableDescription}`); | |
} | |
const { | |
fields, | |
indexes | |
} = tableDescription; | |
const sqlQuery = [ | |
`CREATE TABLE ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} ( | |
${fields.concat(Object.keys(indexes)).map(columnName => `${escapeId(columnName)} JSONB`).join(', ')} | |
)`, | |
...Object.entries(indexes).map(([indexName, indexType], idx) => [ | |
`ALTER TABLE ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} | |
ADD CONSTRAINT ${escapeId(`${indexName}-type-validation`)} | |
CHECK (${idx > 0 ? `jsonb_typeof(${escapeId(indexName)}) = ${escapeStr('null')} OR ` : ''}jsonb_typeof(${escapeId(indexName)}) = ${escapeStr(indexType === 'number' ? 'number' : 'string')})`, | |
`CREATE ${idx === 0 ? 'UNIQUE' : ''} INDEX ${escapeId(`${tablePrefix}${tableName}-${indexName}-extracted-field`)} | |
ON ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} ( | |
CAST((${escapeId(indexName)} ->> '$') AS ${indexType === 'number' ? NUMBER_INDEX_TYPE : STRING_INDEX_TYPE}))`, | |
`CREATE ${idx === 0 ? 'UNIQUE' : ''} INDEX ${escapeId(`${tablePrefix}${tableName}-${indexName}-full-field`)} | |
ON ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} ( | |
${escapeId(indexName)} | |
)` | |
]).flat(), | |
`COMMENT ON TABLE ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} | |
IS ${escapeStr(`RESOLVE-${readModelName}`)}` | |
]; | |
return sqlQuery; | |
} | |
case 'find': | |
{ | |
const [tableName, searchExpression, fieldList, sort, inputSkip, inputLimit] = args; | |
const orderExpression = sort && Object.keys(sort).length > 0 ? 'ORDER BY ' + Object.keys(sort).map(fieldName => { | |
const [baseName, ...nestedPath] = splitNestedPath(fieldName); | |
const provisionedName = nestedPath.length === 0 ? escapeId(baseName) : `${escapeId(baseName)}->'${makeNestedPath(nestedPath)}'`; | |
return sort[fieldName] > 0 ? `${provisionedName} ASC` : `${provisionedName} DESC`; | |
}).join(', ') : ''; | |
const searchExpr = searchToWhereExpression(searchExpression, escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
const inlineSearchExpr = searchExpr.trim() !== '' ? `WHERE ${searchExpr} ` : ''; | |
const fieldKeys = fieldList != null ? Object.keys(fieldList) : []; | |
const inclusiveMode = fieldList != null ? fieldList[fieldKeys[0]] === 1 : false | |
const projExpr = inclusiveMode ? fieldKeys.map(key => escapeId(key)).join(',') : '*'; | |
const baseQuery = `SELECT ${projExpr} FROM ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} | |
${inlineSearchExpr} | |
${orderExpression} | |
`; | |
const skipNumber = isFinite(+inputSkip) ? +inputSkip : 0; | |
const limitNumber = isFinite(+inputLimit) ? +inputLimit : MAX_LIMIT_VALUE; | |
const skipStr = `OFFSET ${skipNumber}`.padEnd(18, ' '); | |
const limitStr = `LIMIT ${limitNumber}`.padEnd(18, ' '); | |
const sqlQuery = `${baseQuery} ${skipStr}${limitStr}`; | |
return sqlQuery; | |
} | |
case 'findOne': | |
{ | |
const [tableName, searchExpression, fieldList] = args; | |
const searchExpr = searchToWhereExpression(searchExpression, escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
const inlineSearchExpr = searchExpr.trim() !== '' ? `WHERE ${searchExpr} ` : ''; | |
const fieldKeys = fieldList != null ? Object.keys(fieldList) : []; | |
const inclusiveMode = fieldList != null ? fieldList[fieldKeys[0]] === 1 : false | |
const projExpr = inclusiveMode ? fieldKeys.map(key => escapeId(key)).join(',') : '*'; | |
const sqlQuery = `SELECT ${projExpr} FROM ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} | |
${inlineSearchExpr} | |
OFFSET 0 | |
LIMIT 1`; | |
return sqlQuery; | |
} | |
case 'count': | |
{ | |
const [tableName, searchExpression] = args; | |
const searchExpr = searchToWhereExpression(searchExpression, escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
const inlineSearchExpr = searchExpr.trim() !== '' ? `WHERE ${searchExpr} ` : ''; | |
const sqlQuery = `SELECT Count(*) AS ${escapeId('Count')} | |
FROM ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} | |
${inlineSearchExpr}`; | |
return sqlQuery; | |
} | |
case 'insert': | |
{ | |
const [tableName, document] = args; | |
const sqlQuery = `INSERT INTO ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)}(${Object.keys(document).map(key => escapeId(key)).join(', ')}) | |
VALUES(${Object.keys(document).map(key => `CAST(${escapeStr(JSON.stringify(document[key]))} AS JSONB)`).join(', ')}) | |
`; | |
return sqlQuery; | |
} | |
case 'update': | |
{ | |
const [tableName, searchExpression, updateExpression, options] = args; | |
const isUpsert = options != null ? !!options.upsert : false; | |
const upsertDocument = isUpsert ? buildUpsertDocument(searchExpression, updateExpression, splitNestedPath) : null; | |
const searchExpr = searchToWhereExpression(searchExpression, escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
const updateExpr = updateToSetExpression(updateExpression, escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
const inlineSearchExpr = searchExpr.trim() !== '' ? `WHERE ${searchExpr} ` : ''; | |
const baseQuery = `UPDATE ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} | |
SET ${updateExpr} ${inlineSearchExpr}`; | |
const upsertKeys = upsertDocument != null ? Object.keys(upsertDocument) : null; | |
const sqlQuery = updateExpr.trim() !== '' ? upsertDocument != null && upsertKeys != null && upsertKeys.length > 0 ? `WITH "Updating" AS ( | |
${baseQuery} RETURNING * | |
), "Inserting" AS ( | |
SELECT ${upsertKeys.map(key => `CAST(${escapeStr(JSON.stringify(upsertDocument[key]))} AS JSONB) AS ${escapeId(key)}`).join(', ')} | |
WHERE NOT EXISTS(SELECT * FROM "Updating") | |
) | |
INSERT INTO ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)}(${upsertKeys.map(key => escapeId(key)).join(', ')}) | |
SELECT * FROM "Inserting" | |
ON CONFLICT DO NOTHING | |
;` : baseQuery : ''; | |
return sqlQuery; | |
} | |
case 'delete': | |
{ | |
const [tableName, searchExpression] = args; | |
const searchExpr = searchToWhereExpression(searchExpression, escapeId, escapeStr, makeNestedPath, splitNestedPath); | |
const inlineSearchExpr = searchExpr.trim() !== '' ? `WHERE ${searchExpr} ` : ''; | |
const sqlQuery = `DELETE FROM ${escapeId(schemaName)}.${escapeId(`${tablePrefix}${tableName}`)} | |
${inlineSearchExpr}`; | |
return sqlQuery; | |
} | |
default: | |
{ | |
throw new Error(`Invalid operation ${operation}`); | |
} | |
} | |
}; | |
const deepClone = value => value !== undefined ? JSON.parse(JSON.stringify(value)) : undefined; | |
const wrapWithCloneArgs = fn => (...args) => fn(...args.map(arg => deepClone(arg))); | |
const DependencyError = function () { | |
Error.call(this); | |
this.name = 'DependencyError'; | |
if (Error.captureStackTrace) { | |
Error.captureStackTrace(this, DependencyError); | |
} else { | |
this.stack = new Error().stack; | |
} | |
}; | |
const baseMethods = { | |
searchToWhereExpression, | |
updateToSetExpression, | |
buildUpsertDocument, | |
splitNestedPath, | |
makeNestedPath, | |
escapeId, | |
escapeStr | |
}; | |
const serializeError = error => error != null ? { | |
name: error.name == null ? null : String(error.name), | |
code: error.code == null ? null : String(error.code), | |
message: String(error.message), | |
stack: String(error.stack) | |
} : null; | |
const filterFields = (fieldList, inputRow) => { | |
if (fieldList != null && fieldList.constructor !== Object) { | |
throw new Error('Field list should be an object with enumerated selected fields'); | |
} | |
const row = inputRow | |
const fieldNames = fieldList != null ? Object.keys(fieldList) : []; | |
if (fieldList == null || fieldNames.length === 0) { | |
return row; | |
} | |
const inclusiveMode = fieldList[fieldNames[0]] === 1; | |
if(inclusiveMode) { | |
return row | |
} | |
const resultRow = {}; | |
for (const key of Object.keys(row)) { | |
if (!fieldList.hasOwnProperty(key)) { | |
resultRow[key] = row[key]; | |
} | |
} | |
return resultRow; | |
}; | |
const executeProjection = async (name, options, readModelName, ...inputArgs) => { | |
const args = wrapWithCloneArgs((...currentArgs) => currentArgs)(...inputArgs); | |
const methods = { ...baseMethods, | |
...options | |
}; | |
const execute_statement = async (sql) => { | |
let result = null | |
if(Array.isArray(sql)) { | |
for(const insql of sql) { | |
result = await options.execute_statement(insql) | |
} | |
} else if(sql != null && sql.constructor === String) { | |
result = await options.execute_statement(sql) | |
} else { | |
throw new Error("SQL is wrong type") | |
} | |
return result | |
} | |
switch (name) { | |
case 'defineTable': | |
case 'insert': | |
case 'update': | |
case 'delete': | |
{ | |
await execute_statement(makeSqlQuery(methods, readModelName, name, ...args)); | |
return null; | |
} | |
case 'findOne': | |
{ | |
const result = await execute_statement(makeSqlQuery(methods, readModelName, name, ...args)); | |
return result.length > 0 ? filterFields(args[2], result[0]) : null; | |
} | |
case 'find': | |
{ | |
const result = await execute_statement(makeSqlQuery(methods, readModelName, name, ...args)); | |
return result.map(filterFields.bind(null, args[2])); | |
} | |
case 'count': | |
{ | |
const result = await execute_statement(makeSqlQuery(methods, readModelName, name, ...args)); | |
return result.length > 0 ? +result[0].Count : 0; | |
} | |
default: | |
{ | |
throw new Error(`Invalid read-model store method ${name}`); | |
} | |
} | |
}; | |
const getStoreAndProjection = (options) => { | |
const { readModelName, projection } = options | |
const store = new Proxy({}, { | |
get(_, key) { | |
return executeProjection.bind(null, key, options, readModelName); | |
}, | |
set() { | |
throw new Error('Read-model Store API is immutable'); | |
} | |
}); | |
return { | |
store, | |
projection | |
}; | |
}; | |
const builder = async (options) => { | |
let events = options.events; | |
if (!Array.isArray(events)) { | |
throw new Error('Provided events is not array'); | |
} | |
const { store, projection } = getStoreAndProjection(options); | |
const getVacantTimeInMillis = (time => time - Date.now()).bind(null, Date.now() + options.maxExecutionTime); | |
const encryption = new Proxy({}, { | |
get() { | |
throw new DependencyError('GetEncryption'); | |
}, | |
set() { | |
throw new DependencyError('SetEncryption'); | |
} | |
}); | |
const result = { | |
appliedEventsThreadData: [], | |
appliedCount: 0, | |
successEvent: null, | |
failureEvent: null, | |
failureError: null, | |
status: 'OK_ALL' | |
}; | |
try { | |
for (const event of events) { | |
try { | |
const handler = projection[event.type]; | |
if (typeof handler === 'function') { | |
await handler(store, event, encryption); | |
result.successEvent = event; | |
} | |
result.appliedEventsThreadData.push({ | |
threadId: event.threadId, | |
threadCounter: event.threadCounter | |
}); | |
result.appliedCount++; | |
if (getVacantTimeInMillis() < 0 && result.appliedCount < events.length) { | |
result.status = 'OK_PARTIAL'; | |
break; | |
} | |
} catch (error) { | |
if (error != null && error.name === 'DependencyError') { | |
throw error; | |
} | |
result.failureError = serializeError(error); | |
result.failureEvent = event; | |
result.status = 'CUSTOM_ERROR'; | |
break; | |
} | |
} | |
} catch (error) { | |
result.status = 'DEPENDENCY_ERROR'; | |
result.failureError = serializeError(error); | |
result.appliedEventsThreadData = []; | |
result.successEvent = null; | |
result.failureEvent = null; | |
result.appliedCount = 0; | |
} | |
if(result.status === "OK_ALL" || result.statu === "OK_PARTIAL") { | |
return result | |
} else { | |
throw result | |
} | |
}; | |
// V8 RESOURCE EXPORT | |
builder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "hnrs" | |
version = "0.1.0" | |
edition = "2018" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[profile.release] | |
"codegen-units" = 1 | |
lto = "fat" | |
[dependencies] | |
rusty_v8 = "0.27.0" | |
libpq = "1.3.3" | |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const events = [ | |
{ "type": "Init" }, | |
{ | |
"threadId": 0, | |
"threadCounter": 0, | |
"timestamp": 1629367934293, | |
"aggregateId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"aggregateversion": 1, | |
"type": "UserCreated", | |
"payload": { | |
"name": "QQQ" | |
}, | |
"eventSize": 137 | |
}, | |
{ | |
"threadId": 1, | |
"threadCounter": 0, | |
"timestamp": 1629367934439, | |
"aggregateId": "5ba6fe25-69f4-4f16-9741-70984f267b0a", | |
"aggregateversion": 1, | |
"type": "_RESOLVE_SYS_SCHEDULED_COMMAND_CREATED_", | |
"payload": { | |
"date": 1629367994293, | |
"command": { | |
"type": "rejectUser", | |
"payload": { | |
"reason": "user registration was not confirmed within allowed period" | |
}, | |
"aggregateId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"aggregateName": "User" | |
} | |
}, | |
"eventSize": 362 | |
}, | |
{ | |
"threadId": 2, | |
"threadCounter": 0, | |
"timestamp": 1629367939334, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 1, | |
"type": "StoryCreated", | |
"payload": { | |
"link": "", | |
"text": "QQQ", | |
"title": "QQQ", | |
"userId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"userName": "QQQ" | |
}, | |
"eventSize": 227 | |
}, | |
{ | |
"threadId": 3, | |
"threadCounter": 0, | |
"timestamp": 1629367941939, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 2, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ", | |
"createdAt": 1629367941917, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "091c65bb-b961-4098-8428-8454d7c5dd5e", | |
"parentCommentId": null | |
}, | |
"eventSize": 376 | |
}, | |
{ | |
"threadId": 4, | |
"threadCounter": 0, | |
"timestamp": 1629367943676, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 3, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ", | |
"createdAt": 1629367943651, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "79e7e43e-9cff-494f-acfc-db3731e2188a", | |
"parentCommentId": null | |
}, | |
"eventSize": 376 | |
}, | |
{ | |
"threadId": 5, | |
"threadCounter": 0, | |
"timestamp": 1629367945476, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 4, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ", | |
"createdAt": 1629367945455, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7ee2df66-64d3-46c4-b34c-3e1e2113737f", | |
"parentCommentId": null | |
}, | |
"eventSize": 376 | |
}, | |
{ | |
"threadId": 6, | |
"threadCounter": 0, | |
"timestamp": 1629367994319, | |
"aggregateId": "5ba6fe25-69f4-4f16-9741-70984f267b0a", | |
"aggregateversion": 2, | |
"type": "_RESOLVE_SYS_SCHEDULED_COMMAND_EXECUTED_", | |
"payload": { | |
"date": 1629367994293, | |
"command": { | |
"type": "rejectUser", | |
"payload": { | |
"reason": "user registration was not confirmed within allowed period" | |
}, | |
"aggregateId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"aggregateName": "User" | |
} | |
}, | |
"eventSize": 363 | |
}, | |
{ | |
"threadId": 7, | |
"threadCounter": 0, | |
"timestamp": 1629367994387, | |
"aggregateId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"aggregateversion": 2, | |
"type": "UserRejected", | |
"payload": { | |
"reason": "user registration was not confirmed within allowed period" | |
}, | |
"eventSize": 194 | |
}, | |
{ | |
"threadId": 8, | |
"threadCounter": 0, | |
"timestamp": 1629367994402, | |
"aggregateId": "5ba6fe25-69f4-4f16-9741-70984f267b0a", | |
"aggregateversion": 3, | |
"type": "_RESOLVE_SYS_SCHEDULED_COMMAND_SUCCEEDED_", | |
"payload": {}, | |
"eventSize": 155 | |
}, | |
{ | |
"threadId": 9, | |
"threadCounter": 0, | |
"timestamp": 1629368036785, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 5, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8885447632240332", | |
"createdAt": 1629368036758, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "646acffa-f0b9-4318-b86b-9ad9319e8b6c", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 10, | |
"threadCounter": 0, | |
"timestamp": 1629368037723, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 6, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.02173771529796531", | |
"createdAt": 1629368037700, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e3ee6b03-b9cc-477f-8913-0fbb2dd647c2", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 11, | |
"threadCounter": 0, | |
"timestamp": 1629368038285, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 7, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33212418178758196", | |
"createdAt": 1629368038260, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eaea04fb-ef9e-4021-9a68-18a264cbecb6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 12, | |
"threadCounter": 0, | |
"timestamp": 1629368038772, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 8, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6491946191563424", | |
"createdAt": 1629368038748, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4cff764-1082-4b77-a027-7a1aea9b1700", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 13, | |
"threadCounter": 0, | |
"timestamp": 1629368071041, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 9, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9658064394459833", | |
"createdAt": 1629368071009, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "91a2f290-36ff-43ed-a453-b3b9c4628c5e", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 14, | |
"threadCounter": 0, | |
"timestamp": 1629368082242, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 10, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4961305180736907", | |
"createdAt": 1629368082211, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c12c6e2-e2e7-43a6-af56-e6734b7a8bc6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 15, | |
"threadCounter": 0, | |
"timestamp": 1629368098504, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 11, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.944521258181476", | |
"createdAt": 1629368098472, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0b6b621b-03af-4a94-a8b4-bcd97b9f3a30", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 16, | |
"threadCounter": 0, | |
"timestamp": 1629368098564, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 12, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6639335326578569", | |
"createdAt": 1629368098524, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43c4bfad-9f6e-49fc-9291-c083f372ffb5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 17, | |
"threadCounter": 0, | |
"timestamp": 1629368098626, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 13, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6514952559252084", | |
"createdAt": 1629368098576, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "935fb55a-096d-4576-b804-5af29d378938", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 18, | |
"threadCounter": 0, | |
"timestamp": 1629368098685, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 14, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15993472872011882", | |
"createdAt": 1629368098627, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8aa6eda1-676f-48eb-a07b-91303c7c478b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 19, | |
"threadCounter": 0, | |
"timestamp": 1629368098737, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 15, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5704639423553322", | |
"createdAt": 1629368098679, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c006b552-04b3-4bf5-853c-d2bc725137b6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 20, | |
"threadCounter": 0, | |
"timestamp": 1629368098797, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 16, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43237653854165403", | |
"createdAt": 1629368098731, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "72537ce1-0917-4fa1-8fe9-28822629e830", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 21, | |
"threadCounter": 0, | |
"timestamp": 1629368098857, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 17, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15897478531963016", | |
"createdAt": 1629368098782, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d43791ea-e42c-4c67-bf57-82ab27f7bfb8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 22, | |
"threadCounter": 0, | |
"timestamp": 1629368098904, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 18, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5834429607629477", | |
"createdAt": 1629368098833, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9a65e49e-280d-4278-89be-7bd1c6fa595a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 23, | |
"threadCounter": 0, | |
"timestamp": 1629368098953, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 19, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6675932186778961", | |
"createdAt": 1629368098885, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "46657e63-7208-4f88-aff5-d84baa957c27", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 24, | |
"threadCounter": 0, | |
"timestamp": 1629368099021, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 20, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4261768623032014", | |
"createdAt": 1629368098943, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1479ab68-2b65-4f13-b429-8825462d2b3a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 25, | |
"threadCounter": 0, | |
"timestamp": 1629368099101, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 21, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06503138254509389", | |
"createdAt": 1629368098998, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "14fe70f3-55b7-4e4b-8a1b-80b22b6aadd7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 26, | |
"threadCounter": 0, | |
"timestamp": 1629368099143, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 22, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.018939373976339935", | |
"createdAt": 1629368099049, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "efbcc60f-a2e5-4ea9-a6a7-401e65b5abad", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 27, | |
"threadCounter": 0, | |
"timestamp": 1629368099220, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 23, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16089301579789206", | |
"createdAt": 1629368099102, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4bfb6586-5736-4bef-b8e5-9eac28c207e2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 28, | |
"threadCounter": 0, | |
"timestamp": 1629368099257, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 24, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15649250430098105", | |
"createdAt": 1629368099154, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d659d6c4-1d88-49a4-bd64-e51f17cc01bf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 29, | |
"threadCounter": 0, | |
"timestamp": 1629368099316, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 25, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1139966101870602", | |
"createdAt": 1629368099206, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3a314ad7-810c-4bc5-a948-d5aa63005651", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 30, | |
"threadCounter": 0, | |
"timestamp": 1629368099383, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 26, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9836373651689397", | |
"createdAt": 1629368099258, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dc8e3223-2f69-4ab8-87ad-6fe231eb2ac0", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 31, | |
"threadCounter": 0, | |
"timestamp": 1629368099441, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 27, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2886675467228291", | |
"createdAt": 1629368099322, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fc0cccb6-6c5d-4b9d-b474-a4b7bf369335", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 0, | |
"timestamp": 1629368099494, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 28, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2511986219494261", | |
"createdAt": 1629368099374, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f8d72502-2cb4-4fe9-a4ca-1cbe9a1d7501", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 33, | |
"threadCounter": 0, | |
"timestamp": 1629368099563, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 29, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14287877049368558", | |
"createdAt": 1629368099430, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8ebf9996-3da4-4693-8130-f0f1e1a2289f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 125, | |
"timestamp": 1629368224677, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 318, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.44703107206563575", | |
"createdAt": 1629368217583, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d6a6768a-4156-4099-a534-485e61ed0cd6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 34, | |
"threadCounter": 0, | |
"timestamp": 1629368099653, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 30, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10846018827744341", | |
"createdAt": 1629368099481, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75cde34a-a5e9-4857-ad51-cd837d80204e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 35, | |
"threadCounter": 0, | |
"timestamp": 1629368099726, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 31, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17561228482849545", | |
"createdAt": 1629368099533, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "116e3d87-7351-434e-a50f-61c0ee3412d7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 1, | |
"timestamp": 1629368164600, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 245, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7334697091980921", | |
"createdAt": 1629368151971, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d8cbb78f-9070-4714-a346-5d96f2ddf130", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 36, | |
"threadCounter": 0, | |
"timestamp": 1629368099802, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 32, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7359613571074818", | |
"createdAt": 1629368099645, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e1ed0c13-5f17-4e85-8543-a8bd72a4533e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 2, | |
"timestamp": 1629368525101, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 663, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8050248254037995", | |
"createdAt": 1629368249495, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "15ad2a5f-66f0-4825-a0ac-63ef8f4c513c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 37, | |
"threadCounter": 0, | |
"timestamp": 1629368099878, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 33, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14101374680740808", | |
"createdAt": 1629368099584, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "05e32c02-8e29-42db-8c33-caa162a2d1ff", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 1, | |
"timestamp": 1629368344983, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 500, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9217867531696716", | |
"createdAt": 1629368239585, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2409471e-c790-4544-ba4c-a97e41877d5b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 38, | |
"threadCounter": 0, | |
"timestamp": 1629368099961, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 34, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.513919431013087", | |
"createdAt": 1629368099697, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6f625bf8-0987-435d-9618-fa1cd3727fed", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 2, | |
"timestamp": 1629368165300, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 246, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7657419813012215", | |
"createdAt": 1629368152074, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d62ecdba-fbec-4af4-a159-27e39956cb79", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 52, | |
"timestamp": 1629368190845, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 294, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.62192119586342", | |
"createdAt": 1629368154498, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "649f606f-38ba-46fb-8cbd-509cfc5f44ee", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 39, | |
"threadCounter": 0, | |
"timestamp": 1629368100073, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 35, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3539281047030841", | |
"createdAt": 1629368099748, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "582a9701-e112-4949-8e4c-d2bcf1d9680f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 29, | |
"timestamp": 1629368203072, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 6, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39649920638440306", | |
"createdAt": 1629368203038, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d2ab34e4-8bae-462c-ba57-2ec23151f54b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 79, | |
"timestamp": 1629368215722, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 11, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3903797722132395", | |
"createdAt": 1629368215664, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "624bef53-3258-478e-bfdb-407f1dc9410a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 40, | |
"threadCounter": 0, | |
"timestamp": 1629368100181, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 36, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.04897854985137373", | |
"createdAt": 1629368099908, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0d2a1b78-a991-4daf-a0ef-4933253d75ba", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 124, | |
"timestamp": 1629368224388, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 43, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.29488347221980704", | |
"createdAt": 1629368220107, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3963056f-afc3-4b25-838e-78b282d49fda", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 41, | |
"threadCounter": 0, | |
"timestamp": 1629368100284, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 37, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15551569927331355", | |
"createdAt": 1629368099856, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7e549838-183e-44d8-bbfb-889a21e86fa6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 129, | |
"timestamp": 1629368225657, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 320, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7633999166131439", | |
"createdAt": 1629368217531, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "49dce587-f6be-4916-b45d-e99b284bcdf4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 42, | |
"threadCounter": 0, | |
"timestamp": 1629368100372, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 38, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8470681142134521", | |
"createdAt": 1629368099960, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b085f3eb-c457-46ed-b704-d69da253913a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 176, | |
"timestamp": 1629368239444, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 41, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5563249309252877", | |
"createdAt": 1629368221345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "29c1d509-ba5f-42cf-b543-8febd07069e8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 3, | |
"timestamp": 1629368525275, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 249, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.018405029238813375", | |
"createdAt": 1629368236532, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8e2ae2d1-c383-47af-ae50-50b3d053048b", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 43, | |
"threadCounter": 0, | |
"timestamp": 1629368100496, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 39, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2727729830937651", | |
"createdAt": 1629368100011, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c11c8168-4ca4-4e7d-a697-655a08acbb74", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 108, | |
"timestamp": 1629368253771, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 91, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5439351319854173", | |
"createdAt": 1629368222578, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d91d14ae-8e50-4a6b-8b78-7f3d3e1cb323", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 44, | |
"threadCounter": 0, | |
"timestamp": 1629368100605, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 40, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6381466948321928", | |
"createdAt": 1629368099800, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d8acbb01-a82d-4c16-9611-cf5b080c7e76", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 156, | |
"timestamp": 1629368269179, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 113, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23739622836364183", | |
"createdAt": 1629368223708, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0e5c592a-6e19-4c93-87a0-c0d86b51785d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 2, | |
"timestamp": 1629368345053, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 86, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4023511697344202", | |
"createdAt": 1629368228678, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5da1065a-5faa-4bbe-9f1e-a44a193d9367", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 126, | |
"timestamp": 1629368224975, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 44, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30211882611902896", | |
"createdAt": 1629368220004, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "adf0021b-c504-4402-a95f-ed8c14babdca", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 177, | |
"timestamp": 1629368239495, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 66, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08505444711644061", | |
"createdAt": 1629368221297, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fb038c5a-2eef-45a2-96a8-304c1ee6a887", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 48, | |
"threadCounter": 0, | |
"timestamp": 1629368101038, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 44, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5136688398055845", | |
"createdAt": 1629368100062, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5970eb48-c2ca-4190-86d1-1d39112b0df1", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 5, | |
"timestamp": 1629368166967, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 249, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4613237385251243", | |
"createdAt": 1629368151868, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3dea1f57-4357-4667-b79b-10db4943c79a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 41, | |
"timestamp": 1629368367838, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 143, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.003825840818227455", | |
"createdAt": 1629368230854, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fe534550-157a-4f78-a410-6dd0fbd4524f", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 41, | |
"timestamp": 1629375844509, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 325, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7840498993004872", | |
"createdAt": 1629375769047, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "81798918-9e0f-4592-9390-0909aa52e53a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 111, | |
"timestamp": 1629368254796, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 92, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26130297423664894", | |
"createdAt": 1629368222527, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a882da3b-79a3-4c53-a8fe-3cc2b58b07eb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 55, | |
"timestamp": 1629368192848, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 297, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28211203296026277", | |
"createdAt": 1629368155333, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b7fe17ec-5cdc-4407-b5e4-2eed3e0a19d3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 83, | |
"timestamp": 1629368388908, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 547, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7642105145420114", | |
"createdAt": 1629368243093, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a1b9c195-da32-4a0b-b282-bbcb1f6021f7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 30, | |
"timestamp": 1629368203136, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 7, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07308145577594938", | |
"createdAt": 1629368203090, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43bb2de8-055f-432a-b412-0340cb03bfcc", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 157, | |
"timestamp": 1629368269696, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 114, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.04245599150404067", | |
"createdAt": 1629368223759, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8fb3e270-d1c9-4121-b5a7-2e221436bf3f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 80, | |
"timestamp": 1629368215787, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 12, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5299646593336544", | |
"createdAt": 1629368215716, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ad73f6f8-3600-46be-99b8-973f024c2967", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 5, | |
"timestamp": 1629368527073, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 664, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41186296719313265", | |
"createdAt": 1629368249650, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b16bfdc2-05f8-430b-a877-bba3683f9382", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 2, | |
"timestamp": 1629368285424, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 49, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5933665115421629", | |
"createdAt": 1629368224692, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8b2c11b7-ba06-4614-ab4f-586064c8728d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 146, | |
"threadCounter": 1, | |
"timestamp": 1629368297619, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 434, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0342667826219073", | |
"createdAt": 1629368233365, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "737ca4be-8409-4a23-ad84-e4689244ff49", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 208, | |
"threadCounter": 0, | |
"timestamp": 1629368308687, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 81, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5059804289910735", | |
"createdAt": 1629368226396, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "327b21f3-64ab-42dd-9ef4-2eaa80a248e9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 234, | |
"threadCounter": 0, | |
"timestamp": 1629368316702, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 87, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1832589563235958", | |
"createdAt": 1629368226943, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "af0a15b8-26b5-4943-b310-19b0565d7638", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 0, | |
"threadCounter": 1, | |
"timestamp": 1629368325448, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 63, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9222447862821596", | |
"createdAt": 1629368227439, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "78173d4e-3c90-498e-8b6d-9fa9827601f4", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 45, | |
"threadCounter": 0, | |
"timestamp": 1629368100726, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 41, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6146350462630181", | |
"createdAt": 1629368100114, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "175f53ea-689b-457c-a326-d0a6827e05ad", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 127, | |
"timestamp": 1629368225229, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 319, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.971718732402019", | |
"createdAt": 1629368217634, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8bd66c98-2db4-486c-9182-e433d7cc3384", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 46, | |
"threadCounter": 0, | |
"timestamp": 1629368100821, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 42, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.37453259100988223", | |
"createdAt": 1629368100217, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d0ea218c-d553-4da5-b8db-b1fb44ef1c7c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 3, | |
"timestamp": 1629368345157, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 87, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7352819397878742", | |
"createdAt": 1629368228627, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e91ca66-ef43-4748-8f12-e51958c2a56a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 47, | |
"threadCounter": 0, | |
"timestamp": 1629368100942, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 43, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45653635318088837", | |
"createdAt": 1629368100166, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2e43dc8d-75bd-42aa-9c88-ad5bb1036ec4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 49, | |
"threadCounter": 0, | |
"timestamp": 1629368101098, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 45, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.44611182754958323", | |
"createdAt": 1629368100271, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "077dca9a-e334-4444-a6ec-1408712eca0f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 50, | |
"threadCounter": 0, | |
"timestamp": 1629368101183, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 46, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9219067934585922", | |
"createdAt": 1629368100322, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4abc9733-3bfb-4f71-9c7c-7a21a9025b91", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 3, | |
"timestamp": 1629368165867, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 247, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5669066789108655", | |
"createdAt": 1629368152023, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7159699f-e609-464a-ae5d-724110bf3d1d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 51, | |
"threadCounter": 0, | |
"timestamp": 1629368101282, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 47, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.026616189080227004", | |
"createdAt": 1629368100427, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2925dcee-91be-4853-9562-bf39476d86ca", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 179, | |
"timestamp": 1629368239963, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 67, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5961435843821282", | |
"createdAt": 1629368221399, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "067cdbed-bc7c-4791-81b3-7360e077bd32", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 54, | |
"timestamp": 1629368192175, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 296, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7296064823313447", | |
"createdAt": 1629368156330, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d3c47200-58bb-4a48-a82b-1ce3f6f0d8d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 52, | |
"threadCounter": 0, | |
"timestamp": 1629368101414, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 48, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5510996016618905", | |
"createdAt": 1629368100540, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "140e3085-9bba-4fdc-af72-25a107f6edf6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 31, | |
"timestamp": 1629368203188, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 8, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03656695643890884", | |
"createdAt": 1629368203143, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e87fa47-769a-4d9e-80ea-b78e7053b9bc", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 53, | |
"threadCounter": 0, | |
"timestamp": 1629368101511, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 49, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4914303268317106", | |
"createdAt": 1629368100487, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "db0ab738-01d2-484b-b561-f8a658cfab8c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 81, | |
"timestamp": 1629368215831, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 13, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.04951972988892284", | |
"createdAt": 1629368215767, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7dc6f3b5-cfb8-46a6-aa7e-1e9a8f9c95fe", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 54, | |
"threadCounter": 0, | |
"timestamp": 1629368101631, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 50, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09445074739849868", | |
"createdAt": 1629368100376, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c9976566-479d-4bb7-aaaf-040b92282bd3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 107, | |
"timestamp": 1629368253360, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 90, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9934365437172213", | |
"createdAt": 1629368222629, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1b8e70d1-9bd6-46b9-8ce2-af25e201f2d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 55, | |
"threadCounter": 0, | |
"timestamp": 1629368101776, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 51, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4729047956458061", | |
"createdAt": 1629368100647, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "17394e5d-5905-405d-b3c7-cbe148c8b067", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 42, | |
"timestamp": 1629368368228, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 525, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7659887081466027", | |
"createdAt": 1629368241724, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "06dbe346-b347-4298-9f1b-983bedf71cd4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 4, | |
"timestamp": 1629368345571, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 501, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3941212306410683", | |
"createdAt": 1629368240571, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "891a54e0-fa2a-4b3f-8b5f-f531c67ba974", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 4, | |
"timestamp": 1629368166576, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 248, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19601063435271682", | |
"createdAt": 1629368152125, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ad7a58c8-48db-4f2a-9eca-5913820260c6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 53, | |
"timestamp": 1629368191493, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 295, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6962452160870672", | |
"createdAt": 1629368156852, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a96e2ae6-7f3f-4e56-b7d2-77675552643e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 32, | |
"timestamp": 1629368203249, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 9, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7695972910430904", | |
"createdAt": 1629368203195, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8c3096b0-3d2f-4b77-952a-953e6b70d502", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 82, | |
"timestamp": 1629368215901, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 14, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30282449713725", | |
"createdAt": 1629368215819, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b410ecd7-5de7-4da6-8fae-b56dbcfb28ea", | |
"parentCommentId": null | |
}, | |
"eventSize": 394 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 128, | |
"timestamp": 1629368225393, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 45, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.333754206017846", | |
"createdAt": 1629368219953, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "485e5723-3d15-40c6-8faf-5801755de820", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 62, | |
"threadCounter": 0, | |
"timestamp": 1629368102706, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 58, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39488830227350247", | |
"createdAt": 1629368100699, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e7456566-ffb1-44ea-a920-8a9500c896b7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 42, | |
"timestamp": 1629375844825, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 326, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9698353407759506", | |
"createdAt": 1629375769053, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43d6176a-64f3-478c-8aef-db100ee527f1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 45, | |
"timestamp": 1629368369640, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 527, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.49407532350008665", | |
"createdAt": 1629368241982, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b3f8c382-4a27-456b-94b4-a0ffc0ff98ec", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 181, | |
"timestamp": 1629368240403, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 68, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0801917171407025", | |
"createdAt": 1629368221348, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2fa5e0e1-b2c4-42a7-9bdd-b694d7054aed", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 82, | |
"timestamp": 1629368388467, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 159, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15092296697850394", | |
"createdAt": 1629368231731, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "307715f9-12dc-4478-bbd0-663f6f67c5af", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 109, | |
"timestamp": 1629368254045, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 369, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21813494990217963", | |
"createdAt": 1629368229436, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f6dbddf1-022f-4952-9d61-9ab5220e6ee0", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 158, | |
"timestamp": 1629368270022, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 393, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.631220955221382", | |
"createdAt": 1629368231013, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0a3036fd-5cb3-4960-b534-e5a599912b42", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 4, | |
"timestamp": 1629368285812, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 416, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07560749810706624", | |
"createdAt": 1629368232322, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3adb9df8-a73e-4889-86fa-ea922fcdaf80", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 147, | |
"threadCounter": 1, | |
"timestamp": 1629368297999, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 68, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.106584737890145", | |
"createdAt": 1629368225781, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7e176f9a-00e8-412e-9ea3-616518d61d45", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 0, | |
"timestamp": 1629368309015, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 450, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5256817066553422", | |
"createdAt": 1629368234285, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0baf04ec-e1ff-4ab6-8ac0-7fa3f24b5345", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 235, | |
"threadCounter": 0, | |
"timestamp": 1629368317041, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 462, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9714793086911688", | |
"createdAt": 1629368234988, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "883a405f-17ec-43ec-9c27-2176fbb0d260", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 13, | |
"timestamp": 1629368400605, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 558, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.011098027404312538", | |
"createdAt": 1629368243744, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2d87f0ce-671d-46f2-b028-8989ef77b8bc", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 19, | |
"threadCounter": 1, | |
"timestamp": 1629368326298, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 64, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5663646001542536", | |
"createdAt": 1629368227491, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "456e3829-464e-4f19-a504-cfab410a75a6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 0, | |
"timestamp": 1629368101924, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 52, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6148475897104101", | |
"createdAt": 1629368100593, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fd81e980-c532-4c10-8263-5f589707613a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 57, | |
"threadCounter": 0, | |
"timestamp": 1629368102014, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 53, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14706788147463457", | |
"createdAt": 1629368100750, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6ed972ba-6550-47c7-b261-78c4c5843fab", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 114, | |
"timestamp": 1629377185683, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 761, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "RRR", | |
"createdAt": 1629377185035, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84ce4d20-89b9-4603-ace0-21ceb43e8111", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 130, | |
"timestamp": 1629368226237, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 321, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9016260575819106", | |
"createdAt": 1629368217686, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5a6e4e12-76fc-4953-8c1a-95c020c3c2b0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 58, | |
"threadCounter": 0, | |
"timestamp": 1629368102203, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 54, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32703610992766075", | |
"createdAt": 1629368100816, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "308cd8ac-2c32-4b6d-80f1-737717cac186", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 178, | |
"timestamp": 1629368239897, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 346, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2762006782078774", | |
"createdAt": 1629368219163, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6bbdc35c-1b28-49ad-bd5b-d118f687170c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 59, | |
"threadCounter": 0, | |
"timestamp": 1629368102371, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 55, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8876675810832478", | |
"createdAt": 1629368100867, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e4b1ad37-b7df-46c4-b812-62b5b333a55f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 0, | |
"timestamp": 1629368102475, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 56, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8527162804926531", | |
"createdAt": 1629368100927, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "faadadce-2524-464c-8a57-4c2d806d640d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 61, | |
"threadCounter": 0, | |
"timestamp": 1629368102599, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 57, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.46877566924155767", | |
"createdAt": 1629368100979, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4dd98d0-fc6b-4753-9452-7bcb84eb3dfc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 6, | |
"timestamp": 1629368167538, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 250, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.745619255441052", | |
"createdAt": 1629368152176, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9f1f7e84-0455-4c8d-900b-b2fa8b85f28f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 63, | |
"threadCounter": 0, | |
"timestamp": 1629368102814, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 59, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6725118099796578", | |
"createdAt": 1629368101082, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ba237fe2-dc20-4c2b-b47c-44ea944e7e01", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 64, | |
"threadCounter": 0, | |
"timestamp": 1629368102893, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 60, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6264203094988974", | |
"createdAt": 1629368101134, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c1ea504b-185f-49e0-872c-5c2a23b01fc8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 6, | |
"timestamp": 1629368527761, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 251, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7320987776462908", | |
"createdAt": 1629368236481, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8245613f-3283-4c55-8b48-7f1387eabc0b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 110, | |
"timestamp": 1629368254723, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 370, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1463904993855144", | |
"createdAt": 1629368229367, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a5d3c029-7169-4dc4-8fc1-125abeab3307", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 65, | |
"threadCounter": 0, | |
"timestamp": 1629368103062, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 61, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2529841489791482", | |
"createdAt": 1629368101196, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6657885c-f434-417e-b708-d94fad18cfca", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 200, | |
"threadCounter": 1, | |
"timestamp": 1629368347763, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 503, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8678988906507281", | |
"createdAt": 1629368240674, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "af4f09c9-b4d3-4ec8-beb3-4384fa47385b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 57, | |
"timestamp": 1629368193313, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 298, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7020842771025091", | |
"createdAt": 1629368157371, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "79d338ae-5103-43b9-94da-b36503f4c3ac", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 66, | |
"threadCounter": 0, | |
"timestamp": 1629368103226, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 62, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43776979861228205", | |
"createdAt": 1629368101031, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "826a7074-d18f-46c7-8908-85046ffdf2ff", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 33, | |
"timestamp": 1629368203324, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 10, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.026357050592559883", | |
"createdAt": 1629368203248, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "40ee534a-58cb-4829-91c0-366a2024e21e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 67, | |
"threadCounter": 0, | |
"timestamp": 1629368103349, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 63, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03693717643718364", | |
"createdAt": 1629368101351, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "25c2e656-68fb-4f0e-b949-ac1759fce8de", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 4, | |
"timestamp": 1629368526599, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 250, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.653355621564631", | |
"createdAt": 1629368236583, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "846f4d55-09ec-422e-99ca-ed213c27db67", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 6, | |
"timestamp": 1629368346809, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 502, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.773262828389923", | |
"createdAt": 1629368240622, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3c759420-2f2c-431c-b88d-a839e573b53f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 7, | |
"timestamp": 1629368168095, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 251, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17502115866950585", | |
"createdAt": 1629368152228, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ad897c9a-4f45-40d6-9b16-70d7265e4b65", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 56, | |
"timestamp": 1629368193076, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 2, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4340756763398368", | |
"createdAt": 1629368191126, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8fc4ef1d-0396-46d0-a204-e71453c577cb", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 34, | |
"timestamp": 1629368203351, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 11, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2527901630721231", | |
"createdAt": 1629368203300, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "18fc1c2e-64b4-4a69-b863-cab9e6c8b289", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 83, | |
"timestamp": 1629368215953, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 15, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26822968292051474", | |
"createdAt": 1629368215870, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "52d0a1c1-0402-4aaf-8ba9-80ad563bb297", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 133, | |
"timestamp": 1629368227147, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 47, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4753908608386296", | |
"createdAt": 1629368220159, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75724858-9af3-46e8-828b-a346df8ee249", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 180, | |
"timestamp": 1629368240349, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 347, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3646350640272381", | |
"createdAt": 1629368219214, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f008b3b8-54fb-4709-bca2-52c9df4f875f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 112, | |
"timestamp": 1629368255086, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 371, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8268790336140375", | |
"createdAt": 1629368229515, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "63b692bb-0c85-45f2-9577-a4d5878b426f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 159, | |
"timestamp": 1629368270424, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 115, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33489468332560823", | |
"createdAt": 1629368223862, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3a8c81a7-1efa-4123-bccb-9fb087e7048e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 3, | |
"timestamp": 1629368285850, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 50, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.353792760877754", | |
"createdAt": 1629368224898, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f112c496-44a1-4ec1-a114-3f7ea99e9e94", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 43, | |
"timestamp": 1629368369007, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 526, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6442475234054613", | |
"createdAt": 1629368242034, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c925d12a-aef8-4467-b082-326e4b07532f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 149, | |
"threadCounter": 1, | |
"timestamp": 1629368299093, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 436, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7036419494791809", | |
"createdAt": 1629368233416, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e894d736-cd98-4afe-b237-b5871065356e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 84, | |
"timestamp": 1629368389049, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 160, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.016898828683867162", | |
"createdAt": 1629368231783, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a89d9dac-11ae-4ccd-8aa8-e496c5a7d9eb", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 210, | |
"threadCounter": 0, | |
"timestamp": 1629368309764, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 451, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06479124416638804", | |
"createdAt": 1629368234336, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d7e257f5-6b35-4bad-bdc0-653939cd436f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 237, | |
"threadCounter": 0, | |
"timestamp": 1629368317899, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 54, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2329304455495731", | |
"createdAt": 1629368226976, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e249d35c-1505-454f-9076-b719b40d5dc8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 14, | |
"timestamp": 1629368401461, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 559, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8879086865790554", | |
"createdAt": 1629368243693, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "79e1bd47-766c-46fa-9dc0-cf6e74ff9bd5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 43, | |
"timestamp": 1629375845331, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 327, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4938812821737275", | |
"createdAt": 1629375769072, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43beb92b-d3a0-4851-8b14-cd7675312586", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 5, | |
"timestamp": 1629368346350, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 88, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4531837226120624", | |
"createdAt": 1629368228780, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "049de069-38ef-44f4-b9f0-e31b9a1ac47f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 68, | |
"threadCounter": 0, | |
"timestamp": 1629368103470, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 64, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8984386352649852", | |
"createdAt": 1629368101247, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ea1d2570-821e-4355-804e-f3108d69f3c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 8, | |
"timestamp": 1629368168674, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 252, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7901004692069279", | |
"createdAt": 1629368152300, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "243401d4-31dc-4a59-8042-bf36735fc8d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 44, | |
"timestamp": 1629368369111, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 144, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22236082894189857", | |
"createdAt": 1629368230957, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "69eadb6f-d7ce-44e6-abb9-30db4d761f87", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 135, | |
"timestamp": 1629368228158, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 324, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.006090991502483933", | |
"createdAt": 1629368217789, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "28705f39-235b-4361-bdab-85965743f345", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 182, | |
"timestamp": 1629368240774, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 348, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3722733873948415", | |
"createdAt": 1629368219265, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c856cee5-7b6d-4fda-90e6-d7ac6980143d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 113, | |
"timestamp": 1629368255511, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 372, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.27086841467223977", | |
"createdAt": 1629368229566, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "62e6ecc1-e70d-45d1-ac4a-05ffd0f78744", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 4, | |
"timestamp": 1629368194954, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 7, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8452004106222648", | |
"createdAt": 1629368191186, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "95e7e5e4-5e20-4439-961f-f08d903f428a", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 35, | |
"timestamp": 1629368203404, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 12, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8437096868811381", | |
"createdAt": 1629368203353, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2a54d068-08ed-4702-b941-22aeccc9a16b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 84, | |
"timestamp": 1629368216027, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 16, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9630835589825777", | |
"createdAt": 1629368215932, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "05338867-3144-4067-90f1-78ad4e4ba833", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 162, | |
"timestamp": 1629368271239, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 116, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8398368773838588", | |
"createdAt": 1629368223811, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "88000a84-caca-44f3-ab28-1ccbef791287", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 7, | |
"timestamp": 1629368391005, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 549, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5904189147903609", | |
"createdAt": 1629368243144, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f7faccf6-5201-4bce-be69-984d3f21f6c3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 5, | |
"timestamp": 1629368286599, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 51, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40105802391007783", | |
"createdAt": 1629368224795, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "41dcb41f-67d2-4626-b2b3-d79a2a61be4d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 7, | |
"timestamp": 1629368528284, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 665, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8503815426143592", | |
"createdAt": 1629368249546, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "662d7454-23b7-4ff4-94b9-0a5bb3206c9b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 125, | |
"threadCounter": 2, | |
"timestamp": 1629368298772, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 69, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14646820125595117", | |
"createdAt": 1629368225728, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ab8bfb0d-2264-4ac2-ba74-609897025138", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 78, | |
"threadCounter": 3, | |
"timestamp": 1629368571377, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 110, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7782550506800342", | |
"createdAt": 1629368237568, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cfc41799-3850-4eef-9b26-253318baee21", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 211, | |
"threadCounter": 0, | |
"timestamp": 1629368309828, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 82, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3710338826510403", | |
"createdAt": 1629368226448, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "21af567d-abca-4a33-aea9-5579a7e912b0", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 238, | |
"threadCounter": 0, | |
"timestamp": 1629368318248, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 464, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.916482484333987", | |
"createdAt": 1629368235039, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6bb614ad-e11a-4526-8aec-0937f41a814e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 131, | |
"timestamp": 1629368226515, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 46, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6066531505580512", | |
"createdAt": 1629368220262, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b04207a5-08b3-4f5e-941a-e6fe4fa8c050", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 183, | |
"timestamp": 1629368240836, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 69, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6496942034919548", | |
"createdAt": 1629368221450, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bc648a94-a6ab-41ab-acaf-b7cf64c71569", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 69, | |
"threadCounter": 0, | |
"timestamp": 1629368103640, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 65, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9361048962387928", | |
"createdAt": 1629368101299, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6958e76b-2e97-4735-b9a5-b3c8f6e0ef56", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 70, | |
"threadCounter": 0, | |
"timestamp": 1629368103719, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 66, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7839691237481993", | |
"createdAt": 1629368101454, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d1ef5052-6552-4eaf-9811-33bd4b2237ea", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 114, | |
"timestamp": 1629368255583, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 93, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8400474551000002", | |
"createdAt": 1629368222680, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8974b5c3-e4d3-43cb-a039-2ffda36d7244", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 10, | |
"timestamp": 1629368169489, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 254, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1523420207432854", | |
"createdAt": 1629368152354, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "387359e4-f1ee-4241-851a-4efa7dc18658", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 71, | |
"threadCounter": 0, | |
"timestamp": 1629368103890, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 67, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5688336124903578", | |
"createdAt": 1629368101506, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f8d8a98c-2dc7-4bd3-ba60-8dac21089c82", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 58, | |
"timestamp": 1629368193347, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 3, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5491964187763827", | |
"createdAt": 1629368191344, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "641872b5-bdc0-40dd-9c1c-3c9f84394897", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 36, | |
"timestamp": 1629368203475, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 13, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4926504657760481", | |
"createdAt": 1629368203405, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cb099ced-f524-4ec9-95fc-4a80d144799a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 72, | |
"threadCounter": 0, | |
"timestamp": 1629368104064, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 68, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2942089016715935", | |
"createdAt": 1629368101403, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6fcf8571-e813-48d6-90dd-4058b7f06733", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 85, | |
"timestamp": 1629368216074, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 17, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9747444847010376", | |
"createdAt": 1629368215985, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f5ab8207-71e9-4039-b0bd-1981418d92dc", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 73, | |
"threadCounter": 0, | |
"timestamp": 1629368104192, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 69, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8060857283858969", | |
"createdAt": 1629368101668, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "44f51d85-c21f-444b-8518-3714becfde3f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 160, | |
"timestamp": 1629368270817, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 394, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7317568307637528", | |
"createdAt": 1629368231064, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fa276b2e-7596-489e-8280-253da4b35807", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 74, | |
"threadCounter": 0, | |
"timestamp": 1629368104309, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 70, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5697858875596922", | |
"createdAt": 1629368101616, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "66dd16e3-2197-4821-addd-3608eea0c3b8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 8, | |
"timestamp": 1629368528841, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 666, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8966949039023957", | |
"createdAt": 1629368249701, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f58f76bb-728e-4202-b2bd-9232d737c501", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 75, | |
"threadCounter": 0, | |
"timestamp": 1629368104431, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 71, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6866677456014414", | |
"createdAt": 1629368101728, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3a4ef9ad-79de-4fc4-a3ec-8e461121e578", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 76, | |
"threadCounter": 0, | |
"timestamp": 1629368104507, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 72, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5723401850698829", | |
"createdAt": 1629368101557, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9a326be3-1395-4708-999b-649a7cae8672", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 78, | |
"threadCounter": 1, | |
"timestamp": 1629368347343, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 89, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6465615211398089", | |
"createdAt": 1629368228729, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b66f7a02-3eae-42d3-b88d-569eb8f8655d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 77, | |
"threadCounter": 0, | |
"timestamp": 1629368104644, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 73, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7754759191047597", | |
"createdAt": 1629368101830, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "74fa6ffa-9d5c-44dc-9a18-139e486124f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 199, | |
"threadCounter": 1, | |
"timestamp": 1629368347276, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 134, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41194854385067114", | |
"createdAt": 1629368228819, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7616f9c8-7434-4c3b-8b6a-cf43e37755ca", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 78, | |
"threadCounter": 0, | |
"timestamp": 1629368104780, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 74, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7910492370900188", | |
"createdAt": 1629368101882, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5241e16a-7409-483a-97c1-9da5764847b4", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 9, | |
"timestamp": 1629368169089, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 253, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7365098437450812", | |
"createdAt": 1629368152405, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8db35075-b39e-46de-b0bf-3f99088d03de", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 79, | |
"threadCounter": 0, | |
"timestamp": 1629368104911, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 75, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5149521804652988", | |
"createdAt": 1629368101936, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "13709de6-3b03-4b6c-8a8b-a701938610c9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 9, | |
"timestamp": 1629368529033, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 252, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.840654081049121", | |
"createdAt": 1629368236653, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e0e655ff-ba1b-4677-b30d-7a02f02a8303", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 0, | |
"timestamp": 1629368105030, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 76, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9411124662997848", | |
"createdAt": 1629368101779, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7d660341-a183-4c34-a88a-3141dd211f9f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 1, | |
"timestamp": 1629368193799, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 4, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5135167633007351", | |
"createdAt": 1629368191291, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "72e1d875-9652-454f-9b2b-35639f5f6488", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 137, | |
"timestamp": 1629368228705, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 48, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.496644273468004", | |
"createdAt": 1629368220211, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ee4162bd-5c18-49ef-bb4a-048c2ffd9c51", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 0, | |
"timestamp": 1629368105228, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 77, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2196574384339477", | |
"createdAt": 1629368101996, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d17b7dab-19b0-41b6-b230-a76ee7bd7427", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 82, | |
"threadCounter": 0, | |
"timestamp": 1629368105306, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 78, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6193750323394962", | |
"createdAt": 1629368102048, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1c399c86-438a-452d-b124-d2f7fa07bd41", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 83, | |
"threadCounter": 0, | |
"timestamp": 1629368105389, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 79, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1782465081106135", | |
"createdAt": 1629368102099, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "35d5f815-4b0d-4f07-b798-5e5fd39270d9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 84, | |
"threadCounter": 0, | |
"timestamp": 1629368105503, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 80, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9930470482504892", | |
"createdAt": 1629368102151, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3af44401-239c-4ccf-80be-6532e2d81c3d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 37, | |
"timestamp": 1629368203530, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 14, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8891776000806431", | |
"createdAt": 1629368203458, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f0c357fd-d6a9-4d27-aa82-8d9478c1797f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 85, | |
"threadCounter": 0, | |
"timestamp": 1629368105633, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 81, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22937514124511071", | |
"createdAt": 1629368102253, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "568efc45-71a3-4844-b96c-f3ff04ccff41", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 86, | |
"timestamp": 1629368216152, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 18, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5005028632533169", | |
"createdAt": 1629368216038, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "41f2b3f4-15d2-4dce-a1c1-2962369cdb02", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 0, | |
"timestamp": 1629368105773, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 82, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6475436194687803", | |
"createdAt": 1629368102202, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ed54821d-0338-4839-aad8-476ecf527288", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 184, | |
"timestamp": 1629368240929, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 70, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15342702781351292", | |
"createdAt": 1629368221502, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f11d49fb-28d1-4c9d-b6cd-ae1341664fa7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 87, | |
"threadCounter": 0, | |
"timestamp": 1629368105945, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 83, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16223269897343406", | |
"createdAt": 1629368102304, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e242a6fe-f0b3-457a-a8ca-b1080ed893ac", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 46, | |
"timestamp": 1629368369743, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 145, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40702554534812796", | |
"createdAt": 1629368231009, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c5a530a3-2370-4d95-afa9-cd929548b800", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 79, | |
"threadCounter": 1, | |
"timestamp": 1629368348157, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 504, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8160067706024576", | |
"createdAt": 1629368240725, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b374399e-4c0b-4ee2-a86b-473510da3910", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 0, | |
"timestamp": 1629368106139, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 84, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8930364464549847", | |
"createdAt": 1629368102459, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "650059c1-ab26-4712-b400-b441d745331d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 89, | |
"threadCounter": 0, | |
"timestamp": 1629368106293, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 85, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08424888186519464", | |
"createdAt": 1629368102356, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fb9319af-ecf9-423a-9e43-cee55b5e6913", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 10, | |
"timestamp": 1629368529254, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 94, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26048074909885577", | |
"createdAt": 1629368236691, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d3b156e1-2d88-41e7-8cf5-88cf78267583", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 13, | |
"timestamp": 1629368170868, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 256, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.46707447013851544", | |
"createdAt": 1629368152508, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c330021-cef1-465d-a277-6b87a4bde17a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 136, | |
"timestamp": 1629368228424, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 325, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42149086668521074", | |
"createdAt": 1629368217737, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "996ec732-9593-45aa-94e4-05de97ce4ae5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 60, | |
"timestamp": 1629368194044, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 300, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2939807812874681", | |
"createdAt": 1629368159395, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "90234b18-9421-4557-89e2-fe9593201a69", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 38, | |
"timestamp": 1629368203593, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 15, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3406251844281103", | |
"createdAt": 1629368203512, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b6267cc5-9c20-46f6-ac39-42cb894f31cf", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 87, | |
"timestamp": 1629368216194, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 19, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9077612394696659", | |
"createdAt": 1629368216089, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "acb33593-b493-4cb9-b2d8-91625aabd908", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 48, | |
"timestamp": 1629368370423, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 146, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16850680283862696", | |
"createdAt": 1629368231061, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4ec22c32-2a75-4027-9ca4-983609c8692d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 186, | |
"timestamp": 1629368241609, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 71, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.052669908275951416", | |
"createdAt": 1629368221554, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d1df9db9-97d6-466f-8d36-0baa67c8f1f4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 85, | |
"timestamp": 1629368389880, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 548, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0848154498205782", | |
"createdAt": 1629368243267, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "34cb2664-94f9-418d-93e0-f961834e3619", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 85, | |
"threadCounter": 1, | |
"timestamp": 1629368401991, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 170, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5526423254886932", | |
"createdAt": 1629368232312, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f408f480-d97b-4c55-8cdd-6219f5170cb9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 3, | |
"timestamp": 1629368406220, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 174, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05041269518907421", | |
"createdAt": 1629368232524, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "02c65248-e506-49de-90f0-7d52a6c4ed86", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 119, | |
"timestamp": 1629368257996, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 96, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.014383314139042147", | |
"createdAt": 1629368222782, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e6f478da-215d-423f-824f-5c3c67a94272", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 161, | |
"timestamp": 1629368271143, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 395, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4405226173098077", | |
"createdAt": 1629368230909, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1009a246-cdaa-4a89-8c1d-44dd5541422e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 89, | |
"threadCounter": 2, | |
"timestamp": 1629368571569, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 267, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5490479480342731", | |
"createdAt": 1629368237520, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5fc46c1c-bf22-4b8e-8012-35ca8b5f1b54", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 4, | |
"timestamp": 1629368286954, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 417, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32100590504800863", | |
"createdAt": 1629368232399, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "90ff09c1-bcc0-4e7f-b5f2-32faefa1bb91", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 133, | |
"threadCounter": 2, | |
"timestamp": 1629368299220, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 70, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2924923666919913", | |
"createdAt": 1629368225832, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "af6bbbaf-0995-4eaf-8d06-00ed0cf45d26", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 132, | |
"timestamp": 1629368227119, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 322, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9321354947974619", | |
"createdAt": 1629368217887, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c0fe9688-cebe-44f7-8ae2-8354c39484f6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 185, | |
"timestamp": 1629368241287, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 349, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7253049569305471", | |
"createdAt": 1629368219317, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "57adcee3-44c7-4289-8cfc-064d884738b0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 90, | |
"threadCounter": 0, | |
"timestamp": 1629368106434, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 86, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7589474379653027", | |
"createdAt": 1629368102510, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "781fc4fe-bfaa-4732-bfd2-ea2dc61970c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 201, | |
"threadCounter": 1, | |
"timestamp": 1629368348226, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 90, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7374863951746123", | |
"createdAt": 1629368228831, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e2eb4c66-fd1c-453f-bd35-a65976765efe", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 91, | |
"threadCounter": 0, | |
"timestamp": 1629368106600, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 87, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3682483546847939", | |
"createdAt": 1629368102561, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "39650bd3-1569-4c07-9750-8775f125c34e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 116, | |
"timestamp": 1629368256479, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 373, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39936341962263844", | |
"createdAt": 1629368229617, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "99675206-c416-4c27-a881-05b1557ca9f9", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 0, | |
"timestamp": 1629368106760, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 88, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47164425382984954", | |
"createdAt": 1629368102407, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fcb08253-8700-4efd-8875-b70cc471680b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 15, | |
"timestamp": 1629368171643, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 258, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33359487547462197", | |
"createdAt": 1629368152456, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5f75af15-5aaf-4eea-a893-a47e6774d494", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 0, | |
"timestamp": 1629368106941, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 89, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6907170167469054", | |
"createdAt": 1629368102664, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "05f859f9-22a2-442d-91a0-d7f7e3aeee1a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 59, | |
"timestamp": 1629368193788, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 299, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8606548013888644", | |
"createdAt": 1629368161534, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "775f2077-87ea-40f1-a60e-ad7931075175", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 39, | |
"timestamp": 1629368203641, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 16, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07477233636740077", | |
"createdAt": 1629368203570, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "09f6e699-757f-4755-91a9-c0c40e642ae8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 163, | |
"timestamp": 1629368271411, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 117, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6467947463818038", | |
"createdAt": 1629368223914, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2d47f7ce-d3b9-44ee-95c3-2512680ff44a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 94, | |
"threadCounter": 0, | |
"timestamp": 1629368107222, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 90, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15332019155769683", | |
"createdAt": 1629368102612, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e3b3cd3-7169-4f45-ab1e-b1f769dab7f0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 89, | |
"timestamp": 1629368216290, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 21, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9567619065155056", | |
"createdAt": 1629368216141, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7147bd33-5030-461e-9026-1e945842d641", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 47, | |
"timestamp": 1629368370315, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 528, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3000356680986056", | |
"createdAt": 1629368242085, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "65a77bdb-4b4d-42ba-8c40-853d43547215", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 11, | |
"timestamp": 1629368529780, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 667, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5471913050572997", | |
"createdAt": 1629368249877, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2f0d5932-70b8-4c5b-94de-fd003b73199b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 95, | |
"threadCounter": 0, | |
"timestamp": 1629368107495, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 91, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.24611821449945814", | |
"createdAt": 1629368102896, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e818b4bd-87a2-428c-a7ac-4f1937dff992", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 207, | |
"threadCounter": 2, | |
"timestamp": 1629368572058, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 698, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7706804162269715", | |
"createdAt": 1629368251629, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1bd6c60c-21e0-4287-abb3-11faf1e757b1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 6, | |
"timestamp": 1629368288638, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 419, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4381520655570085", | |
"createdAt": 1629368232461, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6d1b20f1-d295-4881-9e43-6d6f3c45d4d7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 11, | |
"timestamp": 1629368169927, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 1, | |
"type": "StoryCreated", | |
"payload": { | |
"link": "", | |
"text": "WWW", | |
"title": "WWW", | |
"userId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"userName": "QQQ" | |
}, | |
"eventSize": 227 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 134, | |
"timestamp": 1629368227395, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 323, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6966603164220774", | |
"createdAt": 1629368217939, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a46f047b-5f79-40b4-a072-670f939459e1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 97, | |
"threadCounter": 0, | |
"timestamp": 1629368107996, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 93, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8402295086068984", | |
"createdAt": 1629368102778, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84548234-ca50-4502-a743-23874d9a5088", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 12, | |
"timestamp": 1629368529976, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 253, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8659972670419701", | |
"createdAt": 1629368236710, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4a47bd23-04d9-47f3-983d-6403952cd6c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 61, | |
"timestamp": 1629368194361, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 5, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5331294315380293", | |
"createdAt": 1629368191239, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c482333b-c08c-4617-ae8c-3fa6eadeefbc", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 40, | |
"timestamp": 1629368203702, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 17, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.04581806632630292", | |
"createdAt": 1629368203625, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c2cab3b5-daa7-4a85-83a6-e4dc5c381e6f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 88, | |
"timestamp": 1629368216257, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 20, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.72918716311957", | |
"createdAt": 1629368216193, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0374182f-b770-4ce1-8cf9-b27e7918b56c", | |
"parentCommentId": null | |
}, | |
"eventSize": 394 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 187, | |
"timestamp": 1629368241940, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 350, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2776954208374912", | |
"createdAt": 1629368219368, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "11c80efe-521e-467f-85a9-92da4244c097", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 115, | |
"timestamp": 1629368256118, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 94, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5864246672140593", | |
"createdAt": 1629368222731, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b00c891e-8bef-41f2-9131-9c3697c09787", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 2, | |
"timestamp": 1629368349172, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 91, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6802079407496668", | |
"createdAt": 1629368228934, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7b27b42e-a05a-434d-85ee-150fd5da614c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 165, | |
"timestamp": 1629368272289, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 118, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08355251020079846", | |
"createdAt": 1629368223965, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "561c90a2-ea11-42dc-993b-fff7d0567f06", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 6, | |
"timestamp": 1629368287320, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 52, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.68750984883883", | |
"createdAt": 1629368224949, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7dd60618-91b6-4372-bfc5-e811ddd1d6de", | |
"parentCommentId": null | |
}, | |
"eventSize": 394 | |
}, | |
{ | |
"threadId": 72, | |
"threadCounter": 2, | |
"timestamp": 1629368299550, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 437, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9963933153945524", | |
"createdAt": 1629368233468, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43781c49-8bc8-48e6-b2b6-112be95030c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 44, | |
"timestamp": 1629375845929, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 328, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5464226704300067", | |
"createdAt": 1629375769065, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8c84a345-e20c-4966-8616-79529070c663", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 214, | |
"threadCounter": 0, | |
"timestamp": 1629368311034, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 453, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8900433288592884", | |
"createdAt": 1629368234394, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75962df0-5366-45e8-a6cb-bc11e55ed7bd", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 98, | |
"timestamp": 1629375885031, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 382, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5519811180089519", | |
"createdAt": 1629375769448, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ebb3f13a-c08b-4155-817a-99dbc4ee69f6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 240, | |
"threadCounter": 0, | |
"timestamp": 1629368319169, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 55, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4674840834694214", | |
"createdAt": 1629368227026, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eadbeb8d-55f9-4a0b-aef7-c021e4cb77df", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 50, | |
"timestamp": 1629376206035, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 697, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9484750022388299", | |
"createdAt": 1629375771612, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b025f922-e9b3-4ab7-9f4b-4e21b5efe8c3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 22, | |
"threadCounter": 1, | |
"timestamp": 1629368326747, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 476, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6756382724994092", | |
"createdAt": 1629368235691, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ffcafdda-3a4a-472b-a845-2dd646fd2fd0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 96, | |
"threadCounter": 0, | |
"timestamp": 1629368107773, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 92, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9383735088174274", | |
"createdAt": 1629368102844, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "66b7341a-c1a9-4a74-9a4f-afa784c5d478", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 12, | |
"timestamp": 1629368170118, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 255, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.021555260459827252", | |
"createdAt": 1629368152610, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dbc98c26-5aa0-4b58-940b-60c75a62e5e1", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 2, | |
"timestamp": 1629368194315, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 301, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0067001959380107445", | |
"createdAt": 1629368164183, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d5acc269-c078-42b1-a9d0-8b05b8a8358e", | |
"parentCommentId": null | |
}, | |
"eventSize": 400 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 41, | |
"timestamp": 1629368203778, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 18, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7935675778057165", | |
"createdAt": 1629368203681, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b02964c5-44ac-4894-8acc-21987805f574", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 90, | |
"timestamp": 1629368216386, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 22, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7467490788727922", | |
"createdAt": 1629368216244, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b03a3335-2991-44e9-a1cf-1c48dbe80047", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 138, | |
"timestamp": 1629368228972, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 326, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05452931323757004", | |
"createdAt": 1629368217991, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4da99044-7440-46d7-a0c0-e741fba54012", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 188, | |
"timestamp": 1629368241998, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 72, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11368872821975962", | |
"createdAt": 1629368221605, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e122a360-a014-4e01-9bf7-bcc89f28ff5e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 4, | |
"timestamp": 1629368349689, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 92, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19803535740799594", | |
"createdAt": 1629368228882, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9e400e58-3d8a-4c73-b4be-a30401964593", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 118, | |
"timestamp": 1629368257602, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 374, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8993978233482129", | |
"createdAt": 1629368229720, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "33095aa5-e1ab-4530-a91b-0f92696fa9f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 164, | |
"timestamp": 1629368271797, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 396, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.25673333601381176", | |
"createdAt": 1629368231115, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2b1562ef-5964-420b-9812-53236e3a977b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 14, | |
"timestamp": 1629368530778, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 95, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9261342918703547", | |
"createdAt": 1629368236742, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b07a6db3-213b-43d9-b322-2b6ee48370ee", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 7, | |
"timestamp": 1629368288150, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 53, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08355635964684882", | |
"createdAt": 1629368224846, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "91322608-e871-4743-a919-243ef1b7d2d3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 50, | |
"timestamp": 1629368371804, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 147, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7424264658432788", | |
"createdAt": 1629368231112, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "60f28e14-8ec7-41d0-8d4f-049c4d52d679", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 186, | |
"threadCounter": 0, | |
"timestamp": 1629368300782, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 438, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.779056563923692", | |
"createdAt": 1629368233519, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1129f91f-b441-44aa-82f1-73b6e3c3972c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 212, | |
"threadCounter": 0, | |
"timestamp": 1629368310594, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 452, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22302769080031726", | |
"createdAt": 1629368234475, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "24cb575f-137c-47ea-8bf3-4bdcd7a31144", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 86, | |
"timestamp": 1629368390390, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 161, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.617962076065937", | |
"createdAt": 1629368231834, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4e5bf0e2-e591-4508-a75e-aba54675d305", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 241, | |
"threadCounter": 0, | |
"timestamp": 1629368319615, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 56, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23086692566446798", | |
"createdAt": 1629368227129, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "556ab212-701d-4f68-84c9-94ce924b92e6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 8, | |
"threadCounter": 1, | |
"timestamp": 1629368326233, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 475, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11944293857272015", | |
"createdAt": 1629368235639, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d2375be4-b008-4089-a458-25db2f439056", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 139, | |
"timestamp": 1629368229026, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 40, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1855266039149126", | |
"createdAt": 1629368220345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6836d381-5561-4cb2-976a-78288871375a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 14, | |
"timestamp": 1629368171240, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 257, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.770728297401697", | |
"createdAt": 1629368152559, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "571aa9f0-365b-445e-8887-30e8ecb96a1a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 1, | |
"timestamp": 1629368348738, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 505, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11863592008770873", | |
"createdAt": 1629368240779, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ecadf191-cee3-4bac-96fc-ab487084924e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 98, | |
"threadCounter": 0, | |
"timestamp": 1629368108213, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 94, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18846591400147072", | |
"createdAt": 1629368102727, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ef60c62-38ed-4327-a14b-9acf9f8eab39", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 3, | |
"timestamp": 1629368194441, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 6, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8943729793025426", | |
"createdAt": 1629368191396, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "957712aa-4bbf-4e3d-9a25-32571a3a4f89", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 42, | |
"timestamp": 1629368203828, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 19, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23731534214197947", | |
"createdAt": 1629368203733, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1affa620-c316-403c-81b1-be424862174c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 99, | |
"threadCounter": 0, | |
"timestamp": 1629368108443, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 95, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7839226867021818", | |
"createdAt": 1629368102948, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ece20f06-0b38-4519-9595-eaa20879faae", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 189, | |
"timestamp": 1629368242596, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 351, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.814587966680044", | |
"createdAt": 1629368219420, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6ddbbe1b-9b53-4a73-b0e3-3254e066c01e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 100, | |
"threadCounter": 0, | |
"timestamp": 1629368108597, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 96, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.384583007257157", | |
"createdAt": 1629368103109, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d30c4333-6a93-4398-a698-8c70d056adf2", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 91, | |
"timestamp": 1629368216449, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 23, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7753920653717512", | |
"createdAt": 1629368216296, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "379191d1-845f-4c69-95e1-98332175101b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 117, | |
"timestamp": 1629368256848, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 95, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.026793718254293775", | |
"createdAt": 1629368222834, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fdf169ce-919d-48f2-bd73-ae7c9bde62ad", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 101, | |
"threadCounter": 0, | |
"timestamp": 1629368108852, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 97, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09156938674603854", | |
"createdAt": 1629368103058, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f51e5008-2456-46c8-983d-e5ff6f2e4191", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 13, | |
"timestamp": 1629368530709, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 668, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7721049756729602", | |
"createdAt": 1629368249980, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6cba4d39-f14e-4bd9-a82f-82dc301057a8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 51, | |
"timestamp": 1629368372578, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 530, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7814121888905128", | |
"createdAt": 1629368242136, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1c3b6d92-6005-40e2-80f4-3cb8d2f95be3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 90, | |
"threadCounter": 2, | |
"timestamp": 1629368573826, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 268, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9723225849566517", | |
"createdAt": 1629368237571, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9a3a5b9a-509b-4ab9-bd7b-370d446644cd", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 102, | |
"threadCounter": 0, | |
"timestamp": 1629368109144, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 98, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5223751736843474", | |
"createdAt": 1629368103212, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "87d2a52f-d332-49f4-b42a-85aa47507309", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 169, | |
"timestamp": 1629368274419, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 120, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9127701213379911", | |
"createdAt": 1629368224017, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "764aa46f-5f03-4017-b68f-efd8adc8b938", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 5, | |
"timestamp": 1629368287683, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 418, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5332346012982279", | |
"createdAt": 1629368232513, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c55abc98-5a66-4cea-81e3-8b81a8ccfade", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 103, | |
"threadCounter": 0, | |
"timestamp": 1629368109374, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 99, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4346714634364548", | |
"createdAt": 1629368103270, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "50f89f66-e84c-4967-b955-52c10de5f2b1", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 140, | |
"timestamp": 1629368229065, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 49, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3294329379100872", | |
"createdAt": 1629368220370, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a7c6076f-7695-4f3d-a4a6-04812a198c70", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 16, | |
"timestamp": 1629368172302, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 259, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.688850352199051", | |
"createdAt": 1629368152661, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4f19628e-006d-41ed-b73e-6ffad8157323", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 105, | |
"threadCounter": 0, | |
"timestamp": 1629368109784, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 101, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1179468410771013", | |
"createdAt": 1629368103006, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4399aeaf-79d2-4835-8642-43de748b67d3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 51, | |
"timestamp": 1629376207244, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 698, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3773977035731415", | |
"createdAt": 1629375771617, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "36112cf0-260b-4307-9149-a8b491d9fbdc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 191, | |
"timestamp": 1629368243198, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 352, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5780651779920761", | |
"createdAt": 1629368219472, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "484a072a-e79c-46a5-bc17-c1e16f50c1dc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 3, | |
"timestamp": 1629368349612, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 506, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12742220782382274", | |
"createdAt": 1629368240831, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d82357a6-41bd-4b20-b43a-f4254d03aeca", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 49, | |
"timestamp": 1629368371670, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 529, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.25278078197396636", | |
"createdAt": 1629368242239, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d1530b73-6d06-4246-bdcc-b92f88100065", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 65, | |
"timestamp": 1629368195701, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 10, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8787367396305784", | |
"createdAt": 1629368191448, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "477f8683-e962-4b9c-8f2f-6819f1bdd981", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 43, | |
"timestamp": 1629368203878, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 20, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6511045617976178", | |
"createdAt": 1629368203800, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "abd00152-a6e8-4542-a605-e85a584f939a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 120, | |
"timestamp": 1629368258301, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 375, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3505271710221901", | |
"createdAt": 1629368229669, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5868ba93-7f50-453b-a1ea-2958217ec131", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 1, | |
"timestamp": 1629368391124, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 162, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8805222769383183", | |
"createdAt": 1629368231886, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "414d3a35-1432-4a0f-bc9b-19a2fafcb27c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 93, | |
"timestamp": 1629368216601, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 25, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7625907301637772", | |
"createdAt": 1629368216351, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2740ae89-5789-4708-8b91-27d80c249265", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 166, | |
"timestamp": 1629368272740, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 397, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5657962753135041", | |
"createdAt": 1629368231167, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6241f11e-37dc-4f6e-aa2a-194940e4f9c1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 8, | |
"timestamp": 1629368288695, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 54, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.624246339769799", | |
"createdAt": 1629368225001, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "12e4580b-fe1c-4c85-972a-5bb220612053", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 17, | |
"timestamp": 1629368532240, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 669, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40186455315283165", | |
"createdAt": 1629368249928, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3c09d129-ef99-4973-bc99-46b98de6b00e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 185, | |
"threadCounter": 0, | |
"timestamp": 1629368300453, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 71, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6016325139905536", | |
"createdAt": 1629368225883, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "70a17ad0-e605-4518-b966-c1018c08e638", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 215, | |
"threadCounter": 0, | |
"timestamp": 1629368311100, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 84, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7495690450999747", | |
"createdAt": 1629368226551, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "521000e2-b0d9-4dad-bad5-da359e49deb6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 1, | |
"timestamp": 1629368403067, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 171, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5599849909436136", | |
"createdAt": 1629368232369, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a1f5521-9467-45c5-8526-d7307614008d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 4, | |
"timestamp": 1629368406626, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 564, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9580535136772478", | |
"createdAt": 1629368244051, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a3343613-ce6d-44e5-a875-2ce403cacce0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 104, | |
"threadCounter": 0, | |
"timestamp": 1629368109537, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 100, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9947888957477522", | |
"createdAt": 1629368103161, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dd6bf12c-2fa9-47b1-b094-fce961abfd4b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 141, | |
"timestamp": 1629368229313, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 327, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6076095058490311", | |
"createdAt": 1629368218044, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43747cf0-1b17-457a-8b8b-3aeb75d424fb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 106, | |
"threadCounter": 0, | |
"timestamp": 1629368109886, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 102, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.478414219004773", | |
"createdAt": 1629368103321, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "943ab184-722f-43cf-a470-ba6edf3f7f94", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 190, | |
"timestamp": 1629368242915, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 73, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39927539179641536", | |
"createdAt": 1629368221657, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c59bda89-4d11-45ce-989a-5982b129c8eb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 121, | |
"timestamp": 1629368258389, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 97, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19307929951480607", | |
"createdAt": 1629368222886, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5bec619e-0dbd-456a-8a75-7581e2298020", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 107, | |
"threadCounter": 0, | |
"timestamp": 1629368110133, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 103, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47011321765033165", | |
"createdAt": 1629368103372, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "777b3f62-b459-4206-a305-c6c4576b2ab6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 15, | |
"timestamp": 1629368531477, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 254, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7495664026889157", | |
"createdAt": 1629368236761, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f765c111-c1fb-4b62-98de-a4eaf1e72a7e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 108, | |
"threadCounter": 0, | |
"timestamp": 1629368110312, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 104, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5835531088807312", | |
"createdAt": 1629368103484, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "153a6c5a-1c6e-4da5-90fb-8caca0cffe3e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 109, | |
"threadCounter": 0, | |
"timestamp": 1629368110414, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 105, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.588535489759615", | |
"createdAt": 1629368103433, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1b9ce71d-1f54-484f-bfde-4305c7de8e1e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 110, | |
"threadCounter": 0, | |
"timestamp": 1629368110535, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 106, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5142383590942035", | |
"createdAt": 1629368103535, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "488a32a9-15a7-49f2-8b1e-aede4faf242c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 168, | |
"timestamp": 1629368273963, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 398, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45382291689915377", | |
"createdAt": 1629368231288, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "875b3b39-c32b-47e1-8306-f800c9013841", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 111, | |
"threadCounter": 0, | |
"timestamp": 1629368110767, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 107, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9183659996230045", | |
"createdAt": 1629368103639, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "68b36992-bc64-4ae7-9fce-c93e5bfa052a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 20, | |
"timestamp": 1629368174609, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 263, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7753264488102382", | |
"createdAt": 1629368152713, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ca746f36-a4df-4b5e-8c62-6c44fc0729be", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 62, | |
"timestamp": 1629368194695, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 302, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5486597595137841", | |
"createdAt": 1629368173085, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "70cc832d-0938-4656-96d7-98d40affe156", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 112, | |
"threadCounter": 0, | |
"timestamp": 1629368111044, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 108, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30108192364642883", | |
"createdAt": 1629368103743, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75e6b790-e4d1-4440-b625-4c6372ee4c98", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 44, | |
"timestamp": 1629368203949, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 21, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.37310263071971483", | |
"createdAt": 1629368203853, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "007c9b3e-ca20-4a6c-a674-7a483c47e823", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 92, | |
"timestamp": 1629368216532, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 24, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5356459449383046", | |
"createdAt": 1629368216403, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a01602aa-3046-4a02-b4dc-7028cb4bcfa3", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 7, | |
"timestamp": 1629368289018, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 420, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7704441929383805", | |
"createdAt": 1629368232618, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a315c33b-c10d-43e2-982d-6aa1756d00b3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 113, | |
"threadCounter": 0, | |
"timestamp": 1629368111394, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 109, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47180045834234263", | |
"createdAt": 1629368103587, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "26b623a5-c3f0-4f2b-8bd3-40ca06eeceb2", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 16, | |
"timestamp": 1629368531560, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 96, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2926476831623991", | |
"createdAt": 1629368236794, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "06bb0330-883b-498f-9828-89ce0b3704d3", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 142, | |
"timestamp": 1629368229479, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 50, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3384798805344168", | |
"createdAt": 1629368220421, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a088887c-54d5-4ae4-b6f4-3f38023b0c1f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 192, | |
"timestamp": 1629368243284, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 74, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6296588316035987", | |
"createdAt": 1629368221709, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d1ca6899-9cdc-4337-995a-b2dfee676dda", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 115, | |
"threadCounter": 0, | |
"timestamp": 1629368111847, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 111, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.564242589560321", | |
"createdAt": 1629368103845, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "85bfca31-d0a1-4a14-9fed-6f82a906f9a0", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 19, | |
"timestamp": 1629368174217, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 262, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13113455907176474", | |
"createdAt": 1629368152764, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "424c8242-8c53-4625-bd82-49c91faf386f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 116, | |
"threadCounter": 0, | |
"timestamp": 1629368112053, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 112, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.594371825852221", | |
"createdAt": 1629368103692, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ef798cac-9f22-4b80-a968-2e3eba0e5caf", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 122, | |
"timestamp": 1629368258542, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 44, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7091247429605365", | |
"createdAt": 1629368222932, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "81151145-6182-4f92-8974-fcd94632d87d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 200, | |
"threadCounter": 3, | |
"timestamp": 1629368574339, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 700, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4016200091382781", | |
"createdAt": 1629368251732, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ed66d35b-d20e-4885-8bc4-6ec835f02143", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 5, | |
"timestamp": 1629368195268, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 8, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7831433602501443", | |
"createdAt": 1629368191501, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ccd62238-6169-405d-8daf-310564b37082", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 6, | |
"timestamp": 1629368350068, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 94, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.01725369125177878", | |
"createdAt": 1629368229038, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "16681070-c06c-4d37-874b-0e79ca68d0f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 45, | |
"timestamp": 1629368203992, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 22, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1794679778730519", | |
"createdAt": 1629368203905, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dcd6fe7f-1ed3-40ca-9d19-ba399ec62a4f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 170, | |
"timestamp": 1629368274729, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 399, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6190012715984626", | |
"createdAt": 1629368231217, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "554d7734-0d45-4c96-b3a5-3ea41ca9a369", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 9, | |
"timestamp": 1629368289097, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 55, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6940907847548077", | |
"createdAt": 1629368225055, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5a7754fa-ebd9-4dd5-86da-c8f79b960c3b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 45, | |
"timestamp": 1629375846737, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 329, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9112584725994671", | |
"createdAt": 1629375769059, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e6f631ca-7d35-4496-8649-b7730657fc83", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 96, | |
"timestamp": 1629368216845, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 28, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.008317804051589994", | |
"createdAt": 1629368216457, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "52abd6a2-c383-4276-9f7f-f186ec11a186", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 54, | |
"timestamp": 1629368374125, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 149, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.176482370845487", | |
"createdAt": 1629368231164, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8130b90c-9e8d-4fbe-a707-273dbbba48a6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 189, | |
"threadCounter": 0, | |
"timestamp": 1629368302052, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 440, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8397995546433499", | |
"createdAt": 1629368233571, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0728679f-408e-4a48-a4b2-48e40af0faeb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 216, | |
"threadCounter": 0, | |
"timestamp": 1629368311261, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 85, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08131384244509232", | |
"createdAt": 1629368226602, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9280b86a-7858-413d-b961-2d877405b1cf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 82, | |
"threadCounter": 1, | |
"timestamp": 1629368391933, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 550, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.00965614803871595", | |
"createdAt": 1629368243195, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0d032524-1d73-476f-8d1f-43cf48deb942", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 114, | |
"threadCounter": 0, | |
"timestamp": 1629368111658, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 110, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45364283279252626", | |
"createdAt": 1629368103794, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "93c180dc-18d9-4c40-85b0-9e83bfb3fcd3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 143, | |
"timestamp": 1629368229717, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 328, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5877018464829885", | |
"createdAt": 1629368218147, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c118a461-fab9-43a1-a567-230ded076b5c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 117, | |
"threadCounter": 0, | |
"timestamp": 1629368112237, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 113, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1802497076631261", | |
"createdAt": 1629368103964, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0d981afb-4b9d-4def-9af7-361926456056", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 18, | |
"timestamp": 1629368173643, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 261, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5024023084376134", | |
"createdAt": 1629368152816, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f6ba28ed-e688-4566-93cd-bc1b5b2e8c1a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 118, | |
"threadCounter": 0, | |
"timestamp": 1629368112419, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 114, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42967377953122965", | |
"createdAt": 1629368103897, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d047e475-8d79-4b34-9b69-e10af67060be", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 5, | |
"timestamp": 1629368349879, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 93, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.529719671479314", | |
"createdAt": 1629368228986, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "37730324-d3e7-4deb-a1fe-8f5e09cae61c", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 119, | |
"threadCounter": 0, | |
"timestamp": 1629368112622, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 115, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.31664827929344863", | |
"createdAt": 1629368104118, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "acdb137c-aa21-4554-aeb4-a9ebd47debf9", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 63, | |
"timestamp": 1629368195204, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 303, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3732416224367383", | |
"createdAt": 1629368164412, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ba0445f9-077b-417a-85b3-f3700102c915", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 46, | |
"timestamp": 1629368204082, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 23, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20496464412687843", | |
"createdAt": 1629368203956, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d9350248-25cc-424c-a78d-ab9808cecb54", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 120, | |
"threadCounter": 0, | |
"timestamp": 1629368112901, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 116, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47986963470334343", | |
"createdAt": 1629368104067, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "82c3097c-a922-413a-9eef-c1ad21295eb7", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 94, | |
"timestamp": 1629368216686, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 26, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.44889958105122607", | |
"createdAt": 1629368216510, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "67292341-4d58-46b8-bd2e-8794505ffc17", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 121, | |
"threadCounter": 0, | |
"timestamp": 1629368113113, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 117, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5544817155082545", | |
"createdAt": 1629368104016, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4325dc28-ab9a-45ec-b6aa-a308c0099e4d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 52, | |
"timestamp": 1629368373192, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 148, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1569687561208586", | |
"createdAt": 1629368231216, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "af3665a3-2d31-48d6-8fa3-eb1a07f4f387", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 77, | |
"timestamp": 1629368244653, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 354, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9250177594358346", | |
"createdAt": 1629368219525, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "633c8387-aff3-4af2-abd1-1cecc45417e5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 122, | |
"threadCounter": 0, | |
"timestamp": 1629368113395, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 118, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.04882155875929095", | |
"createdAt": 1629368104275, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "268cfe78-1d47-42ac-8c91-c975bf3d5d87", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 123, | |
"threadCounter": 0, | |
"timestamp": 1629368113503, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 119, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5913717607757926", | |
"createdAt": 1629368104172, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2a5c7dfe-3248-4cdf-8522-0f606de515ee", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 123, | |
"timestamp": 1629368258823, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 376, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3606923135391007", | |
"createdAt": 1629368229843, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "45e5ab99-fd4a-4f17-bf1e-c59900985490", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 0, | |
"timestamp": 1629368113730, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 120, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6541784547300427", | |
"createdAt": 1629368104327, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "436f539b-dda2-432e-8704-52e036f3902b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 167, | |
"timestamp": 1629368273556, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 119, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.984468137971303", | |
"createdAt": 1629368224067, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f93aafc3-7495-40bf-938e-124160f6032b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 125, | |
"threadCounter": 0, | |
"timestamp": 1629368113935, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 121, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1276874628932927", | |
"createdAt": 1629368104224, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "055117bf-a624-4ca4-9ae1-9d69f7860588", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 17, | |
"timestamp": 1629368173058, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 260, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9711674841902982", | |
"createdAt": 1629368152867, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "290454cb-29d2-4f76-b894-50f4667fad15", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 7, | |
"timestamp": 1629368350464, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 507, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3763017103398828", | |
"createdAt": 1629368240920, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c5a22f5-4320-4355-b265-414078b65aae", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 0, | |
"timestamp": 1629368114224, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 122, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.48370379825706655", | |
"createdAt": 1629368104430, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b244487b-5d83-4fae-8f5b-888bda5e5b66", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 144, | |
"timestamp": 1629368230315, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 329, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5846668954138684", | |
"createdAt": 1629368218095, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "64d4a496-72cf-4bf6-8a54-0881c41e5208", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 6, | |
"timestamp": 1629368195569, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 9, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.882039087579533", | |
"createdAt": 1629368191552, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43481b77-2161-4a07-8571-94f0eac230e7", | |
"parentCommentId": null | |
}, | |
"eventSize": 394 | |
}, | |
{ | |
"threadId": 127, | |
"threadCounter": 0, | |
"timestamp": 1629368114520, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 123, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10669055543211658", | |
"createdAt": 1629368104537, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eb6dbd39-201e-49c2-8807-7b2df42d89b0", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 128, | |
"threadCounter": 0, | |
"timestamp": 1629368114624, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 124, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.263206293895191", | |
"createdAt": 1629368104378, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a603a14a-816f-4a33-8785-b4c8a09585da", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 53, | |
"timestamp": 1629368373607, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 531, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07503603054741304", | |
"createdAt": 1629368242290, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cd5f3aec-c844-42d7-b2c7-477ef6c205b6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 47, | |
"timestamp": 1629368204144, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 24, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5364439971694644", | |
"createdAt": 1629368204008, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a367556c-0af0-4e6b-8f4b-6d43386c059d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 0, | |
"timestamp": 1629368114930, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 125, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43337517084163435", | |
"createdAt": 1629368104625, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "529107b3-9ca3-48f6-ab80-1afa25bf7d30", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 83, | |
"threadCounter": 1, | |
"timestamp": 1629368392086, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 163, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05984208685603232", | |
"createdAt": 1629368231950, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ac5ab1ab-99a0-4eca-a2fe-7d774ce3564f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 130, | |
"threadCounter": 0, | |
"timestamp": 1629368115134, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 126, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6441812317274013", | |
"createdAt": 1629368104676, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "88b0e00c-ef3d-4ef7-be82-587ff36429f4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 95, | |
"timestamp": 1629368216772, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 27, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47978341664368984", | |
"createdAt": 1629368216561, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "943e34fb-bc26-456d-ae72-ad7c154f4576", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 131, | |
"threadCounter": 0, | |
"timestamp": 1629368115344, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 127, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3453198166624484", | |
"createdAt": 1629368104727, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75c6dc92-4350-4879-ba34-518d7cebede3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 76, | |
"timestamp": 1629368244388, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 76, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5881770970248681", | |
"createdAt": 1629368221812, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1f29b411-58ba-49f8-bad6-6e1c134f7fa8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 124, | |
"timestamp": 1629368258898, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 98, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1642858312694433", | |
"createdAt": 1629368222938, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dbb119f1-1b91-4bf2-8f6e-ceed0eee9b02", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 132, | |
"threadCounter": 0, | |
"timestamp": 1629368115638, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 128, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.46191855488449296", | |
"createdAt": 1629368104485, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "08596c38-9761-4ae1-b326-e7ed6b17e15e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 193, | |
"timestamp": 1629368274946, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 121, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5169151907289642", | |
"createdAt": 1629368224169, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "98b1400a-eda6-4d72-a56d-c900388a1123", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 8, | |
"timestamp": 1629368350537, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 95, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14886202160494444", | |
"createdAt": 1629368229089, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "585da0bf-8222-4ebb-b3cc-4a82cdb63385", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 0, | |
"timestamp": 1629368116140, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 130, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40357440698282", | |
"createdAt": 1629368104779, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f1841f25-9396-48ee-b274-97fa8836cfbf", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 145, | |
"timestamp": 1629368230912, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 51, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2927827325170579", | |
"createdAt": 1629368220473, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9318de96-f30a-439b-87e8-66e05d52ad5e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 23, | |
"timestamp": 1629368175794, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 266, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.49452392715508553", | |
"createdAt": 1629368152918, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "529cb1fb-8be5-4f32-b912-638ac055d230", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 74, | |
"timestamp": 1629368243708, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 75, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9837829746962443", | |
"createdAt": 1629368221760, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7bbc6d9b-8c5a-4594-ab1d-fec5fb764e7c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 52, | |
"timestamp": 1629376207872, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 699, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8774732006350288", | |
"createdAt": 1629375771629, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a16cc10-40e0-4584-99d7-6dff4f5220bc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 126, | |
"timestamp": 1629368259374, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 99, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5311037995875401", | |
"createdAt": 1629368222989, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "14905a5a-34aa-4fc5-afca-111099d90558", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 9, | |
"timestamp": 1629368196311, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 13, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5458323587343701", | |
"createdAt": 1629368191604, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e6615cee-e798-481b-9830-e05dea5ecfb5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 48, | |
"timestamp": 1629368204220, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 25, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1395122779326956", | |
"createdAt": 1629368204059, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a2239bac-7e38-4175-a7b1-f5999738e3f0", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 171, | |
"timestamp": 1629368275247, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 400, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8140625242600034", | |
"createdAt": 1629368231339, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7486cf54-d6d8-48ef-bd05-6f2dbdb90728", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 98, | |
"timestamp": 1629368216979, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 30, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43205980408494105", | |
"createdAt": 1629368216613, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "26f40b72-2704-41eb-839e-3921164c95f7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 8, | |
"timestamp": 1629368289451, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 421, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.29242872294460776", | |
"createdAt": 1629368232566, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f0035ad1-8a65-4856-9fdf-044b90c948d0", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 73, | |
"threadCounter": 2, | |
"timestamp": 1629368300370, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 132, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9319096885449389", | |
"createdAt": 1629368225894, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bf06d6e6-e592-4ccc-b7af-d35e8a10d201", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 217, | |
"threadCounter": 0, | |
"timestamp": 1629368311589, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 454, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9311164944819684", | |
"createdAt": 1629368234526, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "372c4758-0e65-42a7-bfcf-94cdbcb80dbc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 239, | |
"threadCounter": 0, | |
"timestamp": 1629368319128, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 465, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6810946872955815", | |
"createdAt": 1629368235143, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f013258a-ab42-4628-ae2d-5aff8ea9793f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 30, | |
"threadCounter": 1, | |
"timestamp": 1629368326815, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 65, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16593693003583998", | |
"createdAt": 1629368227542, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fee47645-92aa-40ca-88cf-fb6e482d9e77", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 185, | |
"threadCounter": 1, | |
"timestamp": 1629368331988, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 70, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5654469733197768", | |
"createdAt": 1629368227852, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1473ef20-1010-45c9-b79a-f7400050f159", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 55, | |
"timestamp": 1629368374566, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 532, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4235019969714525", | |
"createdAt": 1629368242187, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4766d5c5-52c7-48a4-b342-abf1070340e4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 47, | |
"threadCounter": 1, | |
"timestamp": 1629368334069, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 485, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11468036792443514", | |
"createdAt": 1629368236187, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ffb65272-6fd2-4e20-a2af-0892dc7f000b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 133, | |
"threadCounter": 0, | |
"timestamp": 1629368115938, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 129, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.35881335676478276", | |
"createdAt": 1629368104831, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6ecf870b-4466-4d39-9ac6-eabdb1e56bb1", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 21, | |
"timestamp": 1629368174987, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 264, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18384966869170816", | |
"createdAt": 1629368152969, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f87c746a-9b5d-4a43-b74d-1af0d9398dfb", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 64, | |
"timestamp": 1629368195549, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 304, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7919442563154255", | |
"createdAt": 1629368189499, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "29b5aca2-f162-4b50-804e-051a9b18dfd8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 135, | |
"threadCounter": 0, | |
"timestamp": 1629368116361, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 131, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05225769143144632", | |
"createdAt": 1629368104882, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "564b2d27-cc5b-4912-8bcb-c7d3059d5bc0", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 49, | |
"timestamp": 1629368204286, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 26, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7036541459310233", | |
"createdAt": 1629368204147, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "992a93ef-283c-419c-957d-6dbc4dde11d7", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 97, | |
"timestamp": 1629368216902, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 29, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6844297436543768", | |
"createdAt": 1629368216735, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f8955d32-f293-426d-854c-ea8bc3b0e567", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 136, | |
"threadCounter": 0, | |
"timestamp": 1629368116657, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 132, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2247042750022653", | |
"createdAt": 1629368104933, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f4252fcf-910e-47bb-aae2-451065f34c2c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 117, | |
"timestamp": 1629383070301, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 132, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.38707118442082933", | |
"createdAt": 1629383070099, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b4c74082-1da4-4460-98e8-4e7e7a6459cf", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 137, | |
"threadCounter": 0, | |
"timestamp": 1629368116868, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 133, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3033733484514425", | |
"createdAt": 1629368105055, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c51dfc61-0c07-45cb-a1c7-e53439f5c1b5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 146, | |
"timestamp": 1629368231171, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 330, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3344090550345855", | |
"createdAt": 1629368218198, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1c68a4d0-ad5f-4940-8c4b-b64d24d734f9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 75, | |
"timestamp": 1629368244031, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 353, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.577586732553381", | |
"createdAt": 1629368219576, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a60516d1-e92a-4e43-932b-713c9e6cf4da", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 125, | |
"timestamp": 1629368259273, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 377, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5187026170579255", | |
"createdAt": 1629368229791, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "51ad3454-df61-4a46-a8e4-15e193f9a701", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 138, | |
"threadCounter": 0, | |
"timestamp": 1629368117278, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 134, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6902326093254956", | |
"createdAt": 1629368105189, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a8ca2dc6-6a56-49ea-8565-d6c1d50bb8ba", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 10, | |
"timestamp": 1629368352783, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 509, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9008746423682921", | |
"createdAt": 1629368240972, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8cb892cd-40c4-49cf-87d3-bd8e0d48a08c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 139, | |
"threadCounter": 0, | |
"timestamp": 1629368117486, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 135, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4811024875675236", | |
"createdAt": 1629368104985, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6e8a38c2-7934-406e-8e8e-d96bdf0a6dad", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 194, | |
"timestamp": 1629368275795, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 122, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32569485494626627", | |
"createdAt": 1629368224118, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ab257e3c-3ce6-4279-ab85-252ab34f3f2c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 56, | |
"timestamp": 1629368374828, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 150, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5519449807218049", | |
"createdAt": 1629368231268, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ed5f14c1-e70d-486f-9fb7-4dbd1a294349", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 10, | |
"timestamp": 1629368290149, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 422, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.046667863593528924", | |
"createdAt": 1629368232669, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "730ba8ee-3be5-418a-b129-0599066f6581", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 140, | |
"threadCounter": 0, | |
"timestamp": 1629368117890, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 136, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6112447566107619", | |
"createdAt": 1629368105343, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0bdeb8bb-e4b6-468a-aa02-6a02c3c93340", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 18, | |
"timestamp": 1629368533763, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 670, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.549923425784109", | |
"createdAt": 1629368250082, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "97c65f25-9798-44c0-a80d-124e30857535", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 22, | |
"timestamp": 1629368175391, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 265, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3156593550219178", | |
"createdAt": 1629368153020, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2d0715e2-bb19-40ef-b4ae-c92991fb1941", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 142, | |
"threadCounter": 0, | |
"timestamp": 1629368118414, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 138, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.014230562385460832", | |
"createdAt": 1629368105240, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7ac88525-a747-4b20-b6db-6e4f2ba05ee2", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 147, | |
"timestamp": 1629368231488, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 331, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5287156359381209", | |
"createdAt": 1629368218249, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3cee87a8-e23d-412a-b785-58f08b4473b7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 78, | |
"timestamp": 1629368244785, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 77, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3364788481754247", | |
"createdAt": 1629368221863, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "12643383-ab8e-44e9-abf9-e0551a2405bb", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 67, | |
"timestamp": 1629368196261, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 12, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7164749684830778", | |
"createdAt": 1629368191656, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6cf052b1-eaa4-46e4-ac71-8e27e0f190ba", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 50, | |
"timestamp": 1629368204349, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 27, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9961508053765394", | |
"createdAt": 1629368204198, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "074bef3b-c186-4a6d-bf4d-a4ab57574b42", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 127, | |
"timestamp": 1629368259785, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 378, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9855824566818887", | |
"createdAt": 1629368229895, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "886a908f-bb01-4f71-b918-1c6add8696fb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 199, | |
"threadCounter": 3, | |
"timestamp": 1629368575369, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 701, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.02548103671858004", | |
"createdAt": 1629368251784, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b488bab7-4195-42e9-b7e2-4450fbdedd69", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 99, | |
"timestamp": 1629368217080, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 31, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7836878365384464", | |
"createdAt": 1629368216683, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8ed5b43d-3b66-4d59-a8c7-ec002a67c9ac", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 172, | |
"timestamp": 1629368276105, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 401, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1572132349341846", | |
"createdAt": 1629368231390, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "06c0e1af-559c-4d51-8958-c6d0aa6a4806", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 15, | |
"timestamp": 1629368354495, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 512, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5972241177409969", | |
"createdAt": 1629368241075, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2f83fd87-f983-49a6-a1e4-a9a5f91d2ac3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 9, | |
"timestamp": 1629368290189, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 56, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3579862837338682", | |
"createdAt": 1629368225107, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d1e134fc-2d97-4b51-aca0-7aec59383c22", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 187, | |
"threadCounter": 0, | |
"timestamp": 1629368301313, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 72, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9482564858695262", | |
"createdAt": 1629368225934, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "69b7ef10-af08-4718-b5b5-d31266c1d233", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 218, | |
"threadCounter": 0, | |
"timestamp": 1629368311624, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 47, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12499006453163419", | |
"createdAt": 1629368226615, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a7c40ee1-2f8c-4297-8180-ce3739663aac", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 242, | |
"threadCounter": 0, | |
"timestamp": 1629368319993, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 466, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.060514603967775416", | |
"createdAt": 1629368235091, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "01464605-36e3-4c60-be34-b4c0ab75fac9", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 220, | |
"threadCounter": 2, | |
"timestamp": 1629368604374, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 123, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9807379355735085", | |
"createdAt": 1629368238240, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e7947783-16e7-4bde-a243-5e4346bbb8b6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 1, | |
"timestamp": 1629368327617, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 477, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5602640751969235", | |
"createdAt": 1629368235742, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "257cf95a-3fea-4a0b-8a45-9e0f41b6ae8b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 58, | |
"timestamp": 1629368376318, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 151, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8768298847593095", | |
"createdAt": 1629368231319, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ebd51f07-1351-4df5-aeaf-af32daa6ca66", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 46, | |
"timestamp": 1629375847486, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 330, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.36610081582413845", | |
"createdAt": 1629375769078, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0fcf5089-ff83-45f9-ba29-84183c572c03", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 24, | |
"timestamp": 1629368176259, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 267, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.34284726590691805", | |
"createdAt": 1629368153071, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "62d69e27-0759-4a80-9eb1-8a7a78ca827a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 143, | |
"threadCounter": 0, | |
"timestamp": 1629368118643, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 139, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07975107828802863", | |
"createdAt": 1629368105124, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dc13e33f-106b-4bf6-bea2-50520ae6c5f8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 7, | |
"timestamp": 1629368195965, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 305, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41461086634988054", | |
"createdAt": 1629368192083, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "32b470de-3093-4581-a887-67b37fce066a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 51, | |
"timestamp": 1629368204391, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 28, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08834296897788607", | |
"createdAt": 1629368204253, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "276d1ebf-4cf4-4937-a8f3-5b75f643dd04", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 148, | |
"timestamp": 1629368231555, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 52, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9207289362870864", | |
"createdAt": 1629368220528, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e8775316-1db0-493a-8741-6cf87a4366f1", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 79, | |
"timestamp": 1629368245057, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 355, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7761368494675079", | |
"createdAt": 1629368219628, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d8cd1487-0b99-409d-b9b2-79c65e07f713", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 128, | |
"timestamp": 1629368259860, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 100, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05923755539591047", | |
"createdAt": 1629368223040, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4fa03b4e-d693-46e2-a874-df5e3bd8547d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 103, | |
"timestamp": 1629368217543, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 34, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9480342705614285", | |
"createdAt": 1629368216786, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "28e892d5-0d94-43b7-b826-d20a9c9b5754", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 206, | |
"threadCounter": 2, | |
"timestamp": 1629368536205, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 671, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6535490436531013", | |
"createdAt": 1629368250031, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "454ec76d-84e1-4910-a8ef-f0f637c31ad7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 16, | |
"timestamp": 1629368354611, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 97, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8165712590148709", | |
"createdAt": 1629368229191, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4e26eb90-430d-49e7-821c-ed0252a99c84", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 196, | |
"timestamp": 1629368277151, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 124, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6064489724725748", | |
"createdAt": 1629368224220, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b5a9eb51-d9d8-4b80-9a18-5e30499eabbb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 11, | |
"timestamp": 1629368290312, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 57, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15520267213566297", | |
"createdAt": 1629368225159, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "89f36462-adac-4ece-8ddb-9d02ab348d56", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 188, | |
"threadCounter": 0, | |
"timestamp": 1629368301680, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 439, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1878607263320351", | |
"createdAt": 1629368233623, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "592efa27-b0a5-4196-a2b9-5ef2a8cf64dc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 57, | |
"timestamp": 1629368375350, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 533, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8997912389602394", | |
"createdAt": 1629368242372, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c2c506ce-785d-4ced-afa9-6c2331d073a7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 219, | |
"threadCounter": 0, | |
"timestamp": 1629368312303, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 455, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5764725527430326", | |
"createdAt": 1629368234577, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "544e2e91-9894-4c6f-a0ae-8ca56d51b9ed", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 84, | |
"threadCounter": 1, | |
"timestamp": 1629368392480, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 551, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9765474937586737", | |
"createdAt": 1629368243423, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b464e34f-0924-4295-b67a-014a0ad5c457", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 243, | |
"threadCounter": 0, | |
"timestamp": 1629368320764, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 467, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0749309716902038", | |
"createdAt": 1629368235195, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "943ac1f1-37f8-4b0d-85ed-13e0ebaa0819", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 20, | |
"timestamp": 1629368327752, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 66, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4312132262855276", | |
"createdAt": 1629368227645, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0e9fcaa4-36a5-40a1-8d98-6a6a78f27396", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 0, | |
"timestamp": 1629368118202, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 137, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2043378595310653", | |
"createdAt": 1629368105292, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0ba510d5-d278-4920-a98a-b333633a48db", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 149, | |
"timestamp": 1629368231809, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 332, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2534466413029741", | |
"createdAt": 1629368218402, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ebbcfc5a-150b-4581-b2fa-cb4cdb06a908", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 9, | |
"timestamp": 1629368351695, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 508, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6756854223876536", | |
"createdAt": 1629368241024, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "40d3c1e1-8a45-40a7-a03a-0ddad1671cd2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 144, | |
"threadCounter": 0, | |
"timestamp": 1629368118953, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 140, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.48737833894010996", | |
"createdAt": 1629368105394, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a5bf397f-65ca-40d7-a5bc-8d6db45e10cd", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 80, | |
"timestamp": 1629368245754, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 78, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6752321458024915", | |
"createdAt": 1629368221914, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5dde1b57-fceb-42d2-9ad7-df562a245efb", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 145, | |
"threadCounter": 0, | |
"timestamp": 1629368119171, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 141, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5331521116384019", | |
"createdAt": 1629368105463, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "26baa093-448c-4986-9462-0fa375b5d34f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 86, | |
"threadCounter": 19, | |
"timestamp": 1629368534334, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 97, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8397233144438659", | |
"createdAt": 1629368236898, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2fe23900-bf39-4b6c-b793-023ee9c28a6c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 28, | |
"timestamp": 1629368179401, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 271, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9565418479948855", | |
"createdAt": 1629368153142, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b17809d6-cd1b-476c-bc18-a8c7711b5ba6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 146, | |
"threadCounter": 0, | |
"timestamp": 1629368119491, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 142, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11670715445037605", | |
"createdAt": 1629368105569, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3ed4856b-1634-4e0b-93b0-149ca754af0c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 66, | |
"timestamp": 1629368195978, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 11, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.380910728190489", | |
"createdAt": 1629368191707, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "41b5bdbe-dbad-4cf6-8de1-8cdd715035c3", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 147, | |
"threadCounter": 0, | |
"timestamp": 1629368119719, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 143, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8949791126625752", | |
"createdAt": 1629368105623, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c42c165-e12f-4b4f-b781-c9eb89f428ae", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 52, | |
"timestamp": 1629368204462, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 29, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.44277110727270697", | |
"createdAt": 1629368204304, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "127b96fc-6fc8-4091-93b1-e49fe9a16c7a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 148, | |
"threadCounter": 0, | |
"timestamp": 1629368119939, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 144, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7792235088398929", | |
"createdAt": 1629368105515, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ad1cdeab-0132-4a09-8c55-042bc6c894f9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 129, | |
"timestamp": 1629368260483, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 379, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05684010712908394", | |
"createdAt": 1629368229946, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c8152a1-2b21-4d70-be6c-4da4e2f5aae0", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 149, | |
"threadCounter": 0, | |
"timestamp": 1629368120171, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 145, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6031361734989096", | |
"createdAt": 1629368105727, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a050447c-528e-44bb-b3d8-a9ac325d501b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 101, | |
"timestamp": 1629368217219, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 33, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3990220794994047", | |
"createdAt": 1629368216838, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2f810605-6edf-4362-9d7d-db8405e7c5da", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 195, | |
"timestamp": 1629368276332, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 123, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9595207715438681", | |
"createdAt": 1629368224272, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7bd196c2-4083-42eb-bd09-a7c8d9c7b326", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 150, | |
"threadCounter": 0, | |
"timestamp": 1629368120490, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 146, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45310984817670197", | |
"createdAt": 1629368105803, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c943bc64-2332-4715-b8d2-a1faa9d30ae1", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 59, | |
"timestamp": 1629368376708, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 534, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6680880874239583", | |
"createdAt": 1629368242426, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c6c2e746-8e29-43f0-8c7f-421215ad2955", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 204, | |
"threadCounter": 2, | |
"timestamp": 1629368534525, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 255, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.359382924449581", | |
"createdAt": 1629368236915, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e1c2d52d-dfdf-442d-886f-14fff94a0aa0", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 25, | |
"timestamp": 1629368177281, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 268, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22616508559341442", | |
"createdAt": 1629368153245, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ace39aa6-8a6a-4df1-8597-3bc6b0ddf898", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 153, | |
"threadCounter": 0, | |
"timestamp": 1629368121283, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 149, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6998883038775671", | |
"createdAt": 1629368105675, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f225076b-aabe-4261-9813-3204011f4b4d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 8, | |
"timestamp": 1629368196240, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 306, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42346108493870793", | |
"createdAt": 1629368193841, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4d4847a0-3015-479d-9f98-e4079d740192", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 53, | |
"timestamp": 1629368204539, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 30, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3114988850397088", | |
"createdAt": 1629368204356, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "55b76d05-57b7-40f4-bfeb-ab1509a9d1ca", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 100, | |
"timestamp": 1629368217147, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 32, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12533759442728232", | |
"createdAt": 1629368216892, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1679e0d1-f65d-4ede-9d05-ebb874368564", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 150, | |
"timestamp": 1629368231926, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 53, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14813779158774865", | |
"createdAt": 1629368220631, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "edecd5a5-1245-4f65-8e94-af96b93fb5da", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 12, | |
"timestamp": 1629368353220, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 510, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8232316678853755", | |
"createdAt": 1629368241178, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "09dff04c-c03c-44d9-a3fd-2de1244e15e4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 81, | |
"timestamp": 1629368246024, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 356, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8545205168729809", | |
"createdAt": 1629368219679, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b04999b5-a2e4-43ac-b91e-d6d931fdcf84", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 130, | |
"timestamp": 1629368260590, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 101, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1081313282741373", | |
"createdAt": 1629368223091, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fd86f343-c0d1-4ca9-ad26-e0fbeb0d344a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 173, | |
"timestamp": 1629368276729, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 402, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8715246205634102", | |
"createdAt": 1629368231443, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8ffcae4e-45dc-440d-a075-5bf3de6d48ec", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 10, | |
"timestamp": 1629368290687, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 423, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41493080298409213", | |
"createdAt": 1629368232720, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5fcec8bf-7338-40d3-a6da-ac74521112c6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 190, | |
"threadCounter": 0, | |
"timestamp": 1629368302196, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 73, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9204165513268671", | |
"createdAt": 1629368225985, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ee11cc95-aa9a-4a7d-ba91-edd65cf4dc1c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 210, | |
"threadCounter": 2, | |
"timestamp": 1629368575557, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 269, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9910475258632127", | |
"createdAt": 1629368237622, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "555c93be-91a1-458c-9b19-e612191141c9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 222, | |
"threadCounter": 0, | |
"timestamp": 1629368313138, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 456, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.862573885514287", | |
"createdAt": 1629368234629, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "20ad41ec-cc9b-4a3a-b8c9-7ddf4e5077a4", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 3, | |
"timestamp": 1629368604569, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 280, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6360901061348336", | |
"createdAt": 1629368238196, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "efbd50c5-e34f-4f82-828c-ac70dafa9524", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 244, | |
"threadCounter": 0, | |
"timestamp": 1629368320833, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 57, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6941700556202645", | |
"createdAt": 1629368227078, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ba15e236-c3fd-463a-8cce-01c2c1fdc520", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 63, | |
"timestamp": 1629368378597, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 536, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18609783660797619", | |
"createdAt": 1629368242477, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9fe82fae-305b-49ce-ad6b-aebefba206e8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 52, | |
"threadCounter": 3, | |
"timestamp": 1629368629940, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 744, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.27751019567721547", | |
"createdAt": 1629368254245, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "52b4f324-86da-4735-bcf5-dec577d14c29", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 151, | |
"threadCounter": 0, | |
"timestamp": 1629368120817, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 147, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.900232143011498", | |
"createdAt": 1629368105855, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4cd421fa-a083-45ee-b428-79859c2bb378", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 151, | |
"timestamp": 1629368232233, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 333, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14082247875822906", | |
"createdAt": 1629368218453, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f4e7846c-56ed-4c83-89c4-e91beb3a25ce", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 152, | |
"threadCounter": 0, | |
"timestamp": 1629368121151, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 148, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09193062630755755", | |
"createdAt": 1629368105906, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "30648056-3046-4dec-8c91-d97710efefac", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 47, | |
"timestamp": 1629375847757, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 331, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28254770804180496", | |
"createdAt": 1629375769090, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b3e5688e-caf1-4b06-bb61-e6dc4cce4e02", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 154, | |
"threadCounter": 0, | |
"timestamp": 1629368121536, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 150, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8731422983878108", | |
"createdAt": 1629368105958, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4be4ccc-44fd-4d10-b47b-9ff5ada85ea1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 13, | |
"timestamp": 1629368354041, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 511, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.777404472614842", | |
"createdAt": 1629368241126, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "72ac2ab9-eaff-4509-8a6e-5a2313d0e5d6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 83, | |
"timestamp": 1629368246669, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 357, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11207260202375269", | |
"createdAt": 1629368219729, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e5da0934-9dcc-4525-9cec-d617a1385019", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 131, | |
"timestamp": 1629368260877, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 380, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45636847749497533", | |
"createdAt": 1629368230119, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1ac302d7-c34e-44d4-ac67-f7818ebd817a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 155, | |
"threadCounter": 0, | |
"timestamp": 1629368121980, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 151, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.31882752548306836", | |
"createdAt": 1629368106062, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "77ff0d66-fa0d-4edc-bdf7-0c80f8a75757", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 60, | |
"timestamp": 1629368377238, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 101, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4277544267041511", | |
"createdAt": 1629368231345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c44ccca7-d023-4486-9784-c474cb0882b8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 30, | |
"timestamp": 1629368180309, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 273, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.31305046277714654", | |
"createdAt": 1629368153193, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "540d419d-48e0-427f-99da-b0e73206422f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 156, | |
"threadCounter": 0, | |
"timestamp": 1629368122323, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 152, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4168922294153343", | |
"createdAt": 1629368106165, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fc4307db-92a9-4615-9c41-2bae047465e7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 174, | |
"timestamp": 1629368277477, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 403, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12708179602850833", | |
"createdAt": 1629368231494, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ea4db276-739d-4aae-8d54-4feb8bd6657a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 157, | |
"threadCounter": 0, | |
"timestamp": 1629368122558, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 153, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7314103582738809", | |
"createdAt": 1629368106114, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8e3fb4d2-fac1-4855-90a9-fe3a5b09200c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 68, | |
"timestamp": 1629368196372, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 14, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8205398514482339", | |
"createdAt": 1629368191758, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e245756d-31cc-48b2-bd58-cddfffd0e084", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 53, | |
"timestamp": 1629376209063, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 700, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0749348010451123", | |
"createdAt": 1629375771641, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5c4555f6-2940-45c9-8bc4-1331d77dd25f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 158, | |
"threadCounter": 0, | |
"timestamp": 1629368122910, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 154, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.29088181068515495", | |
"createdAt": 1629368106236, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e3408a26-d21d-4b1c-8677-4db61e0d4617", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 54, | |
"timestamp": 1629368204622, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 31, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10715623283067977", | |
"createdAt": 1629368204407, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ffc5e264-c983-47a0-b7fe-5989832300b4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 11, | |
"timestamp": 1629368291457, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 424, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8406528461435325", | |
"createdAt": 1629368232793, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9290cfab-3e46-492c-ada2-2e83ded00a1b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 159, | |
"threadCounter": 0, | |
"timestamp": 1629368123269, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 155, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7830454201868344", | |
"createdAt": 1629368106010, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "63aaf071-a1c2-43c6-aa6b-34092dc3c049", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 26, | |
"timestamp": 1629368177908, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 269, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.29983537502109203", | |
"createdAt": 1629368153296, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bbcf1103-33a4-4845-b0bd-04c7099e738d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 160, | |
"threadCounter": 0, | |
"timestamp": 1629368123504, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 156, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16904500774518816", | |
"createdAt": 1629368106443, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "96d43d29-5e21-4b49-bb82-d114b5cabb73", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 11, | |
"timestamp": 1629368352856, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 96, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6128430103303603", | |
"createdAt": 1629368229140, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "76911f11-5371-4fe7-b1f5-70cafd6db57d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 11, | |
"timestamp": 1629368196493, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 17, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5656258666496473", | |
"createdAt": 1629368191862, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "99adb12e-204a-42ab-9229-4f75594ab59d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 162, | |
"threadCounter": 0, | |
"timestamp": 1629368124331, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 158, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1949518383300004", | |
"createdAt": 1629368106339, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c1acbb80-2d1f-41c9-bb41-c8d0c4bb8da0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 153, | |
"timestamp": 1629368232676, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 54, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33038368588423905", | |
"createdAt": 1629368220682, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dc5d2ce4-5a05-4540-a043-db739ce3be3a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 55, | |
"timestamp": 1629368204698, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 32, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8137008561610631", | |
"createdAt": 1629368204458, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e5bf6545-5b9d-41a5-8d29-005919a96d0c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 102, | |
"timestamp": 1629368217502, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 307, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4097294407567579", | |
"createdAt": 1629368216949, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "73e26b07-d384-4ab7-b07e-2dcd7f87b728", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 82, | |
"timestamp": 1629368246395, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 79, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6408460204401245", | |
"createdAt": 1629368222016, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0025653a-f54b-470d-8be2-f8cf1bfdff48", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 61, | |
"timestamp": 1629368377361, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 152, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4386037906739422", | |
"createdAt": 1629368231371, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "da32d84a-2831-464f-a05e-151217ff7d4c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 132, | |
"timestamp": 1629368261448, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 102, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0727751960570936", | |
"createdAt": 1629368223194, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "efa934d7-e299-4ec1-bab5-d8e420ce3b0a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 198, | |
"timestamp": 1629368278385, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 126, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9110703305694219", | |
"createdAt": 1629368224324, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "31615ce9-06c4-4177-ae68-b2b5e9e83343", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 12, | |
"timestamp": 1629368291054, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 58, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.04061556737880612", | |
"createdAt": 1629368225262, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c4738452-4039-4778-b60a-defe1e4d6659", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 2, | |
"timestamp": 1629368394156, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 552, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40538363138580746", | |
"createdAt": 1629368243321, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "894cfa11-10c1-4d9e-866f-3e27ef568c3c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 192, | |
"threadCounter": 0, | |
"timestamp": 1629368303098, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 74, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5330368366387319", | |
"createdAt": 1629368226037, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2170da29-e4e9-4197-8211-2b34d2638773", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 220, | |
"threadCounter": 0, | |
"timestamp": 1629368312766, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 86, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3133314215633316", | |
"createdAt": 1629368226654, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fa69b9e3-68f3-45d6-b120-c615a48d9321", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 245, | |
"threadCounter": 0, | |
"timestamp": 1629368321230, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 468, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.009062158082709937", | |
"createdAt": 1629368235246, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c14e6a09-5bfa-47d8-872b-cd32b596b45a", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 27, | |
"timestamp": 1629368178536, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 270, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3144676105017109", | |
"createdAt": 1629368153348, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3cdc440d-39e6-4e26-93e0-5f59aae225ff", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 161, | |
"threadCounter": 0, | |
"timestamp": 1629368123869, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 157, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.36649209761116464", | |
"createdAt": 1629368106392, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "55f718eb-7fee-405f-be94-2a66d4f0a326", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 10, | |
"timestamp": 1629368196410, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 15, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16884262279549933", | |
"createdAt": 1629368191810, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "576fc739-73aa-4699-9f2b-c76c9a4697b3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 56, | |
"timestamp": 1629368204743, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 33, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5911975793271796", | |
"createdAt": 1629368204510, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9bc868dc-48b5-4287-93ee-117013eb441d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 152, | |
"timestamp": 1629368232636, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 334, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.389783227580177", | |
"createdAt": 1629368218505, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "58e09f10-ded8-46fb-a2e4-e24cda7251ed", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 105, | |
"timestamp": 1629368218089, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 308, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8764676915210275", | |
"createdAt": 1629368217017, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "803f1a17-8b63-4e99-a6a1-26f4ff61a298", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 163, | |
"threadCounter": 0, | |
"timestamp": 1629368124694, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 159, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4141391510263849", | |
"createdAt": 1629368106494, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5da23bac-cb34-4b41-b3e5-88d845807464", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 14, | |
"timestamp": 1629368354111, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 90, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.617712660476072", | |
"createdAt": 1629368229223, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8aee0c0d-5c18-4c3a-a9a8-8bff1d1fe6ba", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 164, | |
"threadCounter": 0, | |
"timestamp": 1629368124959, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 160, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26519028063326655", | |
"createdAt": 1629368106627, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "707d2ce6-b696-4b04-8b47-72eeaf0201ce", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 84, | |
"timestamp": 1629368246861, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 80, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4691105641897403", | |
"createdAt": 1629368221965, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fd3b5ebf-84a4-45a7-8dc6-3f9e258f0d62", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 62, | |
"timestamp": 1629368377773, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 535, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6837048617293652", | |
"createdAt": 1629368242579, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5e532cd2-0f61-43ee-90a7-dab3dc0141f2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 165, | |
"threadCounter": 0, | |
"timestamp": 1629368125327, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 161, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3675498319979461", | |
"createdAt": 1629368106287, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d3230366-b469-4b23-bd35-cafbacae3344", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 118, | |
"timestamp": 1629383070528, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 133, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11005576421043017", | |
"createdAt": 1629383070118, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "314eca27-92d8-4ff8-a503-5f2fcfed0961", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 134, | |
"timestamp": 1629368262265, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 103, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42842713998048076", | |
"createdAt": 1629368223142, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e106ea7c-d577-43cb-a245-e63d64c3739f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 48, | |
"timestamp": 1629375848768, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 332, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4451081327866072", | |
"createdAt": 1629375769084, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d268d61f-6231-4481-a2f8-5d2d52ab0d2d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 166, | |
"threadCounter": 0, | |
"timestamp": 1629368125815, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 162, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4926958301635488", | |
"createdAt": 1629368106678, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "099ebb30-c227-48d8-9b7d-138a3a9db090", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 176, | |
"timestamp": 1629368278708, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 405, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7081516530617503", | |
"createdAt": 1629368231545, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c6a2b086-b509-4d05-932d-3aad3db9fb39", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 205, | |
"threadCounter": 2, | |
"timestamp": 1629368538075, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 672, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3703755062210822", | |
"createdAt": 1629368250241, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7435b6ba-782e-4468-9c1e-fbef2a4cea1c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 167, | |
"threadCounter": 0, | |
"timestamp": 1629368126183, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 163, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7837240310505383", | |
"createdAt": 1629368106781, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f9eeb702-a26a-4594-84f9-0a0aec367c84", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 87, | |
"threadCounter": 2, | |
"timestamp": 1629368537545, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 256, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16668103039086302", | |
"createdAt": 1629368236864, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9b5af420-c1f3-415c-bdcd-398a114034d4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 29, | |
"timestamp": 1629368179860, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 272, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4339396615419202", | |
"createdAt": 1629368153400, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "26f0006c-2485-46a1-b5c5-47e103a473fb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 169, | |
"threadCounter": 0, | |
"timestamp": 1629368126684, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 165, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6744688488115784", | |
"createdAt": 1629368106575, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a59df28d-cb34-471a-861c-40195fa0fdbf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 69, | |
"timestamp": 1629368196443, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 16, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9663433087929709", | |
"createdAt": 1629368191914, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ec6e2422-3195-46b5-ae65-086e0af9082e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 155, | |
"timestamp": 1629368233046, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 55, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3025810676828724", | |
"createdAt": 1629368220733, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "de7a3084-f52a-42ac-9e84-c8b7cecfdd74", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 58, | |
"timestamp": 1629368204844, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 34, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3204594632587835", | |
"createdAt": 1629368204561, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cad096f6-c37b-48b8-b9da-9dc9209d849a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 85, | |
"timestamp": 1629368247134, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 358, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4017532188744235", | |
"createdAt": 1629368219786, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f4d7826b-8b4e-4a03-b762-a110eb1cd557", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 106, | |
"timestamp": 1629368218118, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 35, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.01948308150977829", | |
"createdAt": 1629368216967, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2df1d092-05a8-4ecd-8368-ed04d1d16237", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 17, | |
"timestamp": 1629368354857, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 98, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2832492373149893", | |
"createdAt": 1629368229242, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8d8be432-5438-4015-a80f-b1dac5e0309a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 133, | |
"timestamp": 1629368261811, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 381, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2573867251891109", | |
"createdAt": 1629368229998, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f9db5bca-4964-4b92-9320-839710457c45", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 197, | |
"timestamp": 1629368277984, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 125, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32720769037621766", | |
"createdAt": 1629368224375, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ea7afb63-56cb-4a03-854f-7aa4f12573f1", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 91, | |
"threadCounter": 2, | |
"timestamp": 1629368575637, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 111, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1241887028152151", | |
"createdAt": 1629368237672, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cb93b162-2323-476e-81c6-377f98185a92", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 54, | |
"timestamp": 1629376210718, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 701, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21318251125224863", | |
"createdAt": 1629375771635, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "df0df05b-6d3a-415f-b311-b3a7d1858daf", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 14, | |
"timestamp": 1629368292838, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 426, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8207030447378617", | |
"createdAt": 1629368232896, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b65d299f-89e8-4a1e-97a3-d95fd900177d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 191, | |
"threadCounter": 0, | |
"timestamp": 1629368302595, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 441, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6071578850237649", | |
"createdAt": 1629368233674, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4ca71c21-e385-4ff8-a98b-152af842a1c6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 221, | |
"threadCounter": 0, | |
"timestamp": 1629368312804, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 48, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47699956671025656", | |
"createdAt": 1629368226667, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7915eef9-6073-40bb-8f52-a18f159bdc4d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 246, | |
"threadCounter": 0, | |
"timestamp": 1629368321280, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 58, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14588615451420417", | |
"createdAt": 1629368227181, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f3b47719-4279-4121-93af-6fa9e359e03c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 64, | |
"timestamp": 1629368379576, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 537, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5735327588322667", | |
"createdAt": 1629368242528, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9c4e82e4-8c63-4605-8611-b9954bd59cb3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 135, | |
"threadCounter": 2, | |
"timestamp": 1629368329097, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 67, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3041499923618223", | |
"createdAt": 1629368227594, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a112b74f-a42c-410b-95f4-2a80e6ac0aea", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 168, | |
"threadCounter": 0, | |
"timestamp": 1629368126433, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 164, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5411214336102025", | |
"createdAt": 1629368106729, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c70079e1-7626-4eeb-a270-bd8b45378fe6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 154, | |
"timestamp": 1629368233006, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 335, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6062259746021599", | |
"createdAt": 1629368218559, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ac7f8869-0b8a-469a-92a1-29475389e8b6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 31, | |
"timestamp": 1629368180929, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 274, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5972604657510832", | |
"createdAt": 1629368153451, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "93cf2177-884a-441b-9e5c-d386013c2a65", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 170, | |
"threadCounter": 0, | |
"timestamp": 1629368127063, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 166, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07347910417280779", | |
"createdAt": 1629368106833, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d721a191-ba57-4bcd-a916-b84f54dd5616", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 70, | |
"timestamp": 1629368196616, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 18, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5722118484471164", | |
"createdAt": 1629368191966, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a292e39e-2118-4340-a6ca-d261ab22cbc4", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 57, | |
"timestamp": 1629368204804, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 35, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3361392972495958", | |
"createdAt": 1629368204583, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c398fd0f-a012-49fd-8701-2b2fe5e24e3c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 104, | |
"timestamp": 1629368217842, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 38, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6448283075641585", | |
"createdAt": 1629368216982, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ec2dc7d2-b2b6-429f-8103-fc0c8d0206c4", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 171, | |
"threadCounter": 0, | |
"timestamp": 1629368127551, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 167, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.626924743033724", | |
"createdAt": 1629368106944, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "54ac5f72-1f66-4889-8866-4caef49033dc", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 86, | |
"timestamp": 1629368247265, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 81, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5576267544095072", | |
"createdAt": 1629368222066, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "03871f18-84c2-4a94-bb9a-18862df234c8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 55, | |
"timestamp": 1629376211409, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 702, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8511902464137502", | |
"createdAt": 1629375771623, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "33de7731-0c54-4476-a102-136946b649aa", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 172, | |
"threadCounter": 0, | |
"timestamp": 1629368127941, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 168, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5347674138200211", | |
"createdAt": 1629368106996, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8e4231b2-8f6a-4764-b9fc-79d66344911d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 20, | |
"timestamp": 1629368356197, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 99, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6624858372324643", | |
"createdAt": 1629368229294, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c5fb91f7-b7e8-41a7-aa31-9209c41574af", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 65, | |
"timestamp": 1629368380072, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 538, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6212101049110867", | |
"createdAt": 1629368242631, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d98e4022-ac60-42c0-9a40-f43206ad683a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 173, | |
"threadCounter": 0, | |
"timestamp": 1629368128328, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 169, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9905513032637252", | |
"createdAt": 1629368107099, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "51aa8036-bd72-4ec2-9c04-3bb6675affaa", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 138, | |
"timestamp": 1629368263521, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 105, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.37869601343985093", | |
"createdAt": 1629368223246, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "022640f5-4cb9-49b8-9d92-8958f826fb71", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 175, | |
"timestamp": 1629368278272, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 404, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6806170452133182", | |
"createdAt": 1629368231597, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9c7f3ba4-f66c-4d02-ae69-4f6d0b9c6c29", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 174, | |
"threadCounter": 0, | |
"timestamp": 1629368128698, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 170, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.36614206786353654", | |
"createdAt": 1629368106893, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4c83608-c4ea-4059-a849-f427c82d8c2b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 13, | |
"timestamp": 1629368292105, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 425, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5039576397127243", | |
"createdAt": 1629368232845, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "76f4193d-3d6f-499f-849a-dd2c59ee5dd4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 175, | |
"threadCounter": 0, | |
"timestamp": 1629368128972, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 171, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8181174353779445", | |
"createdAt": 1629368107047, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f30091c5-2650-49d2-90f5-39420b7ef35a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 18, | |
"timestamp": 1629368355012, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 91, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.380490106714068", | |
"createdAt": 1629368229614, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "03b1aa23-1540-4832-9833-51843110a009", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 176, | |
"threadCounter": 0, | |
"timestamp": 1629368129265, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 172, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7151272733310075", | |
"createdAt": 1629368107151, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ddd05e5f-93a0-40b4-a3d5-f095fac67c18", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 158, | |
"timestamp": 1629368233920, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 337, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.012283704663736739", | |
"createdAt": 1629368218611, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "119469d4-1682-45f1-85ff-727d822afad7", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 33, | |
"timestamp": 1629368181769, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 276, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.38313528254447626", | |
"createdAt": 1629368153503, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "88346978-12ee-4d92-8ea7-ad6dc5a96049", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 177, | |
"threadCounter": 0, | |
"timestamp": 1629368129663, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 173, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6034456983078428", | |
"createdAt": 1629368107306, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7e32d469-6efc-4493-96ca-49b084b5dfcf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 178, | |
"threadCounter": 0, | |
"timestamp": 1629368129796, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 174, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8580606047770403", | |
"createdAt": 1629368107202, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "aff31229-ea7f-49fa-8998-c0e7323496a4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 12, | |
"timestamp": 1629368196664, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 19, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3518684649274083", | |
"createdAt": 1629368192019, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3193eadc-5833-4235-b47b-cb3f4ea10930", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 59, | |
"timestamp": 1629368205010, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 35, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47024249047962585", | |
"createdAt": 1629368204944, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "475498dd-924b-418b-8c6f-0af5241b3575", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 179, | |
"threadCounter": 0, | |
"timestamp": 1629368130196, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 175, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06062655241140058", | |
"createdAt": 1629368107409, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ad633be9-7878-4549-a76e-be43c3788b6f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 66, | |
"timestamp": 1629368380159, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 102, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.48200778087048757", | |
"createdAt": 1629368231572, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "97706c50-588c-4513-8b4c-5cd4fa69cc98", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 89, | |
"timestamp": 1629368248018, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 82, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7606395177654186", | |
"createdAt": 1629368222117, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a7bf3288-83d5-473c-b90e-6757888c1dcc", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 180, | |
"threadCounter": 0, | |
"timestamp": 1629368130609, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 176, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07362969282675969", | |
"createdAt": 1629368107357, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b76563b8-e4db-4543-8e6d-c9ee3455db14", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 109, | |
"timestamp": 1629368219870, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 310, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28625840962120186", | |
"createdAt": 1629368217120, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "516f5037-0d7b-431c-a6ae-fdd64a4e2d89", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 1, | |
"timestamp": 1629368393641, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 164, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9614785523919004", | |
"createdAt": 1629368232002, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ebf01a57-2fe8-49a0-8960-55382c99d5dc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 181, | |
"threadCounter": 0, | |
"timestamp": 1629368131042, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 177, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9231238604627237", | |
"createdAt": 1629368107254, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5262f91f-a50b-4324-ad98-e7ba626630fc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 135, | |
"timestamp": 1629368262643, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 382, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5240985331474611", | |
"createdAt": 1629368230171, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "87250802-ee8a-48ac-ae72-ddeec531247e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 199, | |
"timestamp": 1629368278827, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 44, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6191801333618079", | |
"createdAt": 1629368224345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e49c993-2545-4ede-b0ab-ff7674d9658e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 182, | |
"threadCounter": 0, | |
"timestamp": 1629368131447, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 178, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9843244824060791", | |
"createdAt": 1629368107564, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2d9c63b8-c1bb-4207-96af-61e22b9fd9b0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 12, | |
"timestamp": 1629368292154, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 59, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.685381012274421", | |
"createdAt": 1629368225315, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f94b4584-961c-4f5b-b11d-67b82c33986a", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 183, | |
"threadCounter": 0, | |
"timestamp": 1629368131719, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 179, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.35633842999339027", | |
"createdAt": 1629368107461, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "91702626-f7a0-4974-a8bd-9a47447a0cad", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 156, | |
"timestamp": 1629368233557, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 336, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4652535941039827", | |
"createdAt": 1629368218699, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ac14a539-9821-4b17-9f7b-cce004a7e246", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 32, | |
"timestamp": 1629368181548, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 275, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8619198504452202", | |
"createdAt": 1629368153555, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c27848c7-7d0c-4c11-9f11-9b80dadf8d6e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 71, | |
"timestamp": 1629368196748, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 20, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7014613123902051", | |
"createdAt": 1629368192071, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9fd0ea84-310d-45bb-b0e0-4c83a5a34ea7", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 60, | |
"timestamp": 1629368205997, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 36, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3612251898824095", | |
"createdAt": 1629368205949, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2be19cc7-2960-4dcc-8324-070a391cdc67", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 87, | |
"timestamp": 1629368247378, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 43, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7760071974894847", | |
"createdAt": 1629368222082, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bfe512e3-f3bb-4f09-80b9-58b9a44f3fb0", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 136, | |
"timestamp": 1629368262730, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 104, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8145235981008532", | |
"createdAt": 1629368223298, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bd35d8f7-8f8b-44a4-9069-e12bd60b8453", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 177, | |
"timestamp": 1629368278919, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 127, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16686665687231972", | |
"createdAt": 1629368224425, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "135dbc2f-1618-488b-a1d6-6a157fbc7875", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 19, | |
"timestamp": 1629368355373, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 513, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20505860379258423", | |
"createdAt": 1629368241232, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c58f5f76-6eb0-48af-89ba-463a8f4c5377", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 112, | |
"timestamp": 1629368221149, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 312, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05155278749692527", | |
"createdAt": 1629368217069, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9a684e8d-1f7a-4288-a818-a98d3e5c8341", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 13, | |
"timestamp": 1629368292899, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 60, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3215984092979598", | |
"createdAt": 1629368225210, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2bbb912d-5d77-4692-9d40-98c05529ec53", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 67, | |
"timestamp": 1629368380273, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 153, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7521521697474602", | |
"createdAt": 1629368231524, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4620dbf0-87e5-4a74-90fa-ce407f32a650", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 193, | |
"threadCounter": 0, | |
"timestamp": 1629368303438, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 442, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39307902193963573", | |
"createdAt": 1629368233726, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "168218db-ae61-4252-adaa-9698a87df2fb", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 223, | |
"threadCounter": 0, | |
"timestamp": 1629368313917, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 457, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43309584826904746", | |
"createdAt": 1629368234680, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cf2455b5-3214-4df6-ae94-8d039cfd5d33", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 4, | |
"timestamp": 1629368395251, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 165, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7599773018441772", | |
"createdAt": 1629368232055, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3591b463-d6cd-415c-a7a2-5bedeefec1ea", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 247, | |
"threadCounter": 0, | |
"timestamp": 1629368322061, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 469, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3521112782063335", | |
"createdAt": 1629368235298, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d407a50a-83cf-4cf7-9ee5-d4a33810606c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 1, | |
"timestamp": 1629368402535, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 560, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1184710070281505", | |
"createdAt": 1629368243949, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "706cbb18-b97f-4137-acfb-aa5d082b84c8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 3, | |
"timestamp": 1629368540339, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 674, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7382279365877213", | |
"createdAt": 1629368250293, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a30d528e-bacd-46a5-81f0-03292d8970d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 184, | |
"threadCounter": 0, | |
"timestamp": 1629368131878, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 180, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2494149894863894", | |
"createdAt": 1629368107512, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ed520c3-9f2d-4534-a5a9-d0b82be752e3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 157, | |
"timestamp": 1629368233598, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 56, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7904268991427698", | |
"createdAt": 1629368220784, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1b462eb5-d54a-4984-93ad-04927ae1b25f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 1, | |
"threadCounter": 1, | |
"timestamp": 1629368132290, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 181, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5240200134864492", | |
"createdAt": 1629368107667, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4c5f6a58-dc13-4ac9-8b40-f574200174c3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 35, | |
"timestamp": 1629368182404, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 278, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8093283121728102", | |
"createdAt": 1629368153606, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "468fbf0a-7bda-41fc-b4a5-345fbfc22838", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 88, | |
"timestamp": 1629368247649, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 359, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8797006643090577", | |
"createdAt": 1629368219837, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dd528d59-4e50-4e67-a212-9f86de50b9a0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 13, | |
"timestamp": 1629368196829, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 21, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7286596147232709", | |
"createdAt": 1629368192174, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5695fbd6-11d4-4f44-b09d-8e7342582e52", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 61, | |
"timestamp": 1629368206481, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 36, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4255285133782958", | |
"createdAt": 1629368206397, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ff090295-36f3-42b9-bd72-e8179c251480", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 2, | |
"timestamp": 1629368539681, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 673, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9954294396146028", | |
"createdAt": 1629368250133, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "517032dd-73e5-4e7e-ada2-742be2df03a9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 110, | |
"timestamp": 1629368220354, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 37, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2847227419808681", | |
"createdAt": 1629368217020, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "25c1a05a-319a-4717-a650-4789ee9461c6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 137, | |
"timestamp": 1629368263442, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 383, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30996821467508395", | |
"createdAt": 1629368230222, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f1785e00-7113-4f22-a39c-2ac36a5b871d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 57, | |
"threadCounter": 2, | |
"timestamp": 1629368279213, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 406, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3708517558644677", | |
"createdAt": 1629368231649, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "902875fe-5592-450b-aba2-c8b67537c883", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 15, | |
"timestamp": 1629368292995, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 61, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6979535669511469", | |
"createdAt": 1629368225366, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6e51c424-e5e9-4f8e-afcc-625f2c4d4843", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 21, | |
"timestamp": 1629368356609, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 514, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3855555292647964", | |
"createdAt": 1629368241335, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3a80d320-ccaf-4ae9-a426-295a56a71645", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 49, | |
"timestamp": 1629375849568, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 333, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8556465304801633", | |
"createdAt": 1629375769096, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6797aa9e-37af-48ff-8c7c-6df669af0f6b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 196, | |
"threadCounter": 0, | |
"timestamp": 1629368304422, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 76, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6003375207109121", | |
"createdAt": 1629368226088, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4b630d5c-aa95-405a-8931-2fe4a9c715a9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 224, | |
"threadCounter": 0, | |
"timestamp": 1629368313958, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 49, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7542604220712649", | |
"createdAt": 1629368226771, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "31f21166-82c1-44e7-bbae-35b1caf0de97", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 248, | |
"threadCounter": 0, | |
"timestamp": 1629368322117, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 59, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5529340232008898", | |
"createdAt": 1629368227233, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "70de2257-13cf-47c9-acaf-5daa806e2e70", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 36, | |
"threadCounter": 1, | |
"timestamp": 1629368328272, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 478, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2686281860661106", | |
"createdAt": 1629368235794, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "310ced17-9d30-4f28-8e82-abaf25e6f9fa", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 204, | |
"threadCounter": 3, | |
"timestamp": 1629368576781, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 702, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05531008954687444", | |
"createdAt": 1629368251836, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ccd3ec91-f6ba-4192-ae4c-b3192392c233", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 34, | |
"timestamp": 1629368182176, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 277, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7043368610363294", | |
"createdAt": 1629368153660, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0e5a532c-475f-48a9-b44b-d573e2df0d59", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 4, | |
"timestamp": 1629368540661, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 257, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6525076881426922", | |
"createdAt": 1629368236967, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6dba68ca-396f-48e2-9015-55ac1b50e338", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 2, | |
"threadCounter": 1, | |
"timestamp": 1629368132569, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 182, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9585135926629709", | |
"createdAt": 1629368107615, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "befe6354-0580-485c-8adb-a6689dae6cc5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 3, | |
"threadCounter": 1, | |
"timestamp": 1629368132724, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 183, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4245419566266746", | |
"createdAt": 1629368107729, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cec0db0f-0dd7-4e31-84ff-e47341e6f4a4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 159, | |
"timestamp": 1629368234034, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 57, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5900751575819803", | |
"createdAt": 1629368220835, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "68dcdec9-0671-4008-9949-8961b987cbc7", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 4, | |
"threadCounter": 1, | |
"timestamp": 1629368133148, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 184, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3746649808133907", | |
"createdAt": 1629368107802, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a3f11aa3-ad69-4036-8559-bdc630137d91", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 15, | |
"timestamp": 1629368197072, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 25, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3286901787152716", | |
"createdAt": 1629368192227, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "092c18da-37cc-4fa3-b823-c7de41a7733c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 62, | |
"timestamp": 1629368206865, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 37, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05528504876821272", | |
"createdAt": 1629368206812, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "82873022-3bf3-42ad-bbc0-61afe69788e3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 5, | |
"threadCounter": 1, | |
"timestamp": 1629368133584, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 185, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.919437420353617", | |
"createdAt": 1629368107853, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "62780859-a8d0-4677-8650-329c197b078f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 6, | |
"threadCounter": 1, | |
"timestamp": 1629368133746, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 186, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6985453898041798", | |
"createdAt": 1629368107905, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c7c71cd1-ad4d-4200-a38a-884dad5f8ce3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 107, | |
"timestamp": 1629368218691, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 36, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6290569876860211", | |
"createdAt": 1629368217345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a133b493-3a8b-4fff-ab23-300f288c322f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 90, | |
"timestamp": 1629368248311, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 360, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9997387832912538", | |
"createdAt": 1629368219889, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8e4b35ca-bc3e-46d3-b84d-80bf43cd9018", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 139, | |
"timestamp": 1629368263807, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 384, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6547460050526132", | |
"createdAt": 1629368230277, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ac49929b-eb76-42ca-a691-27b067db0c33", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 7, | |
"threadCounter": 1, | |
"timestamp": 1629368134300, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 187, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3993700058648708", | |
"createdAt": 1629368108008, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fc088f11-92a5-4fff-a11d-0109db04166e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 208, | |
"threadCounter": 2, | |
"timestamp": 1629368577364, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 112, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5482754890733021", | |
"createdAt": 1629368237620, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2a39a118-ae42-4771-9dd7-5276995f415b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 127, | |
"threadCounter": 1, | |
"timestamp": 1629368280345, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 407, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06588592313413799", | |
"createdAt": 1629368231700, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "01f58a83-ca5d-4885-af27-5c90fe146a0f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 9, | |
"threadCounter": 1, | |
"timestamp": 1629368134727, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 188, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9037321086923453", | |
"createdAt": 1629368107956, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ac6fc731-d073-44bb-9432-513f695f28cc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 14, | |
"timestamp": 1629368293331, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 427, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08546827370463983", | |
"createdAt": 1629368232948, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "596416a7-4bcc-4dda-a24b-a3c6cadc7d8c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 10, | |
"threadCounter": 1, | |
"timestamp": 1629368135017, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 189, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11938451834051278", | |
"createdAt": 1629368108110, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "28759947-ac3e-488e-93df-3066fbea7c7b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 5, | |
"timestamp": 1629368540715, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 98, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8563680471744395", | |
"createdAt": 1629368236949, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ff29a29-274f-44cd-a2db-b005717bb29b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 161, | |
"timestamp": 1629368234404, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 58, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.396704179795191", | |
"createdAt": 1629368220886, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5b2db69a-0583-46a7-a9f2-5e2d93ff603a", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 91, | |
"timestamp": 1629368248656, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 361, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.623701692019938", | |
"createdAt": 1629368221329, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "93a8c093-5662-4fd0-a61f-f68c4d537ce8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 38, | |
"timestamp": 1629368183880, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 281, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6086928398323126", | |
"createdAt": 1629368153714, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "995bf35b-9561-400f-a5e1-08335eaa9227", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 140, | |
"timestamp": 1629368263914, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 43, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5587974189485546", | |
"createdAt": 1629368223345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cf5a4840-e2e7-4203-98ab-73f211170a61", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 72, | |
"timestamp": 1629368196864, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 22, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4908856044526243", | |
"createdAt": 1629368192122, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1604f749-dd7a-41d0-adbc-5af133b81ef7", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 63, | |
"timestamp": 1629368207082, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 38, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18122544073123514", | |
"createdAt": 1629368207032, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b81db48b-1b03-43c4-ad25-17a64e8c9c74", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 108, | |
"timestamp": 1629368218931, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 309, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.36650031576254893", | |
"createdAt": 1629368217171, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3359ee4e-d608-493a-a559-2bd26d9e660a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 94, | |
"threadCounter": 2, | |
"timestamp": 1629368577903, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 703, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5881869262577223", | |
"createdAt": 1629368251681, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8a9f3bb8-0f10-4f0c-a870-ec5f5368f31c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 128, | |
"threadCounter": 1, | |
"timestamp": 1629368280453, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 128, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8847577453576813", | |
"createdAt": 1629368224476, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3b70a2a5-9a47-43cd-85bb-d4af4c6d4114", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 196, | |
"threadCounter": 2, | |
"timestamp": 1629368605709, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 725, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7058956491582983", | |
"createdAt": 1629368253150, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fb3c833e-4d66-4011-bf44-0888e5d06f75", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 15, | |
"timestamp": 1629368294010, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 428, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3939487247113984", | |
"createdAt": 1629368232999, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9f97fb4c-0853-43d3-b088-0a0331d89d9d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 194, | |
"threadCounter": 0, | |
"timestamp": 1629368303865, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 443, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9285289205263961", | |
"createdAt": 1629368233829, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f8c82d82-77e7-41b9-928e-5da4d1300353", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 25, | |
"timestamp": 1629368359789, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 517, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.029192218386123514", | |
"createdAt": 1629368241438, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a6c4879b-5416-4eed-a6a0-01da1783ac7f", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 226, | |
"threadCounter": 0, | |
"timestamp": 1629368314457, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 50, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8336089949985545", | |
"createdAt": 1629368226720, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f43dba85-57de-4179-9c0e-5ab054452909", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 249, | |
"threadCounter": 0, | |
"timestamp": 1629368322217, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 60, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6728521501489302", | |
"createdAt": 1629368227284, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a97a31d9-dbfc-43b8-a66b-56cefd02cc1e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 56, | |
"timestamp": 1629376213159, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 703, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26276994630102823", | |
"createdAt": 1629375771652, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "32e87657-5840-4830-b3b3-381d6d8fa14e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 37, | |
"threadCounter": 1, | |
"timestamp": 1629368329568, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 479, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.577970612528981", | |
"createdAt": 1629368235845, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "20898a80-dfbd-4e8f-9f8d-7845a78df957", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 36, | |
"timestamp": 1629368182845, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 279, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06325737221554895", | |
"createdAt": 1629368153765, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "62f74389-f700-4225-b1eb-8dc9d68d26ce", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 14, | |
"timestamp": 1629368196930, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 23, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1998604510271469", | |
"createdAt": 1629368192279, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "987f103c-16a5-4ecd-b940-35af4fddeb89", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 64, | |
"timestamp": 1629368207984, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 37, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6554304865096977", | |
"createdAt": 1629368207936, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e74b5b1e-13a5-45d5-b4d8-6401bd57227f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 11, | |
"threadCounter": 1, | |
"timestamp": 1629368135588, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 190, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09160936892607918", | |
"createdAt": 1629368108059, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "544968fa-986f-4d52-80a2-dffc82bd7f00", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 160, | |
"timestamp": 1629368234336, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 338, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7642188608978459", | |
"createdAt": 1629368218749, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f0eee235-8b20-4340-9515-3081f3fd03fa", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 22, | |
"timestamp": 1629368357797, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 515, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.008956983036626842", | |
"createdAt": 1629368241492, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e29bd47e-6859-4ab9-a981-e41375c87fbc", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 12, | |
"threadCounter": 1, | |
"timestamp": 1629368136029, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 191, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26147705654596676", | |
"createdAt": 1629368108216, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ed504f24-3cf9-4b45-8c6d-ec7daf1fff0d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 111, | |
"timestamp": 1629368220623, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 311, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7236780406181426", | |
"createdAt": 1629368217223, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "565732d9-5b5a-46a1-8bd4-9458f3708fad", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 13, | |
"threadCounter": 1, | |
"timestamp": 1629368136326, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 192, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.31658259390836563", | |
"createdAt": 1629368108267, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9d3a6b26-be28-44b6-bae5-84e5ed2dc73e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 93, | |
"timestamp": 1629368249305, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 362, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1521606895819726", | |
"createdAt": 1629368220328, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9046232d-942d-455b-9f70-b7bf7ff5d6bf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 14, | |
"threadCounter": 1, | |
"timestamp": 1629368136628, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 193, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.970268851087565", | |
"createdAt": 1629368108319, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ab3c4ab-c483-4a75-b5bd-8ac30dbecfaa", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 141, | |
"timestamp": 1629368264196, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 385, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9180630096932118", | |
"createdAt": 1629368230329, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "995f5be1-8523-49a7-8d99-71de7f1b7178", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 15, | |
"threadCounter": 1, | |
"timestamp": 1629368136951, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 194, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1159815031331013", | |
"createdAt": 1629368108165, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "26e355a0-d783-4b02-8b38-5b2c190ed0ce", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 6, | |
"timestamp": 1629368540980, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 99, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5924841831499721", | |
"createdAt": 1629368237000, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e6509ba9-575e-4ab2-b1d8-18e44b538134", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 135, | |
"threadCounter": 1, | |
"timestamp": 1629368280827, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 408, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2690799023866617", | |
"createdAt": 1629368231752, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "defb9e38-4fdf-47e5-a9cc-db3c633031b9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 16, | |
"threadCounter": 1, | |
"timestamp": 1629368137397, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 195, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.938634900467633", | |
"createdAt": 1629368108421, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2b929112-da38-48c8-b2b9-c6b88020997f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 16, | |
"timestamp": 1629368293678, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 62, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6476616086797997", | |
"createdAt": 1629368225418, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6007eee7-2a9f-4988-a95d-0e664964b8ad", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 197, | |
"threadCounter": 0, | |
"timestamp": 1629368304858, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 444, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5614695115882681", | |
"createdAt": 1629368233778, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cc8b5d58-1a26-4c05-b342-033492b32d62", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 17, | |
"threadCounter": 1, | |
"timestamp": 1629368137973, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 196, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3738293319346715", | |
"createdAt": 1629368108473, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "45d6a9c5-ac17-4df5-bc35-66c9cb39d455", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 162, | |
"timestamp": 1629368234505, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 59, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4394654890480917", | |
"createdAt": 1629368220937, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a325319-9d3e-4a7f-8653-5ee0096b12e4", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 92, | |
"timestamp": 1629368249015, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 83, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3190646383643615", | |
"createdAt": 1629368222168, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "97c6cae8-12f6-4234-9c41-b94da5b1d271", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 23, | |
"timestamp": 1629368357872, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 100, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0880016444401922", | |
"createdAt": 1629368230344, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d7d8c51d-79ce-4a69-be53-8615b1d3358a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 40, | |
"timestamp": 1629368185138, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 283, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0824106649986861", | |
"createdAt": 1629368153829, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f9e941aa-e4c5-4054-ac7f-f0450b8b2aaa", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 143, | |
"timestamp": 1629368264929, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 386, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9246501379542899", | |
"createdAt": 1629368230380, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b3aa1f74-a7cd-4826-80da-5db42d49de5d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 73, | |
"timestamp": 1629368196998, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 24, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.93655919470473", | |
"createdAt": 1629368192331, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9343473b-a302-4152-bff7-d227f4607004", | |
"parentCommentId": null | |
}, | |
"eventSize": 394 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 65, | |
"timestamp": 1629368209090, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 39, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9350871498540664", | |
"createdAt": 1629368209038, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "783a56e2-a14a-4629-9dfc-6bda4b97443f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 1, | |
"timestamp": 1629368281012, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 129, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0002515092812253039", | |
"createdAt": 1629368224527, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "30ff70ac-a33a-4448-aa23-51b283f93488", | |
"parentCommentId": null | |
}, | |
"eventSize": 400 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 117, | |
"timestamp": 1629368222113, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 314, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5393784214884305", | |
"createdAt": 1629368217274, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "99097a2a-06da-4a0e-b826-6ae64f30b9e4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 17, | |
"timestamp": 1629368294057, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 45, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8565370073410469", | |
"createdAt": 1629368225387, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5db6b527-6979-45bd-a879-7149f9c137c6", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 195, | |
"threadCounter": 0, | |
"timestamp": 1629368304304, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 75, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9867332855177081", | |
"createdAt": 1629368226139, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "476f0435-f914-4dc8-bb95-5ef1cab41a78", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 225, | |
"threadCounter": 0, | |
"timestamp": 1629368314350, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 458, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6627200039838036", | |
"createdAt": 1629368234732, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9bcb7db5-6fa0-43bd-ab62-57e30c88a94d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 250, | |
"threadCounter": 0, | |
"timestamp": 1629368322574, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 470, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6053825112994479", | |
"createdAt": 1629368235350, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c3e5e4e2-a3ac-4106-a520-5626172f848c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 7, | |
"timestamp": 1629368541506, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 675, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.849050270747009", | |
"createdAt": 1629368250396, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c7db4a9c-fd06-4173-9fde-35084772e7a8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 70, | |
"timestamp": 1629368382767, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 154, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5021248397210554", | |
"createdAt": 1629368231422, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fed4ff2d-d42a-4ac2-aca2-b938c4a65842", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 178, | |
"timestamp": 1629368578624, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 270, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.059748711131771826", | |
"createdAt": 1629368237673, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bf193520-0fea-4819-b7ae-2a777a2ad4a2", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 147, | |
"threadCounter": 2, | |
"timestamp": 1629368331186, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 481, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.763113830632681", | |
"createdAt": 1629368235897, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6b72dc15-4ee4-4f5e-8784-873f9ad4d6b5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 43, | |
"threadCounter": 1, | |
"timestamp": 1629368332472, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 71, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9324973360032384", | |
"createdAt": 1629368227904, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3d5f1d78-9cd6-4d14-b21f-830db27da62e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 37, | |
"timestamp": 1629368183447, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 280, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9857068248490678", | |
"createdAt": 1629368153880, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1b4f4716-7861-4713-a56c-ea688f0bae41", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 24, | |
"timestamp": 1629368359000, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 516, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15389101299191388", | |
"createdAt": 1629368241283, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "628b1233-2cf8-41d1-881a-19fd5270ae37", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 16, | |
"timestamp": 1629368197163, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 26, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4293402403775892", | |
"createdAt": 1629368192564, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1104e933-e627-4aa7-8874-f0956023a0ad", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 66, | |
"timestamp": 1629368209437, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 40, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.523885844857994", | |
"createdAt": 1629368209382, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "daf3f597-aad1-476f-a3fd-59f6f488399b", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 20, | |
"threadCounter": 1, | |
"timestamp": 1629368139152, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 198, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03835477980005886", | |
"createdAt": 1629368108579, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "07cf5b58-16a5-426e-8232-659344ac8072", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 21, | |
"threadCounter": 1, | |
"timestamp": 1629368139453, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 199, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4323027291215725", | |
"createdAt": 1629368108370, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "45489f9a-61e4-48d1-b6eb-a44da51b4d56", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 113, | |
"timestamp": 1629368221638, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 313, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5536626319214658", | |
"createdAt": 1629368217325, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e2a3ff79-de22-435c-b987-3bdae58b9c9e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 164, | |
"timestamp": 1629368235383, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 60, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.021879293750067808", | |
"createdAt": 1629368220988, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ff6cf291-b3e6-45ba-8ffe-54a51a225964", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 94, | |
"timestamp": 1629368249387, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 84, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9234699428546854", | |
"createdAt": 1629368222219, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9f606443-eebd-4e6d-9163-609c53109fab", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 142, | |
"timestamp": 1629368264547, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 106, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12953685491177813", | |
"createdAt": 1629368223349, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "decedf60-8d52-4696-9766-845b5c5f47cb", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 123, | |
"threadCounter": 2, | |
"timestamp": 1629368281358, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 409, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5122776168620616", | |
"createdAt": 1629368231808, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "574aab3e-8e48-4ed3-b979-932485db517b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 68, | |
"timestamp": 1629368381753, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 539, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45601646160161957", | |
"createdAt": 1629368242733, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b0bd5fd1-b6ed-42b0-b37e-b439e23c17cc", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 16, | |
"timestamp": 1629368294743, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 429, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7746131496913625", | |
"createdAt": 1629368233050, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "858ab6ce-c2de-4ba5-8b9d-ba49314555de", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 198, | |
"threadCounter": 0, | |
"timestamp": 1629368305272, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 445, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7996793758842747", | |
"createdAt": 1629368233880, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2c5403e8-9970-4380-92b2-6f5c48389180", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 227, | |
"threadCounter": 0, | |
"timestamp": 1629368314806, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 459, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0180764881358082", | |
"createdAt": 1629368234834, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ef13fc7-47d5-4e27-bc9b-273507c3883e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 3, | |
"timestamp": 1629368395120, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 553, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9295412187720158", | |
"createdAt": 1629368243475, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "403999b8-1b6c-4407-8aa3-316e221e5eb9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 252, | |
"threadCounter": 0, | |
"timestamp": 1629368323765, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 471, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6012869056217363", | |
"createdAt": 1629368235401, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a1e08e5-d035-4456-a44c-9db0aa0fa688", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 137, | |
"threadCounter": 2, | |
"timestamp": 1629368330005, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 68, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6451075080892285", | |
"createdAt": 1629368227749, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b3f248c4-b5e7-4927-928b-e526cafea6a3", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 186, | |
"threadCounter": 1, | |
"timestamp": 1629368332816, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 483, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.49400941684160793", | |
"createdAt": 1629368236052, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0eb6ba94-8a13-4315-8415-a5f21c61899c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 163, | |
"timestamp": 1629368234839, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 339, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45449116748161966", | |
"createdAt": 1629368218852, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f2079825-0b13-4337-88ce-3dded849ba94", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 18, | |
"threadCounter": 1, | |
"timestamp": 1629368138561, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 197, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4870145273429264", | |
"createdAt": 1629368108630, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f2801b79-5c11-441c-bea4-db56c66c7148", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 95, | |
"timestamp": 1629368249706, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 363, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.37342298836334376", | |
"createdAt": 1629368222287, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7c60865d-fd89-4d2e-ab98-d8d2bc57af6d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 41, | |
"timestamp": 1629368185554, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 284, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7607987776766005", | |
"createdAt": 1629368153931, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5b2c8f07-8602-463c-a70f-192ec4847d45", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 50, | |
"timestamp": 1629375850571, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 334, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5839067167458482", | |
"createdAt": 1629375769121, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "52bc7027-aee7-418d-9824-692d01f942c8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 23, | |
"threadCounter": 1, | |
"timestamp": 1629368139771, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 200, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22118155424410357", | |
"createdAt": 1629368108681, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d0cdf07d-c855-4011-b04a-cab1e4a7fc7d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 144, | |
"timestamp": 1629368265023, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 107, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20969729778424295", | |
"createdAt": 1629368223400, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6e85b7cb-af39-4b4d-a2c2-60afb1d0fe30", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 136, | |
"threadCounter": 1, | |
"timestamp": 1629368281396, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 45, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.37414884918285674", | |
"createdAt": 1629368224537, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7ec7ff59-9e71-477d-8585-7e96d7421e8d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 24, | |
"threadCounter": 1, | |
"timestamp": 1629368140219, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 201, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41808237004476645", | |
"createdAt": 1629368108525, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "459f9731-1e31-4e98-8cb4-94e670fb63cd", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 18, | |
"timestamp": 1629368197312, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 28, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5361805882839736", | |
"createdAt": 1629368193565, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "32ac0f3a-85cb-433b-b2a0-53277b7d5684", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 25, | |
"threadCounter": 1, | |
"timestamp": 1629368140529, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 202, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3115027731074903", | |
"createdAt": 1629368108733, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5febfa7c-3947-421e-b3e1-91a3f827c35c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 67, | |
"timestamp": 1629368209750, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 1, | |
"type": "StoryCreated", | |
"payload": { | |
"link": "", | |
"text": "RRR", | |
"title": "RRR", | |
"userId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"userName": "QQQ" | |
}, | |
"eventSize": 227 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 114, | |
"timestamp": 1629368221670, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 38, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.35831322378082175", | |
"createdAt": 1629368218345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "26815625-7250-446b-8bab-e82e4d285191", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 26, | |
"threadCounter": 1, | |
"timestamp": 1629368140977, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 203, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8611203081648348", | |
"createdAt": 1629368108809, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d1139a3b-6c90-4f2d-a48c-3f226267f361", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 28, | |
"timestamp": 1629368360970, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 518, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03399438921157816", | |
"createdAt": 1629368241543, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4cebdc6c-8514-4dd5-a77c-7556f6363b20", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 17, | |
"timestamp": 1629368295432, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 430, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8274962777848397", | |
"createdAt": 1629368233102, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ebd0be51-1bc1-4009-8103-3c2dd661ee22", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 27, | |
"threadCounter": 1, | |
"timestamp": 1629368141455, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 204, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4576426203805989", | |
"createdAt": 1629368108861, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8f0c4228-f403-4e69-8996-41b59868169d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 199, | |
"threadCounter": 0, | |
"timestamp": 1629368305336, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 77, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06653175053599358", | |
"createdAt": 1629368226191, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "772a1287-2da5-479e-ab13-9478e33815d7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 69, | |
"timestamp": 1629368382233, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 540, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11875550065862284", | |
"createdAt": 1629368242682, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dd072202-c3f3-464d-ae3d-d3cb6d688e9c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 28, | |
"threadCounter": 1, | |
"timestamp": 1629368141911, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 205, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4925510104474914", | |
"createdAt": 1629368108913, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4a2e52a-9817-4db1-b3c8-a0a27396d72a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 39, | |
"timestamp": 1629368184534, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 282, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42880349828196673", | |
"createdAt": 1629368153983, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3cdf6891-e7fc-4033-88b0-87cc16aed6d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 29, | |
"threadCounter": 1, | |
"timestamp": 1629368142216, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 206, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4381568828099599", | |
"createdAt": 1629368109069, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a84a3451-6218-4a99-a68d-76a1d989e487", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 17, | |
"timestamp": 1629368197241, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 27, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13810473634079756", | |
"createdAt": 1629368194564, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1019eedb-3c47-4da7-9d47-58e0a32fbeca", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 31, | |
"threadCounter": 1, | |
"timestamp": 1629368142680, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 207, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21988890850240772", | |
"createdAt": 1629368109121, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "257c19a1-321e-4b2f-9fca-b44f9e2898fa", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 68, | |
"timestamp": 1629368213444, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 41, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4421308345935161", | |
"createdAt": 1629368213389, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "80466126-5b4d-471f-b560-30085c5d8e40", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 115, | |
"timestamp": 1629368221781, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 39, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22181947921033907", | |
"createdAt": 1629368219345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1cdcd0b1-f0f6-4bb6-bfe2-66af8ca90d09", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 34, | |
"threadCounter": 1, | |
"timestamp": 1629368143475, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 209, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8379508993490948", | |
"createdAt": 1629368109019, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4f9d2cb-8368-4153-a058-2589e43659c6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 26, | |
"timestamp": 1629368360258, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 135, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07097037649891935", | |
"createdAt": 1629368230595, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ffc771c-4d32-4dab-93ff-56b82c542a8b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 165, | |
"timestamp": 1629368235735, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 340, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9192821544726199", | |
"createdAt": 1629368218801, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "25483c3b-d0a5-43ce-a032-7f82ebfc3cc2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 96, | |
"timestamp": 1629368249782, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 85, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4342297491518371", | |
"createdAt": 1629368222270, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dba19663-e8d8-4c67-a53d-6bb4976f4a86", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 145, | |
"timestamp": 1629368265160, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 108, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9613723294001941", | |
"createdAt": 1629368223451, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0524f698-98ee-4a75-b37e-61cc69f02a22", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 71, | |
"timestamp": 1629368383335, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 541, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3803341286564357", | |
"createdAt": 1629368242836, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9a70fb54-bc3d-4765-8248-ae3017e7bd48", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 69, | |
"threadCounter": 2, | |
"timestamp": 1629368282027, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 410, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.986792146080906", | |
"createdAt": 1629368231981, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d83feb2b-97d4-4571-bed6-cb5312ccb06c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 18, | |
"timestamp": 1629368295104, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 63, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5234057786021906", | |
"createdAt": 1629368225469, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2ce6a068-f088-465b-b69c-7cc96445c3f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 200, | |
"threadCounter": 0, | |
"timestamp": 1629368305469, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 78, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.807041688572669", | |
"createdAt": 1629368226242, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7389a6a8-40a4-4525-89cf-9a73eceb774a", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 5, | |
"timestamp": 1629368395652, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 554, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.015703672108198896", | |
"createdAt": 1629368243527, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5669be93-b163-49fa-9432-750459152d9e", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 204, | |
"threadCounter": 1, | |
"timestamp": 1629368403491, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 561, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6003800737252064", | |
"createdAt": 1629368243898, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "42ed2b18-ed17-4c1b-9bdd-ccbd10d17bdf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 230, | |
"threadCounter": 0, | |
"timestamp": 1629368315749, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 52, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45976013050931386", | |
"createdAt": 1629368226874, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d21bcddd-139a-4579-9f2a-20706968c284", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 57, | |
"timestamp": 1629376214335, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 704, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.435568434757618", | |
"createdAt": 1629375771647, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d2c285d6-f6a5-41c8-87a8-85b6149cee99", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 27, | |
"timestamp": 1629368360601, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 136, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5532186421584656", | |
"createdAt": 1629368230544, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "449b690c-e74a-4684-b3d8-462f8d8e4e0c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 33, | |
"threadCounter": 1, | |
"timestamp": 1629368143151, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 208, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4861996196610635", | |
"createdAt": 1629368108964, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e7755a84-0800-4d3d-90ae-bb990b11a504", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 42, | |
"timestamp": 1629368186422, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 285, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03595395178566885", | |
"createdAt": 1629368154085, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0bba2447-1559-477c-b13d-c6f89bda0363", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 167, | |
"timestamp": 1629368236346, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 341, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9931666654905899", | |
"createdAt": 1629368218903, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ccfec42d-a39b-4339-8d0a-9c34e4284500", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 35, | |
"threadCounter": 1, | |
"timestamp": 1629368143943, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 210, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5894275675659187", | |
"createdAt": 1629368109224, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0463e303-cdfb-4f5e-af31-91f5e9fbf270", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 52, | |
"timestamp": 1629375851378, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 336, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6436401182272143", | |
"createdAt": 1629375769103, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e2697edd-d444-44fb-93ed-2c89467dc086", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 20, | |
"timestamp": 1629368197575, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 30, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9011724389962001", | |
"createdAt": 1629368196564, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1ce8ab3a-d8dc-4e95-9bb3-8070ee62c432", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 69, | |
"timestamp": 1629368214135, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 42, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3880667915689703", | |
"createdAt": 1629368214084, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4b4f2d77-f666-4129-b98c-e6d7d6b7b357", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 38, | |
"threadCounter": 1, | |
"timestamp": 1629368144569, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 211, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9988013579443008", | |
"createdAt": 1629368109351, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eb4578f6-7bfc-4a98-be47-de78a0b3ac72", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 116, | |
"timestamp": 1629368221806, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 39, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41313913278093495", | |
"createdAt": 1629368218396, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0a5550e9-9dea-45b3-a81f-6632be03426d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 97, | |
"timestamp": 1629368250488, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 364, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7527957012886898", | |
"createdAt": 1629368223167, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eb65776a-caac-41ed-a672-ffcee3621201", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 39, | |
"threadCounter": 1, | |
"timestamp": 1629368145068, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 212, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.003671285018083892", | |
"createdAt": 1629368109173, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bef25afe-ae12-411b-b77f-f27d7c55a461", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 146, | |
"timestamp": 1629368265452, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 387, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08239912227780832", | |
"createdAt": 1629368230432, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "79e2ba28-4171-4503-a674-f69d7bcb95c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 137, | |
"threadCounter": 1, | |
"timestamp": 1629368282229, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 130, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5498341176485232", | |
"createdAt": 1629368224579, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e794d34a-eaa4-4372-9198-61715ac6367e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 54, | |
"threadCounter": 1, | |
"timestamp": 1629368145604, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 213, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1406815930670896", | |
"createdAt": 1629368109275, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f2689a0c-7532-473b-9703-dc8f2ba8f62e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 19, | |
"timestamp": 1629368295502, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 64, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9226819184650528", | |
"createdAt": 1629368225521, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0d86ce60-3d30-4512-88b7-4c2e7cccbb7d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 201, | |
"threadCounter": 0, | |
"timestamp": 1629368305812, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 446, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4182772694507474", | |
"createdAt": 1629368234181, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eea0c4a6-f1ec-4b54-a926-97ea8b79d5be", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 46, | |
"threadCounter": 1, | |
"timestamp": 1629368146106, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 214, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.688787438784005", | |
"createdAt": 1629368109571, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "95c5da2c-5446-41a4-b297-53943a2a1c22", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 166, | |
"timestamp": 1629368236078, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 61, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8520392593664846", | |
"createdAt": 1629368221039, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "34d962f7-b656-4de4-a64d-6a4012d3255a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 51, | |
"timestamp": 1629375851098, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 335, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3490223364630285", | |
"createdAt": 1629375769108, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2f333494-c8e5-4d9f-aeb4-44d364ac6eca", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 45, | |
"timestamp": 1629368187095, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 287, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.01205815297758639", | |
"createdAt": 1629368154034, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "437c4d49-ec8e-494a-bc67-33e964a10d5e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 68, | |
"threadCounter": 1, | |
"timestamp": 1629368147110, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 217, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9435309443222031", | |
"createdAt": 1629368109505, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "53cdcba9-be56-4b42-a631-2b157ea054b4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 98, | |
"timestamp": 1629368250574, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 86, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.24141197687635618", | |
"createdAt": 1629368222321, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "403530ac-8992-4fe2-beb7-6efbc24ad12f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 19, | |
"timestamp": 1629368197496, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 29, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5386887387978203", | |
"createdAt": 1629368195565, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d2c0cd64-f14f-47a0-ab16-bdcbe816cf29", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 70, | |
"timestamp": 1629368215190, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 2, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43602460099270013", | |
"createdAt": 1629368215160, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d0db7c9c-8c7b-49a8-af87-8c0cb0615315", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 100, | |
"timestamp": 1629375886133, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 384, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20654288701436574", | |
"createdAt": 1629375769461, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "227218cf-3ab8-44b8-ad8f-f230e8288fbf", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 118, | |
"timestamp": 1629368222423, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 40, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9243795800007986", | |
"createdAt": 1629368219849, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1d3c6f2f-a503-4035-8262-33d80591b2b8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 147, | |
"timestamp": 1629368266134, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 388, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7683617655828033", | |
"createdAt": 1629368230483, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ddae2b2d-bdc9-4792-a998-fda8339e3938", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 138, | |
"threadCounter": 1, | |
"timestamp": 1629368282525, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 411, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5598237673311777", | |
"createdAt": 1629368232101, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5d75ee49-07a9-4f3f-bca9-80b365f03243", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 18, | |
"timestamp": 1629368295813, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 431, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6097825400955671", | |
"createdAt": 1629368233156, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ab121e66-daec-47d0-aa9c-9a8db9c16257", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 30, | |
"timestamp": 1629368362058, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 137, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9422093078745729", | |
"createdAt": 1629368230492, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "277a7b7b-dca4-4f32-9bb8-e57de749bb5a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 204, | |
"threadCounter": 0, | |
"timestamp": 1629368307041, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 447, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26463838139778595", | |
"createdAt": 1629368234131, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "459205a3-21b5-45dc-920e-f02517e2f489", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 72, | |
"timestamp": 1629368383885, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 155, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7942821444787441", | |
"createdAt": 1629368231473, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6a8ca0ba-e720-4cd0-aa83-adfef448e4d5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 229, | |
"threadCounter": 0, | |
"timestamp": 1629368315713, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 460, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9834694114690227", | |
"createdAt": 1629368234783, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ec2e2fa-90f2-4fbb-b4a2-181d705516ba", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 137, | |
"timestamp": 1629375916705, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 421, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5263569281535391", | |
"createdAt": 1629375769690, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "05e1df60-13e2-47bd-88c0-523f1d1427b5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 253, | |
"threadCounter": 0, | |
"timestamp": 1629368323841, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 62, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6678078845179662", | |
"createdAt": 1629368227388, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cea798d2-0591-42ae-b326-61547d08ede8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 6, | |
"timestamp": 1629368396998, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 555, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9533847949362464", | |
"createdAt": 1629368243578, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "148f88bf-c313-4d14-a52c-7aa6b66502ee", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 40, | |
"threadCounter": 1, | |
"timestamp": 1629368146426, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 215, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.25957669321327204", | |
"createdAt": 1629368109402, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9685f840-f93f-4c28-be4b-6927a81f2f9d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 8, | |
"timestamp": 1629368543661, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 676, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4315941729199886", | |
"createdAt": 1629368250345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1fcc193b-cee6-4b37-9276-2f28df94c59c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 43, | |
"timestamp": 1629368186652, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 286, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13654824071811467", | |
"createdAt": 1629368154136, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ce756eb-454a-446a-8085-ba05f093bbe3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 21, | |
"timestamp": 1629368197650, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 31, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6160323397999098", | |
"createdAt": 1629368197565, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8a001dae-50a9-4e8b-871a-73a93ff4c316", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 71, | |
"timestamp": 1629368215265, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 3, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8721199625078117", | |
"createdAt": 1629368215236, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7b39add8-6ce5-4cf1-a818-6fb5036b5265", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 169, | |
"timestamp": 1629368236971, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 342, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9095552372539653", | |
"createdAt": 1629368218955, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "92c8870c-7954-4297-8722-07de0ee16e33", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 99, | |
"timestamp": 1629368250689, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 42, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8504918323439622", | |
"createdAt": 1629368222345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6d7d98d0-00f0-4beb-9200-b4c2ffa9aade", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 121, | |
"timestamp": 1629368223498, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 316, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9608835394931172", | |
"createdAt": 1629368217377, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d95cd773-fa5f-4674-bd46-b74d477f2935", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 101, | |
"threadCounter": 1, | |
"timestamp": 1629368579206, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 704, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6585782725890859", | |
"createdAt": 1629368251990, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "39786b3b-8e45-4ffc-b760-a75198403753", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 32, | |
"timestamp": 1629368362962, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 520, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7013971727821157", | |
"createdAt": 1629368241594, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4ebc0368-0b88-4f40-9653-8885831c075c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 73, | |
"timestamp": 1629368384362, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 542, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05557800940678037", | |
"createdAt": 1629368242785, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "beb08fdf-aad4-49f9-93d1-eb11ec9c9e07", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 153, | |
"timestamp": 1629368268551, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 391, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.25113547211734877", | |
"createdAt": 1629368230535, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f7799e08-7a92-4f7f-b37b-d1febda78c94", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 58, | |
"threadCounter": 2, | |
"timestamp": 1629368282561, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 46, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17363197258701124", | |
"createdAt": 1629368224590, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4a2fc5de-24fd-45b4-961e-8a4e2dffd332", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 142, | |
"threadCounter": 1, | |
"timestamp": 1629368295905, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 131, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0975153108897967", | |
"createdAt": 1629368225564, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c861c040-62ef-46e1-8fb8-a876b96d9d39", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 58, | |
"timestamp": 1629376214989, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 705, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9793952980303939", | |
"createdAt": 1629375771658, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f23fde7d-4175-458d-a28a-1cc200eda70a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 7, | |
"timestamp": 1629368397518, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 166, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.598349270099048", | |
"createdAt": 1629368232106, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "628385e3-1252-4146-9aa2-8a64859cab8a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 206, | |
"threadCounter": 0, | |
"timestamp": 1629368308348, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 449, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.254056985924047", | |
"createdAt": 1629368234012, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3cc269ba-e196-4e98-a4f6-03e970ada8d0", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 228, | |
"threadCounter": 0, | |
"timestamp": 1629368315283, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 51, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4075594417741851", | |
"createdAt": 1629368226823, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a388363c-20a8-4c43-a61e-adaceb2e27a9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 101, | |
"threadCounter": 2, | |
"timestamp": 1629368608075, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 726, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06130984515739757", | |
"createdAt": 1629368253201, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "64ffd7b1-01ac-4bcc-a013-a67e657174ce", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 55, | |
"threadCounter": 1, | |
"timestamp": 1629368146768, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 216, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9374976691482787", | |
"createdAt": 1629368109453, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0fd21ccc-fb06-43a0-8e25-d0ccff893451", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 44, | |
"timestamp": 1629368186886, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 1, | |
"type": "StoryCreated", | |
"payload": { | |
"link": "", | |
"text": "EEE", | |
"title": "EEE", | |
"userId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"userName": "QQQ" | |
}, | |
"eventSize": 227 | |
}, | |
{ | |
"threadId": 67, | |
"threadCounter": 1, | |
"timestamp": 1629368147561, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 218, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21349320951172357", | |
"createdAt": 1629368109623, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "21ed8d08-d765-4ee4-b282-1b982c3b35a5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 1, | |
"timestamp": 1629368150704, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 219, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13810512321674462", | |
"createdAt": 1629368150519, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5036b1c3-8a37-4657-9d85-840a78f55e7c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 2, | |
"timestamp": 1629368150887, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 220, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08485679694852666", | |
"createdAt": 1629368150624, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1a2273e6-e5c4-4718-a343-91e103b55e5c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 22, | |
"timestamp": 1629368197763, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 32, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13338646259907694", | |
"createdAt": 1629368197687, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fcfcba4f-c911-4e18-b991-bc092007859c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 72, | |
"timestamp": 1629368215320, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 4, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6073854941702065", | |
"createdAt": 1629368215288, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "87e8a3f7-e8b7-4059-be0e-a3aca3cafbd8", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 3, | |
"timestamp": 1629368151387, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 221, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07624371600178192", | |
"createdAt": 1629368150572, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4fbef335-2f0f-4ba4-a1b6-77e089b681db", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 119, | |
"timestamp": 1629368222692, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 315, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2745964133382771", | |
"createdAt": 1629368217429, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "553b6f55-f0d0-4f7c-82bf-cda75d7f7cdd", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 4, | |
"timestamp": 1629368151747, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 222, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3616666098131536", | |
"createdAt": 1629368150676, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7f01d139-1398-42ee-bea0-31ee4ecd0175", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 168, | |
"timestamp": 1629368236705, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 62, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12243218485436069", | |
"createdAt": 1629368221089, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6651330a-21d6-486b-acd6-338a85f924db", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 100, | |
"timestamp": 1629368250958, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 365, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.44796513130726756", | |
"createdAt": 1629368225301, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6e869cde-c6bd-46db-8f38-131542f9e997", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 148, | |
"timestamp": 1629368266512, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 109, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10288663339158255", | |
"createdAt": 1629368223502, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ce9d9f18-3c7d-4cd7-a518-4b54b7325be8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 5, | |
"timestamp": 1629368152445, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 223, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26833431497953875", | |
"createdAt": 1629368150747, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6f6e45c9-5404-4c86-b2a7-f9e2b34b72c8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 9, | |
"timestamp": 1629368544874, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 258, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6723239692329186", | |
"createdAt": 1629368237019, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c3398151-02ba-4627-a8c1-4c8cae367347", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 139, | |
"threadCounter": 1, | |
"timestamp": 1629368283257, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 412, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5817999009876849", | |
"createdAt": 1629368232039, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "422c57ca-e827-434a-9a0b-a6f3eb7cdaee", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 31, | |
"timestamp": 1629368362576, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 138, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8067685535017504", | |
"createdAt": 1629368230648, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "568774fc-33ee-416b-a1a4-a19997391301", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 16, | |
"timestamp": 1629368296383, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 65, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8635269626814046", | |
"createdAt": 1629368225573, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "44b2b142-9a5a-412a-b925-00409c44b029", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 6, | |
"timestamp": 1629368153299, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 224, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28799752690634806", | |
"createdAt": 1629368150902, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a6554e0b-6943-44db-a993-18cfc0fadb78", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 29, | |
"timestamp": 1629368361955, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 519, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.742594074881925", | |
"createdAt": 1629368241672, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "aa90e4d8-a29d-4fc4-adbf-fa69a87c001b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 172, | |
"timestamp": 1629368237711, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 343, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6766985885840859", | |
"createdAt": 1629368219010, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "966c9c7a-d9cb-4c1c-a56d-7b55798fb1cc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 8, | |
"timestamp": 1629368154705, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 226, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9551254387801509", | |
"createdAt": 1629368150798, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3c65067e-39e1-47ad-89ca-2d4914b4a4f2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 47, | |
"timestamp": 1629368188180, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 289, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.016222018264379856", | |
"createdAt": 1629368154188, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8a134e8b-7f6b-4276-8bc7-7b8f0d9a259f", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 23, | |
"timestamp": 1629368199295, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 33, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32978280839664265", | |
"createdAt": 1629368199242, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c9de0564-1f32-42f5-bfe0-22b32a649cfc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 73, | |
"timestamp": 1629368215371, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 5, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2378431596186925", | |
"createdAt": 1629368215339, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "12f6c1a9-a7f1-47c2-8c29-7f9d9e8d405c", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 120, | |
"timestamp": 1629368222731, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 41, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.518178636239256", | |
"createdAt": 1629368219901, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "baac0e99-8279-44f9-881a-6eeb6d20b93b", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 101, | |
"timestamp": 1629368251025, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 87, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6334555881600561", | |
"createdAt": 1629368222372, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "550ec96b-a941-4c26-a254-9840bb6026f9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 149, | |
"timestamp": 1629368266807, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 389, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16907785113637896", | |
"createdAt": 1629368230587, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "118134c5-d36b-4251-954b-2f1d7863f1fb", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 74, | |
"timestamp": 1629368384488, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 156, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.007217298188987309", | |
"createdAt": 1629368231577, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "07a9621c-1e75-4861-9dd5-4d3d224f6145", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 140, | |
"threadCounter": 1, | |
"timestamp": 1629368284234, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 413, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.945695702089303", | |
"createdAt": 1629368232154, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "897a53c6-8244-4fb4-99b0-16b2748a7f4c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 143, | |
"threadCounter": 1, | |
"timestamp": 1629368296336, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 432, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6746065329698464", | |
"createdAt": 1629368233210, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4c49c13e-fa2a-4954-8d43-adc0f00b98d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 0, | |
"timestamp": 1629368306558, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 46, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7422023185885533", | |
"createdAt": 1629368226344, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "39c664a0-224f-45f1-822a-445ec70fff4a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 231, | |
"threadCounter": 0, | |
"timestamp": 1629368315881, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 133, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4175974709445318", | |
"createdAt": 1629368226893, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "55a8a822-602c-43cd-b5a1-cbdb26464e91", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 251, | |
"threadCounter": 0, | |
"timestamp": 1629368323404, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 61, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7164827486265686", | |
"createdAt": 1629368227336, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9770c1b3-5665-4e1a-a8e5-1c240505a444", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 144, | |
"threadCounter": 2, | |
"timestamp": 1629368330417, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 480, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09735447395271823", | |
"createdAt": 1629368235949, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4ae155f9-6d87-405b-97f1-0a33b9090dd2", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 187, | |
"threadCounter": 1, | |
"timestamp": 1629368333627, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 88, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.341723135994526", | |
"createdAt": 1629368227944, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "826d2e58-85d6-4165-8b34-5f450cc7bf3c", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 45, | |
"threadCounter": 1, | |
"timestamp": 1629368333728, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 72, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20223049272763027", | |
"createdAt": 1629368227801, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8b4ba49b-8515-4dd7-a2f0-9aebce290461", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 46, | |
"timestamp": 1629368187543, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 288, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6366120842198484", | |
"createdAt": 1629368154290, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a6c2ace5-37bc-4593-be5d-b30c7233a465", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 7, | |
"timestamp": 1629368153983, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 225, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.769111076702204", | |
"createdAt": 1629368150850, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3c1b43cb-2d3b-4b32-a6c0-f9c8831f633e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 24, | |
"timestamp": 1629368201330, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 34, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4413153541529291", | |
"createdAt": 1629368201246, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4fda842-2795-4abd-a7d7-be0c4ac02389", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 74, | |
"timestamp": 1629368215433, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 6, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45516404909500063", | |
"createdAt": 1629368215391, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ff0a29e8-485c-4d85-baae-d5e9f3be76d9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 170, | |
"timestamp": 1629368237282, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 63, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.49474640264461955", | |
"createdAt": 1629368221192, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6284c0b6-11d2-4808-8c3c-edd615248091", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 122, | |
"timestamp": 1629368223780, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 317, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8746956022495473", | |
"createdAt": 1629368217480, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c1d42f1-f08c-406b-925e-84bdfc216923", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 33, | |
"timestamp": 1629368363069, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 139, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9681511380670228", | |
"createdAt": 1629368230700, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ba3f13d5-45c2-4310-9024-8d9518394016", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 102, | |
"timestamp": 1629368251729, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 88, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7136685777646423", | |
"createdAt": 1629368222423, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "46e463b2-7ec6-4774-a22a-9beec2ce41ff", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 10, | |
"timestamp": 1629368545961, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 677, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9932995139900934", | |
"createdAt": 1629368250501, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3dcd586e-e137-4880-8c97-2e910af4bb9a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 150, | |
"timestamp": 1629368267369, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 110, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5326678361009264", | |
"createdAt": 1629368223554, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "348412d1-333d-496b-bdaf-d96e6440b90d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 53, | |
"timestamp": 1629375852139, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 337, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4913255468588047", | |
"createdAt": 1629375769115, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e982836f-0bc1-4829-85a6-a1ae7ac0e594", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 144, | |
"threadCounter": 1, | |
"timestamp": 1629368296568, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 66, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5836830342792236", | |
"createdAt": 1629368225623, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "de58dde3-2905-46da-8797-4aeb33b16206", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 0, | |
"timestamp": 1629368306629, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 79, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9718796017248902", | |
"createdAt": 1629368226293, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0b07749b-47eb-46f4-b319-7c75a93e6179", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 232, | |
"threadCounter": 0, | |
"timestamp": 1629368316236, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 461, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6585418648475528", | |
"createdAt": 1629368234885, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e9a9a1ff-4919-445e-b1a1-1e0e85501d91", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 254, | |
"threadCounter": 0, | |
"timestamp": 1629368324226, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 472, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19551583046319332", | |
"createdAt": 1629368235537, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2508e01f-e5f4-41fe-b732-163502f0a775", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 41, | |
"threadCounter": 1, | |
"timestamp": 1629368330822, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 69, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09363208299549741", | |
"createdAt": 1629368227697, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ec02aa2a-7858-4396-aa62-ac6392953dc3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 44, | |
"threadCounter": 1, | |
"timestamp": 1629368333222, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 484, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6990209110384653", | |
"createdAt": 1629368236134, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a07cef8d-1d4c-47f1-84e4-147844142e65", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 188, | |
"threadCounter": 1, | |
"timestamp": 1629368334229, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 73, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8794047944543353", | |
"createdAt": 1629368227956, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "94e6e90e-c433-4a92-9eee-5b9ab61d2d08", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 48, | |
"threadCounter": 1, | |
"timestamp": 1629368334581, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 486, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5691042879761611", | |
"createdAt": 1629368236239, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a7796693-75e9-49dc-aa06-306480f97549", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 54, | |
"timestamp": 1629375852434, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 338, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3967745179776275", | |
"createdAt": 1629375769127, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d8852e4c-93d7-4e80-99a9-83af62fa4925", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 171, | |
"timestamp": 1629368237427, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 64, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6759908404956912", | |
"createdAt": 1629368221140, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b6a5074f-72f4-408d-8512-405b080e21dd", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 48, | |
"timestamp": 1629368189081, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 290, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7718729306490574", | |
"createdAt": 1629368154239, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6f7833c7-8a96-4f87-ab2c-56cbb9551187", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 25, | |
"timestamp": 1629368202816, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 2, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10536675167842902", | |
"createdAt": 1629368202784, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fb08a1ed-da01-4985-a7a5-2716aa4e4d48", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 75, | |
"timestamp": 1629368215478, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 7, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8343909965856312", | |
"createdAt": 1629368215452, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a3c0ad3c-e35f-4f51-8a2b-43385a12ec36", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 123, | |
"timestamp": 1629368223817, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 42, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1658265703689954", | |
"createdAt": 1629368220055, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "aa320275-baca-43af-ac26-7c8aff78f139", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 9, | |
"timestamp": 1629368155511, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 227, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7695224917461527", | |
"createdAt": 1629368151006, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "57c7664b-3edf-452e-a66f-04719ac974a7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 10, | |
"timestamp": 1629368155724, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 228, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41634401388913855", | |
"createdAt": 1629368150955, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "309f1922-ee25-4ef7-b7a0-cc08f1967171", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 119, | |
"timestamp": 1629383071035, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 134, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3215780445146824", | |
"createdAt": 1629383070138, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b4980585-883b-4416-894c-b031745eeb63", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 14, | |
"timestamp": 1629368549293, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 679, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5215393064171654", | |
"createdAt": 1629368250552, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "da9b427f-1ed0-4a6b-b759-0def31282482", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 11, | |
"timestamp": 1629368156229, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 229, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2666605589146781", | |
"createdAt": 1629368151161, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "331e3273-7c0b-4e1a-a7c4-b01794b49cc3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 104, | |
"timestamp": 1629368252599, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 367, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9976961812036117", | |
"createdAt": 1629368229264, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8880f112-b94f-4ba2-99ac-3b6bdd8cee97", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 12, | |
"timestamp": 1629368156645, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 230, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.01415576988248568", | |
"createdAt": 1629368151109, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "89e2ed82-5d43-44d3-b2ad-3ba681b8e79d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 101, | |
"timestamp": 1629375886754, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 385, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6995453525636007", | |
"createdAt": 1629375769454, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3da5c25a-b5c1-49f5-ade9-3ea5a58a8445", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 138, | |
"threadCounter": 2, | |
"timestamp": 1629368581049, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 705, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.598483041590817", | |
"createdAt": 1629368251888, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c8bfc91a-eacd-4180-ae00-45a45181fecc", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 154, | |
"timestamp": 1629368268654, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 112, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06125263891186894", | |
"createdAt": 1629368223605, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a5baeb22-6fdd-422f-822e-b562c0d7370e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 13, | |
"timestamp": 1629368157332, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 231, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6563094921982793", | |
"createdAt": 1629368151058, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b9436ea9-5946-4ae9-81ac-27fb24368b86", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 70, | |
"threadCounter": 2, | |
"timestamp": 1629368283916, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 47, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8267249373153632", | |
"createdAt": 1629368224641, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "14b6a46e-0115-4bb9-9d36-d4fea953de12", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 14, | |
"timestamp": 1629368157702, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 232, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5071663890272442", | |
"createdAt": 1629368151246, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eca62898-d3b2-4c83-9ffe-0698d5b635c2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 34, | |
"timestamp": 1629368363595, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 140, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.022881423105377885", | |
"createdAt": 1629368230751, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5e59443a-56bc-4f93-b8da-54243a62fabe", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 57, | |
"threadCounter": 1, | |
"timestamp": 1629368158082, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 233, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32846880154890523", | |
"createdAt": 1629368151298, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ab2135a8-575f-4a4d-ad07-b67c81f9b149", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 174, | |
"timestamp": 1629368238563, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 344, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23397928248703237", | |
"createdAt": 1629368219061, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e5c5aaeb-d8e1-4d67-9ed0-3f51f3a6b366", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 123, | |
"threadCounter": 1, | |
"timestamp": 1629368158434, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 234, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.47899679645343485", | |
"createdAt": 1629368151402, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0a3e1636-72d8-4fcc-877c-af87d2b094d7", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 69, | |
"threadCounter": 1, | |
"timestamp": 1629368158635, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 235, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3586216810339392", | |
"createdAt": 1629368151453, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75b11359-ebf1-4d29-bce6-e2578efa193f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 49, | |
"timestamp": 1629368189712, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 291, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8562306671992785", | |
"createdAt": 1629368154342, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7c579c32-be04-4ddd-a9c0-559eca2df2b6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 26, | |
"timestamp": 1629368202891, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 3, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5792960746597503", | |
"createdAt": 1629368202862, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "696efe02-0d46-4eaf-aa09-9c577c9e291e", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 75, | |
"timestamp": 1629368384992, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 92, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.24562255662906063", | |
"createdAt": 1629368231614, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "81266ccb-7679-42fe-9299-fbd32d50ba9c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 58, | |
"threadCounter": 1, | |
"timestamp": 1629368159358, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 236, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3729623725811334", | |
"createdAt": 1629368151505, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "88fcc966-b0dc-4beb-aa17-7052a90d3c8d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 76, | |
"timestamp": 1629368215548, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 8, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9824872808597647", | |
"createdAt": 1629368215504, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ce5997b-568a-4033-9849-80afd5bf2276", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 103, | |
"timestamp": 1629368252002, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 366, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5846720664496906", | |
"createdAt": 1629368226586, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "68981e94-45b6-4a73-90b4-a0da9e9c5e11", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 70, | |
"threadCounter": 1, | |
"timestamp": 1629368159904, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 237, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8583371742265304", | |
"createdAt": 1629368151350, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "adc47c5d-93a7-40fe-af9d-278afbd4c182", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 151, | |
"timestamp": 1629368267732, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 390, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9494357463305755", | |
"createdAt": 1629368230812, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "237249f4-3900-4961-a0f3-e904956af8f7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 1, | |
"timestamp": 1629368160280, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 238, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33821403319383825", | |
"createdAt": 1629368151609, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0523c939-753b-4bc2-a9ec-f3b46e07ba13", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 8, | |
"timestamp": 1629368397931, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 556, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.009026311470399895", | |
"createdAt": 1629368243372, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c2a057b1-4378-452b-8922-2eae2d3eeafd", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 3, | |
"timestamp": 1629368285382, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 415, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1534504270504886", | |
"createdAt": 1629368232205, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ea42e1dd-bc56-4ccf-a64a-96bf1828927b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 145, | |
"threadCounter": 1, | |
"timestamp": 1629368296879, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 433, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6132320502248926", | |
"createdAt": 1629368233262, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "11f94805-4c8a-4aa5-b3b0-ea4dc2038e0b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 56, | |
"threadCounter": 15, | |
"timestamp": 1629368161120, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 239, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.052159441587256494", | |
"createdAt": 1629368151660, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c956f80b-5acc-45e9-93a6-82943295f5b9", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 205, | |
"threadCounter": 0, | |
"timestamp": 1629368307783, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 448, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.001974154504157166", | |
"createdAt": 1629368234233, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "808e14c8-741d-4320-8195-76d7bd50dc0a", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 173, | |
"timestamp": 1629368238022, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 65, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.960063105200943", | |
"createdAt": 1629368221245, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5c4480ad-7273-4dea-84d8-f1e7b090a756", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 71, | |
"threadCounter": 1, | |
"timestamp": 1629368161803, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 240, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6932838149135778", | |
"createdAt": 1629368151712, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b95a944a-c38f-454b-b709-44ac35780d7d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 105, | |
"timestamp": 1629368252781, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 89, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.24276679426880643", | |
"createdAt": 1629368222475, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2d383b09-1ac4-4e0b-a1a2-7a2835da04e0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 50, | |
"timestamp": 1629368189947, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 292, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5001500979178584", | |
"createdAt": 1629368154394, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3a73acbf-3678-4cc4-8238-21bb9e2b28bb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 27, | |
"timestamp": 1629368202947, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 4, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8482129250588817", | |
"createdAt": 1629368202914, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4ed3d85e-f704-4293-9c9f-0c4bc5806d58", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 77, | |
"timestamp": 1629368215619, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 9, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10381856651884824", | |
"createdAt": 1629368215555, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "919194eb-a07c-4b81-9ed7-c355cec81b36", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 152, | |
"timestamp": 1629368268222, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 111, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.46140663596858966", | |
"createdAt": 1629368223656, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "275ff49a-ae9e-4454-ba59-044b05d58d7a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 124, | |
"threadCounter": 2, | |
"timestamp": 1629368284940, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 414, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7355251268912988", | |
"createdAt": 1629368232261, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3db5ebb5-cec5-457b-818d-9b4ede7e4270", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 35, | |
"timestamp": 1629368363964, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 521, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16607723446107092", | |
"createdAt": 1629368241778, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "51bf292d-dbf6-49d9-a1a3-1b8769bf0165", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 76, | |
"timestamp": 1629368385402, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 543, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9422766154996483", | |
"createdAt": 1629368242939, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0365e7a9-f812-481f-988d-d4c652f015d1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 148, | |
"threadCounter": 1, | |
"timestamp": 1629368298632, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 435, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3253653042608814", | |
"createdAt": 1629368233314, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6d5be820-4544-4a0f-8b3f-4268a18f41d6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 207, | |
"threadCounter": 0, | |
"timestamp": 1629368308434, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 80, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6695846953883486", | |
"createdAt": 1629368226345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d5ed29fd-3bce-41ca-99e7-4b56c308f8b1", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 9, | |
"timestamp": 1629368398070, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 167, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5495976677499016", | |
"createdAt": 1629368232208, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1668a153-b29f-4022-9b62-15f89a7b2d85", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 11, | |
"timestamp": 1629368547011, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 100, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9515297272230703", | |
"createdAt": 1629368237053, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "51164538-c46d-4f47-8010-3213adfe80ca", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 236, | |
"threadCounter": 0, | |
"timestamp": 1629368317801, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 463, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5806921154053661", | |
"createdAt": 1629368234937, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d1e94704-7102-4371-80a4-1b93b2393e03", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 205, | |
"threadCounter": 1, | |
"timestamp": 1629368404554, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 172, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5622617559609367", | |
"createdAt": 1629368232472, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9a3813ee-0b76-4b1f-9a6a-88a3a442c5ff", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 255, | |
"threadCounter": 0, | |
"timestamp": 1629368324986, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 473, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.567196584765014", | |
"createdAt": 1629368235486, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cd73e1df-9891-4c88-a8c6-d4b8e6bb9c8c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 2, | |
"timestamp": 1629368580292, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 113, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2965459659160683", | |
"createdAt": 1629368237724, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9656e34f-334b-4730-8242-0eb28742042c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 42, | |
"threadCounter": 1, | |
"timestamp": 1629368331931, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 482, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8473323636964901", | |
"createdAt": 1629368236000, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9c0c224e-3af1-4334-b108-1f3ffa36f070", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 55, | |
"timestamp": 1629375852731, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 339, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3923072214560175", | |
"createdAt": 1629375769139, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a1158f3-a128-4068-a954-92fbe97a0828", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 51, | |
"timestamp": 1629368190386, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 293, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26460612873229816", | |
"createdAt": 1629368154446, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dc4e17ad-1ec5-49d0-8cf6-f28959289ae7", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 125, | |
"threadCounter": 1, | |
"timestamp": 1629368162369, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 241, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0987902956909581", | |
"createdAt": 1629368151557, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9e35f88c-bdeb-41e9-bfe9-7426f20b4c37", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 28, | |
"timestamp": 1629368203011, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 5, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4068715512539065", | |
"createdAt": 1629368202973, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3d47a946-0cc4-4c9c-94ef-975f641b37bd", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 78, | |
"timestamp": 1629368215663, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 10, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7729492053207538", | |
"createdAt": 1629368215609, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "00eee849-fbec-4be4-9f00-114f2adbd2ab", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 133, | |
"threadCounter": 1, | |
"timestamp": 1629368162932, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 242, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1886146097190382", | |
"createdAt": 1629368151919, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4cae293f-d405-4bc8-891a-647fa24765ca", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 38, | |
"timestamp": 1629368365990, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 523, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40491243472582705", | |
"createdAt": 1629368241829, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "88beeed2-ec92-4db2-9ba1-08da1e57b50b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 175, | |
"timestamp": 1629368239130, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 345, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9660738837429259", | |
"createdAt": 1629368219112, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "33c34154-53e3-4cdf-9cf8-c15dd023f3e4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 72, | |
"threadCounter": 1, | |
"timestamp": 1629368163497, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 243, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9725378988746142", | |
"createdAt": 1629368151816, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7095b5d8-0517-4538-a429-ca7b4a2786b2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 106, | |
"timestamp": 1629368253123, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 368, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10071472205774501", | |
"createdAt": 1629368229315, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84068625-19c4-4cef-9e14-dec4d1bd4c0a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 155, | |
"timestamp": 1629368269093, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 392, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6238442252007702", | |
"createdAt": 1629368230962, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "517e7748-4f8a-4212-a0fc-094915c456ef", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 73, | |
"threadCounter": 1, | |
"timestamp": 1629368164047, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 244, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5046411291691832", | |
"createdAt": 1629368151764, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fa60dbf1-91e3-490c-985c-29d21d0de8c0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 1, | |
"timestamp": 1629368284976, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 48, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3422920920275673", | |
"createdAt": 1629368224743, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84ff2f68-504d-44f9-9e2a-d8380ce6fced", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 71, | |
"threadCounter": 2, | |
"timestamp": 1629368297299, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 67, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5585153718703961", | |
"createdAt": 1629368225675, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f37b6445-c673-428e-99af-75dc94575d3c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 77, | |
"timestamp": 1629368385548, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 157, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9791357511217496", | |
"createdAt": 1629368231629, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fbcb35c3-743d-4d2a-942b-c9b52fb3e218", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 59, | |
"timestamp": 1629376216776, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 706, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5995757691934458", | |
"createdAt": 1629375771664, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f43bbf1d-d706-4fba-a9fd-2830b8db9008", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 213, | |
"threadCounter": 0, | |
"timestamp": 1629368310695, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 83, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39230022383987095", | |
"createdAt": 1629368226500, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "83e3d108-c4cb-44e5-a2cd-58c4d4f46193", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 233, | |
"threadCounter": 0, | |
"timestamp": 1629368316637, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 53, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1153823350559996", | |
"createdAt": 1629368226925, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "affb2194-7455-415a-8692-d66e375e0421", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 134, | |
"threadCounter": 200, | |
"timestamp": 1629368325402, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 474, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8211068359883639", | |
"createdAt": 1629368235588, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "72be51c2-b2bc-4452-969e-31d01a5dda68", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 36, | |
"timestamp": 1629368365091, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 522, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9622339862007603", | |
"createdAt": 1629368241880, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cff55837-0931-43fd-85c0-0e04961415f7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 49, | |
"threadCounter": 1, | |
"timestamp": 1629368335297, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 487, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12184336645165517", | |
"createdAt": 1629368236290, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "96d036b6-123d-4bde-a27e-fb2d9b4178b2", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 78, | |
"timestamp": 1629368386003, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 544, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.028217001547636622", | |
"createdAt": 1629368242990, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "54c4265b-7795-4480-8894-68feade2050a", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 50, | |
"threadCounter": 1, | |
"timestamp": 1629368335696, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 74, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32324445125330437", | |
"createdAt": 1629368228111, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d8dab54b-a639-4b56-8c8e-669944caf415", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 189, | |
"threadCounter": 1, | |
"timestamp": 1629368336099, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 488, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7311797434534594", | |
"createdAt": 1629368236345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b0c441a0-fa63-4b81-b318-69043de834e6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 51, | |
"threadCounter": 1, | |
"timestamp": 1629368336157, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 75, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6504260762552461", | |
"createdAt": 1629368228059, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "62d84eea-4ce0-4072-8804-0788de1bf7c3", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 12, | |
"timestamp": 1629368547685, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 259, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18189026695479849", | |
"createdAt": 1629368237070, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d8771a6c-aaaf-478e-b289-e544c34f6b01", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 102, | |
"threadCounter": 1, | |
"timestamp": 1629368580489, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 271, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7059596991709969", | |
"createdAt": 1629368237730, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ea680c2-c176-4297-aed7-f56861e71411", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 190, | |
"threadCounter": 1, | |
"timestamp": 1629368336954, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 489, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07706938532109808", | |
"createdAt": 1629368236397, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9efaf332-e8a8-4f9e-85b8-1a84a3cedae0", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 52, | |
"threadCounter": 1, | |
"timestamp": 1629368337024, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 76, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3053194269408299", | |
"createdAt": 1629368228008, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a110ca03-4409-4540-820a-9da767ce0f84", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 120, | |
"timestamp": 1629383071159, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 135, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.432766425202894", | |
"createdAt": 1629383070112, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "489ea8ca-058e-43e1-964a-0e1bc6474b5f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 191, | |
"threadCounter": 1, | |
"timestamp": 1629368337436, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 490, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5994467944044009", | |
"createdAt": 1629368236449, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "44c38f59-ef91-4453-a79c-4235e14f1571", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 53, | |
"threadCounter": 1, | |
"timestamp": 1629368337525, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 77, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4124426341053442", | |
"createdAt": 1629368228163, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a1d30e27-726e-4084-9658-a9ef4092ef73", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 59, | |
"threadCounter": 1, | |
"timestamp": 1629368337912, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 491, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6572393180414449", | |
"createdAt": 1629368236500, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5e03007f-cc32-453c-9f31-a73f9d0eb235", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 1, | |
"timestamp": 1629368337972, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 78, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.296796593811952", | |
"createdAt": 1629368228214, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f5241887-ed22-415a-a97b-7ae8cec0639b", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 192, | |
"threadCounter": 1, | |
"timestamp": 1629368338037, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 89, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5229096065477191", | |
"createdAt": 1629368228224, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "98097c2d-e8e3-4ac1-9468-324a727a20b8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 61, | |
"threadCounter": 1, | |
"timestamp": 1629368338482, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 492, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9494910941955782", | |
"createdAt": 1629368236552, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "81208b06-0efa-4392-ae62-3495f4496e82", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 193, | |
"threadCounter": 1, | |
"timestamp": 1629368338541, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 79, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.554311924157285", | |
"createdAt": 1629368228266, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4651bfbd-d066-4672-b0d8-938f54b919c2", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 62, | |
"threadCounter": 1, | |
"timestamp": 1629368338692, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 80, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6645247697204736", | |
"createdAt": 1629368228317, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e3ed94a-d6fb-4689-87af-25eae15ff4ec", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 63, | |
"threadCounter": 1, | |
"timestamp": 1629368339043, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 493, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7992492804619281", | |
"createdAt": 1629368236604, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a8ce5d73-9150-40f3-8508-9a21ccd9a86b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 37, | |
"timestamp": 1629368365191, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 141, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6895714157705841", | |
"createdAt": 1629368230802, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a43c9a4-b227-4e56-97b5-b2bd1f8fd1f3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 79, | |
"timestamp": 1629368386125, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 158, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13100922069549192", | |
"createdAt": 1629368231680, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ce79b17-2059-45c3-becd-070478975c2d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 10, | |
"timestamp": 1629368398744, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 168, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6532995513813415", | |
"createdAt": 1629368232157, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "57d7a3ea-3db6-4262-96cd-a75c8828af65", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 87, | |
"threadCounter": 1, | |
"timestamp": 1629368404433, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 562, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5410985590117326", | |
"createdAt": 1629368243846, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "97f64c31-68e4-412d-ac21-70bdcce4634e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 64, | |
"threadCounter": 1, | |
"timestamp": 1629368340249, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 494, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7187981719573163", | |
"createdAt": 1629368236682, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7d915eee-cecb-46b8-8da5-63f2ce28713f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 194, | |
"threadCounter": 1, | |
"timestamp": 1629368340309, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 81, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6378863872289374", | |
"createdAt": 1629368228369, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5db36bb2-1c8b-4c5c-87d1-4e7fe99f19e7", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 5, | |
"timestamp": 1629368407364, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 175, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.834883422035019", | |
"createdAt": 1629368232575, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0c254054-be39-4a61-b882-67d4adf91900", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 13, | |
"timestamp": 1629368548165, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 678, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9432644246450348", | |
"createdAt": 1629368250449, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a98c28dd-4e11-4708-b23f-c13999752cba", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 65, | |
"threadCounter": 1, | |
"timestamp": 1629368340807, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 82, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5333902182717898", | |
"createdAt": 1629368228471, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6fa73757-9799-4916-86e1-b43a5ac6a10f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 195, | |
"threadCounter": 1, | |
"timestamp": 1629368341245, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 495, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16831337945881875", | |
"createdAt": 1629368236784, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "46fc5581-4abd-406d-b338-afc2cf1492b8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 145, | |
"threadCounter": 2, | |
"timestamp": 1629368583208, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 707, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8854583705290615", | |
"createdAt": 1629368251939, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75ac8117-91e0-427f-b217-ec0722179f4f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 196, | |
"threadCounter": 1, | |
"timestamp": 1629368342007, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 496, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05277733098579207", | |
"createdAt": 1629368237328, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2771e593-7aeb-4f68-9feb-5fc8a940a37a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 66, | |
"threadCounter": 1, | |
"timestamp": 1629368342070, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 83, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.04463476338379779", | |
"createdAt": 1629368228420, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f568cc4e-8a0c-4b8c-a315-03d654992d6e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 74, | |
"threadCounter": 1, | |
"timestamp": 1629368342473, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 497, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0399363041964681", | |
"createdAt": 1629368236733, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2e1a4c4d-d6fe-42eb-9481-1ed689e62ede", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 197, | |
"threadCounter": 1, | |
"timestamp": 1629368342612, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 84, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.798228338860497", | |
"createdAt": 1629368228523, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e9533d4b-8114-4278-8385-e2fad9088199", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 75, | |
"threadCounter": 1, | |
"timestamp": 1629368342970, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 498, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4049421701740017", | |
"createdAt": 1629368238621, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c18ae117-d879-4ee1-bab5-93aded60a6cd", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 11, | |
"timestamp": 1629368410937, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 178, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5175049958851449", | |
"createdAt": 1629368232678, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5d93b785-f737-4561-8440-87b0a5d34977", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 39, | |
"timestamp": 1629368366095, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 142, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.02343379007774904", | |
"createdAt": 1629368230905, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "639f89f8-594c-4433-b541-4ccdd048594b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 80, | |
"timestamp": 1629368386979, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 545, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9311596951139198", | |
"createdAt": 1629368243042, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "aaeafef4-5b0b-495f-9863-d614dafa182e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 76, | |
"threadCounter": 1, | |
"timestamp": 1629368343796, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 85, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6549166648486792", | |
"createdAt": 1629368228575, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0b45201e-2c6f-4f20-a08e-3c108faf423d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 56, | |
"timestamp": 1629375853535, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 340, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.38214533557781816", | |
"createdAt": 1629375769133, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "94ce248f-f20e-46ee-960e-53c1429f092c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 12, | |
"timestamp": 1629368400210, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 169, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7789442299393192", | |
"createdAt": 1629368232259, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b3ccc25b-8a6a-4904-b9ea-e951a715f94f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 102, | |
"timestamp": 1629375887447, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 386, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2461378902739545", | |
"createdAt": 1629375769466, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d2a635a0-7878-4c79-bb49-347c5a407fb1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 1, | |
"timestamp": 1629368405254, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 173, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6849985635147534", | |
"createdAt": 1629368232421, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b62fccac-e0f7-4cab-be76-60651cc8696b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 6, | |
"timestamp": 1629368407767, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 565, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10929030521257022", | |
"createdAt": 1629368244154, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2737b2a4-e10a-4182-ba25-7b63c955c838", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 8, | |
"timestamp": 1629368409292, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 176, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3817031426155715", | |
"createdAt": 1629368232626, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "19e66183-10c1-4ae7-bf4d-c349ca09cce1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 9, | |
"timestamp": 1629368409986, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 177, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20548595176765727", | |
"createdAt": 1629368232728, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a21b39de-906a-4d89-ab38-ea4fe9e5bee6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 17, | |
"timestamp": 1629368552352, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 681, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43648340783191497", | |
"createdAt": 1629368250705, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "46db3dd5-9d5b-455a-8904-29a3afa6c6d5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 13, | |
"timestamp": 1629368412237, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 569, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33535588703007324", | |
"createdAt": 1629368244205, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "23a97d7b-404c-4e16-a17f-fdd16d171bd9", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 15, | |
"timestamp": 1629368413228, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 179, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8464380647613873", | |
"createdAt": 1629368232830, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3196d08f-89c9-466e-8179-60f016944570", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 70, | |
"threadCounter": 3, | |
"timestamp": 1629368582076, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 706, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5314636824623197", | |
"createdAt": 1629368252042, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5f508c95-2a38-4d87-9f24-c48034b65c45", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 16, | |
"timestamp": 1629368414310, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 180, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7415339468399296", | |
"createdAt": 1629368232933, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bd79e125-b545-43e4-8ea8-44be9bb39ebb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 17, | |
"timestamp": 1629368414856, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 571, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08107706764218259", | |
"createdAt": 1629368244485, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "52b6a8a1-04b5-420e-923a-e934d907186a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 66, | |
"threadCounter": 2, | |
"timestamp": 1629368606928, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 281, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17640343048036788", | |
"createdAt": 1629368238248, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "95a1cf0c-7924-4236-9073-33fd83f35792", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 3, | |
"timestamp": 1629374973947, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 290, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "WWW", | |
"createdAt": 1629374973671, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3e7bb694-4c7a-4ea4-b7a2-c4add43640e2", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 19, | |
"timestamp": 1629368415950, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 572, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30561807874151004", | |
"createdAt": 1629368244434, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a425dcea-7335-48b8-a869-fa5e80b9cb4f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 198, | |
"threadCounter": 1, | |
"timestamp": 1629368344176, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 499, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9302007604156335", | |
"createdAt": 1629368238332, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e92bba11-167e-42f2-b4a1-0018f6f64d61", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 15, | |
"timestamp": 1629368550553, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 101, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1927763820627546", | |
"createdAt": 1629368237104, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6909d60c-4b1d-400a-807b-0ffd027358ee", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 40, | |
"timestamp": 1629368367348, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 524, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23932866880272907", | |
"createdAt": 1629368241931, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8fa1fb85-d374-41bd-86dd-4e2a9aa9b371", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 19, | |
"timestamp": 1629368582156, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 114, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23529033502333196", | |
"createdAt": 1629368237775, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "331ec050-1b1c-47d7-89ee-4acb50ae60d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 80, | |
"threadCounter": 81, | |
"timestamp": 1629368387911, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 546, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43825489565945674", | |
"createdAt": 1629368242888, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e65c31f5-86ee-4553-ae85-876505abdb20", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 202, | |
"threadCounter": 11, | |
"timestamp": 1629368399266, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 557, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5491407244794534", | |
"createdAt": 1629368243795, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2c89e1ff-3982-4166-8a85-2a0e1a5aa430", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 179, | |
"timestamp": 1629368607017, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 124, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9549615006357925", | |
"createdAt": 1629368238290, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d5b53418-388d-492a-8a78-c89b3dfbc2e7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 2, | |
"timestamp": 1629368405665, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 563, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9339773500122799", | |
"createdAt": 1629368244000, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ce4cd08-1235-4103-af47-fa27470fdfd3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 4, | |
"timestamp": 1629374975897, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 291, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "WWW", | |
"createdAt": 1629374975664, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e0ad12f3-a5d7-41ff-bd14-3eeeea8f3e5c", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 7, | |
"timestamp": 1629368408747, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 566, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6961727058745005", | |
"createdAt": 1629368244103, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a6bb7843-6abb-48ce-8758-966da368f71d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 36, | |
"timestamp": 1629375752365, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 135, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10668981810067413", | |
"createdAt": 1629375748579, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4d8e7f5a-e2a1-4743-b7fe-b291efcd3c7c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 10, | |
"timestamp": 1629368410388, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 567, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40978404961265824", | |
"createdAt": 1629368244308, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b9155ac8-08e4-434d-b511-9d05107c94ed", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 12, | |
"timestamp": 1629368411375, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 568, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6927930959664704", | |
"createdAt": 1629368244257, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dc7be03c-0637-4e09-a925-7a7c7c928f77", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 60, | |
"timestamp": 1629376218500, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 707, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5849694911618993", | |
"createdAt": 1629375771670, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8dd46c3e-b833-41bd-a608-e9245a6bab78", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 14, | |
"timestamp": 1629368413100, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 570, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9879792096872851", | |
"createdAt": 1629368244383, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0b05c178-072c-4bc6-b95e-c7b335b85e06", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 10, | |
"timestamp": 1629375774930, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 165, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28468287455475294", | |
"createdAt": 1629375767909, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "43b0d3c5-fa4f-458f-835c-768ac5d798d4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 58, | |
"timestamp": 1629375854924, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 342, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7543051588683947", | |
"createdAt": 1629375769151, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ffcae6f2-64cb-463d-b32d-cead8cf78c2d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 39, | |
"timestamp": 1629375785060, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 194, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9566146005892077", | |
"createdAt": 1629375768152, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "49e8436b-8d36-488b-a988-439a4f8888f2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 18, | |
"timestamp": 1629368415003, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 181, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6223052358110526", | |
"createdAt": 1629368232881, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eb318e2d-6dd3-4e1a-a0a8-76ef30a417f1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 16, | |
"timestamp": 1629368551106, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 680, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.31745489908305846", | |
"createdAt": 1629368250603, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fbc8577b-64a5-424e-8ced-01525eb23dff", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 61, | |
"timestamp": 1629376219095, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 708, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4510310877746826", | |
"createdAt": 1629375771735, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b3dc1645-76b7-4484-a6d3-91b88d1c5715", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 22, | |
"timestamp": 1629368417794, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 574, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8325422393200456", | |
"createdAt": 1629368244588, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4140e964-c9e9-4c4e-a8b0-f811d8e8fd26", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 149, | |
"threadCounter": 2, | |
"timestamp": 1629368584453, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 708, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.847258203257225", | |
"createdAt": 1629368252094, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b656f7f4-9998-4e4a-9bb1-c7e4bfa784b7", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 59, | |
"timestamp": 1629375855215, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 343, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.642216861301959", | |
"createdAt": 1629375769145, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ae76915-051f-4367-aa95-d651fa1f299e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 3, | |
"timestamp": 1629368609143, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 727, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9581579998528624", | |
"createdAt": 1629368253304, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "060ddb36-b796-4fed-94bb-d4c465b697ef", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 5, | |
"timestamp": 1629374976247, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 292, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "", | |
"createdAt": 1629374976013, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fe7b2a96-a26b-4837-8f02-5d4a6f000733", | |
"parentCommentId": null | |
}, | |
"eventSize": 375 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 122, | |
"timestamp": 1629383071633, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 137, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8248814304318016", | |
"createdAt": 1629383070126, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3fde0564-379c-4825-b56d-9d26acc3b6f3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 104, | |
"timestamp": 1629375888490, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 388, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9034507328572006", | |
"createdAt": 1629375769473, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "316132eb-4bbb-4c0d-90e2-c28e1eabcd48", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 225, | |
"threadCounter": 3, | |
"timestamp": 1629375752956, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 137, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5379700049136864", | |
"createdAt": 1629375748630, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b344ad68-307f-4af1-baee-55e630b7508e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 189, | |
"timestamp": 1629383091820, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 204, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15781899577916525", | |
"createdAt": 1629383070557, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "50e6bf91-1a17-4ac4-9f08-e3d75839ff8a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 13, | |
"timestamp": 1629375776131, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 168, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12750422523859362", | |
"createdAt": 1629375767922, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8fddaefb-38d6-4957-b0a2-4755223a868e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 143, | |
"timestamp": 1629375920260, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 427, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5282464913877866", | |
"createdAt": 1629375769696, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "30f06f00-df0e-419b-aa80-be623f8a307e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 40, | |
"timestamp": 1629375785441, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 195, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3803502818984511", | |
"createdAt": 1629375768145, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "759dce3a-4988-42c8-a1f7-bbf7e94b64d5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 11, | |
"timestamp": 1629375794771, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 218, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.005262872314693023", | |
"createdAt": 1629375768282, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "33af3083-ec5e-4647-9c7e-35412958b75c", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 20, | |
"timestamp": 1629368416505, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 182, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14379706535896497", | |
"createdAt": 1629368232780, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bd863eeb-45d2-44d1-8c2a-10de829ff135", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 18, | |
"timestamp": 1629368552558, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 260, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7338371794109323", | |
"createdAt": 1629368237121, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "abf5e342-b3ea-4632-90c3-093c9f8e2d47", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 67, | |
"timestamp": 1629368583953, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 272, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10495859822084508", | |
"createdAt": 1629368237781, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e42cdf9a-dbda-4f53-99bf-c8127529231e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 57, | |
"timestamp": 1629375854380, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 341, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.614076519034705", | |
"createdAt": 1629375769157, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "076967d7-8248-40ee-91de-03a455a12c14", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 103, | |
"timestamp": 1629375888105, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 387, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9288992322585395", | |
"createdAt": 1629375769479, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5e90618c-d311-4c35-86e5-0ceca1b90ce8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 140, | |
"timestamp": 1629375918489, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 424, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8259566739690557", | |
"createdAt": 1629375769703, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "57513a13-4933-4900-a01a-5e55d7d135b7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 229, | |
"threadCounter": 2, | |
"timestamp": 1629368611581, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 729, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5918828087363048", | |
"createdAt": 1629368253253, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "beac1f35-1b7c-44e0-bbb9-7ffe591b3598", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 6, | |
"timestamp": 1629374978813, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 293, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "WWW", | |
"createdAt": 1629374978583, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "24b80725-0e59-4fd6-9160-a6033c4567ca", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 172, | |
"timestamp": 1629375942026, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 456, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9517505590769697", | |
"createdAt": 1629375769894, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cf4923ae-5063-4d35-8a6f-34877fe59840", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 196, | |
"timestamp": 1629375963890, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 480, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06271258519572298", | |
"createdAt": 1629375770035, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "df5fc16e-0797-440a-aeb3-1d6e3a0140a1", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 121, | |
"timestamp": 1629383071500, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 136, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1749096218335925", | |
"createdAt": 1629383070132, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1712d857-dd36-4914-b55b-e7b26f19bf01", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 190, | |
"timestamp": 1629383092004, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 205, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4461418083180878", | |
"createdAt": 1629383070563, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c70cd24-ae56-444c-8927-1f66fe69d06a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 242, | |
"timestamp": 1629383113525, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 257, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33753290299277405", | |
"createdAt": 1629383071042, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "19940a30-e64a-4580-97db-6f0e51e4060b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 66, | |
"threadCounter": 3, | |
"timestamp": 1629375754789, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 142, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3283157452130211", | |
"createdAt": 1629375748682, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b5af5684-ad62-4bd3-8b31-fc4661c9e45e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 216, | |
"timestamp": 1629375982314, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 500, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22224754813439118", | |
"createdAt": 1629375770243, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d9241d1d-3105-43a6-a610-40fb600d1676", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 225, | |
"timestamp": 1629375989653, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 509, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.046479312081305624", | |
"createdAt": 1629375770315, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0b2a48a1-5f65-4378-b1ce-98c859040108", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 64, | |
"timestamp": 1629376223954, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 711, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9447773528405389", | |
"createdAt": 1629375771729, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f8822101-054a-475b-b8b6-148a7f9a0938", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 14, | |
"timestamp": 1629375776708, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 169, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9203409789159802", | |
"createdAt": 1629375767928, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "61e15396-c096-48da-a972-59c203cdedb0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 21, | |
"timestamp": 1629368416941, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 573, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07192050068227618", | |
"createdAt": 1629368244536, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9a8337fb-da01-46e9-ad7e-495b97307043", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 23, | |
"timestamp": 1629368417942, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 183, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5272927344629689", | |
"createdAt": 1629368232983, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fd301bba-735d-4286-af41-3eb38842abfb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 19, | |
"timestamp": 1629368552639, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 102, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.62756732470267", | |
"createdAt": 1629368237155, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "727a9502-ac56-4da9-9b21-285b7da0f889", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 24, | |
"timestamp": 1629368418475, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 575, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7151468344994326", | |
"createdAt": 1629368244640, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bcdea167-fe8c-4778-9ce3-6269cf6484f8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 25, | |
"timestamp": 1629368418655, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 184, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1284879332722405", | |
"createdAt": 1629368233035, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d34f1dd9-be73-4ef1-922e-4712f3c68775", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 26, | |
"timestamp": 1629368419205, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 576, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4264753313465678", | |
"createdAt": 1629368244744, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b5860778-b4db-4340-b764-98fb38402bef", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 27, | |
"timestamp": 1629368419379, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 185, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4866024328641281", | |
"createdAt": 1629368233086, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "73356b96-2829-4219-afd0-e887cdea7965", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 225, | |
"threadCounter": 1, | |
"timestamp": 1629368585599, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 709, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9851541733048161", | |
"createdAt": 1629368252145, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c9706ba5-27a2-4ef0-b37a-60d52727200f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 28, | |
"timestamp": 1629368419956, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 577, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9734170019850372", | |
"createdAt": 1629368244817, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5131d200-af09-4c9b-8d3c-79ac279a4ca8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 3, | |
"timestamp": 1629368610225, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 728, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11071208679706412", | |
"createdAt": 1629368253356, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f787f6f5-854e-4fea-afaf-7134315ad7f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 29, | |
"timestamp": 1629368420799, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 578, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9033220712539934", | |
"createdAt": 1629368244921, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "16cdfd60-f503-4d4b-ac19-563b320a8f19", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 30, | |
"timestamp": 1629368420929, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 186, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32521236043781443", | |
"createdAt": 1629368233137, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0ebe8dfa-b691-494b-9c0a-a07556966103", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 7, | |
"timestamp": 1629375739414, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 106, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "777", | |
"createdAt": 1629375739282, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "18f5b758-a497-4308-8bce-240623dd43d9", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 31, | |
"timestamp": 1629368421489, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 103, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.530355813204126", | |
"createdAt": 1629368233138, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6c21c69f-8c83-4220-bf4c-404915e81349", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 32, | |
"timestamp": 1629368421904, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 579, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7427925865503646", | |
"createdAt": 1629368244870, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a5c2acb3-bfa9-45c8-b0f8-4a2147a1b4b2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 220, | |
"threadCounter": 3, | |
"timestamp": 1629375753235, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 138, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3115572564089144", | |
"createdAt": 1629375748735, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a7b557dd-1364-4471-bfe0-5c257a4e4358", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 33, | |
"timestamp": 1629368422788, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 580, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.978144051487364", | |
"createdAt": 1629368244973, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8095ace9-a2ec-4901-8a31-2d9d3a1f6c57", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 12, | |
"timestamp": 1629375775710, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 167, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9438608239872525", | |
"createdAt": 1629375767934, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ea08c518-7753-4a8c-b54a-351f42e321d4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 34, | |
"timestamp": 1629368423349, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 187, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9443064756538982", | |
"createdAt": 1629368233189, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d9a615f9-14e5-4e00-af19-1820090a86a9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 35, | |
"timestamp": 1629368423826, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 581, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9769200029026285", | |
"createdAt": 1629368245076, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cf16fa48-117c-4146-9a12-06ee414d301c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 60, | |
"timestamp": 1629375855821, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 344, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6112252954170748", | |
"createdAt": 1629375769164, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "91225814-f991-46a5-954f-665b0d888485", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 62, | |
"timestamp": 1629376220856, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 709, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.334959938368803", | |
"createdAt": 1629375771676, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a4186d99-3500-4aba-8bd5-6d488a5e087b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 22, | |
"timestamp": 1629368555328, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 684, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8285983307239126", | |
"createdAt": 1629368250756, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "603842ee-5258-4c0c-9eb8-5a85ccdaec52", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 222, | |
"threadCounter": 1, | |
"timestamp": 1629368585098, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 115, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.35662372918877283", | |
"createdAt": 1629368237827, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "09dab7c7-8f11-44b7-8312-9e2f51ab6a18", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 102, | |
"threadCounter": 2, | |
"timestamp": 1629368610963, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 282, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9982804549907467", | |
"createdAt": 1629368238315, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9819e53d-e5b8-4718-aa44-67812b2655a4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 8, | |
"timestamp": 1629375740521, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 107, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "777", | |
"createdAt": 1629375740424, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b7f471fb-d0b1-4318-97c6-d0c522d34bdc", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 105, | |
"timestamp": 1629375889586, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 389, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2025009754831465", | |
"createdAt": 1629375769485, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "07409c66-6f7d-4d2e-8766-b300da9c68f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 4, | |
"timestamp": 1629375753622, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 139, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9683254428863523", | |
"createdAt": 1629375748792, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "89ee3b39-8272-42c4-a944-deeaaf1fad34", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 141, | |
"timestamp": 1629375918906, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 425, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5366248422573887", | |
"createdAt": 1629375769709, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1c66cdcd-79b5-4b19-b9ad-0e8362be2efe", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 173, | |
"timestamp": 1629375942859, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 457, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21545139859633622", | |
"createdAt": 1629375769900, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d712d1c6-ff8f-451c-8a3e-00aa056c93d6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 123, | |
"timestamp": 1629383071867, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 138, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3792504501557401", | |
"createdAt": 1629383070152, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "114c8fa1-fa07-4bb6-8bc6-4b67f9cad952", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 191, | |
"timestamp": 1629383092377, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 206, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5258538712274098", | |
"createdAt": 1629383070569, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fef49bb1-c9ff-4bb2-aea9-c0261b75b3e2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 18, | |
"timestamp": 1629375778541, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 173, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5263555172219782", | |
"createdAt": 1629375767941, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "24f91814-ca41-4f7a-a538-1e5e09a27d42", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 41, | |
"timestamp": 1629375785986, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 196, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32595842394530583", | |
"createdAt": 1629375768165, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "37dafe8f-1c69-4b99-9c59-b6fe4e9bb04e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 243, | |
"timestamp": 1629383114075, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 258, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9517084662032506", | |
"createdAt": 1629383071102, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "94400fdd-b382-473f-884a-4c2988204c23", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 10, | |
"timestamp": 1629375794246, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 217, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43158911777831777", | |
"createdAt": 1629375768288, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "765625bd-ceb1-48ea-ab5a-789fe1d3294b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 20, | |
"timestamp": 1629368553638, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 682, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8118364025090931", | |
"createdAt": 1629368250858, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ed81af8-14be-4337-a20d-bca27425b268", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 2, | |
"timestamp": 1629368585802, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 273, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9561806253971257", | |
"createdAt": 1629368237832, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0a8f9cb3-32bd-4ffb-8212-7e0781a254d6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 36, | |
"timestamp": 1629368424781, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 188, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.540257255875184", | |
"createdAt": 1629368233243, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d6f1bd14-9ced-4f9d-9af7-4a50fbf59cb8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 138, | |
"threadCounter": 3, | |
"timestamp": 1629368611041, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 105, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2986815734274849", | |
"createdAt": 1629368238335, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4a86d577-7e8a-4432-9d4b-0a64d7e28d6e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 9, | |
"timestamp": 1629375741603, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 108, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "777", | |
"createdAt": 1629375741506, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ee29778c-6201-4277-80b4-88a9f961ef98", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 124, | |
"timestamp": 1629383072028, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 139, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5576919760011966", | |
"createdAt": 1629383070159, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ed5b1464-03b4-43fc-9f26-3870f35b15dc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 37, | |
"timestamp": 1629368425882, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 582, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.907202078009391", | |
"createdAt": 1629368245024, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b2837b4f-a72d-4182-91d2-c379cb3f743b", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 63, | |
"timestamp": 1629376222782, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 710, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08751612295491973", | |
"createdAt": 1629375771741, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "69faa017-6bc9-4a66-8a07-e80a8086c265", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 38, | |
"timestamp": 1629368426447, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 189, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7723486567982633", | |
"createdAt": 1629368233345, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3dc7fbb4-116b-4c65-a3e7-81d52bf4b2fe", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 196, | |
"threadCounter": 3, | |
"timestamp": 1629375754439, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 141, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5810544079758516", | |
"createdAt": 1629375748931, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7597cf5e-4642-4762-a9b1-2e9d2eda6754", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 63, | |
"timestamp": 1629375859485, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 347, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17020175053070452", | |
"createdAt": 1629375769170, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "382291c3-81cf-44f6-8189-55740220cf76", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 39, | |
"timestamp": 1629368427439, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 583, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40097634496341517", | |
"createdAt": 1629368245127, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3f12934b-95d9-4324-bb61-f4fd6a0225cd", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 40, | |
"timestamp": 1629368427582, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 190, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4257887965304539", | |
"createdAt": 1629368233294, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e7197edc-c993-4cb7-a6c9-a683d98557d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 192, | |
"timestamp": 1629383092726, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 207, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3586333131342442", | |
"createdAt": 1629383070575, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5a40523a-386a-4f01-85eb-0af1ba1b195c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 41, | |
"timestamp": 1629368428448, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 584, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.44177396344543274", | |
"createdAt": 1629368245179, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ac2aacf-601b-4795-b510-6ffa505d6819", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 42, | |
"timestamp": 1629368428597, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 191, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5345423870360283", | |
"createdAt": 1629368233396, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f3f20d4d-dde4-4429-839a-614440f41561", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 43, | |
"timestamp": 1629368429042, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 585, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2818373020725443", | |
"createdAt": 1629368245230, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84103521-141e-4d8b-b461-a4504e2c858b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 44, | |
"timestamp": 1629368429558, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 586, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7999163014159986", | |
"createdAt": 1629368245281, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b62ee821-60a4-4fa5-bff5-6ebb7862651e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 45, | |
"timestamp": 1629368429696, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 192, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1462510426992687", | |
"createdAt": 1629368233551, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e1d1b6a9-31ac-4ea1-a59e-f06890313d19", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 21, | |
"timestamp": 1629368554238, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 683, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2219870489777881", | |
"createdAt": 1629368250807, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "21e42b45-dec8-47f8-8f39-1fa821b3a6cf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 61, | |
"timestamp": 1629375858384, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 345, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4688820303248531", | |
"createdAt": 1629375769176, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c3678ac7-c2b4-419b-bd97-504b872a6ebc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 46, | |
"timestamp": 1629368430675, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 587, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8873331560547221", | |
"createdAt": 1629368245383, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c15ba886-2c34-4593-85ff-24e875ca0826", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 47, | |
"timestamp": 1629368430823, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 193, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7004093195376109", | |
"createdAt": 1629368233499, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ff50c91-1f2b-4860-804c-5aeac4a9bb7a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 48, | |
"timestamp": 1629368431272, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 588, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40716957995301495", | |
"createdAt": 1629368245332, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "381a2165-5260-4cc1-92f8-74c76e7b8071", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 49, | |
"timestamp": 1629368431455, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 194, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.706777312303136", | |
"createdAt": 1629368233448, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9d2c79a5-98e1-433c-b58d-9352b20bfb3e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 50, | |
"timestamp": 1629368431890, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 589, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3575486912147464", | |
"createdAt": 1629368245435, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6cae50e5-28d1-4c8d-b1a6-6f57b1b738eb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 233, | |
"threadCounter": 1, | |
"timestamp": 1629368587037, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 116, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07205930700519791", | |
"createdAt": 1629368237879, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2d5e87ac-1d08-4979-869f-0f2b8bc05377", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 70, | |
"threadCounter": 4, | |
"timestamp": 1629368611726, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 125, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10805538484887256", | |
"createdAt": 1629368238342, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f8f5b6e6-c644-4f2c-a6a5-65e1755bb5f9", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 51, | |
"timestamp": 1629368432902, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 590, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4790599221700734", | |
"createdAt": 1629368245486, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "52e9aa10-3e0c-4184-9038-129d7d95ed22", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 52, | |
"timestamp": 1629368433047, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 195, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10876872556285688", | |
"createdAt": 1629368233602, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ced966f-9284-44eb-9b27-42dea11a57c9", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 53, | |
"timestamp": 1629368433290, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 196, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07168074602576857", | |
"createdAt": 1629368233668, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "53ed8093-0c3d-4064-a8ff-28c260f33307", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 54, | |
"timestamp": 1629368433706, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 591, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.929534840673347", | |
"createdAt": 1629368245540, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "beea73fc-9880-4421-8317-0d22775594b8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 10, | |
"timestamp": 1629375742854, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 109, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "777", | |
"createdAt": 1629375742754, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4d84416a-1891-40c4-b832-894cb1cc1964", | |
"parentCommentId": null | |
}, | |
"eventSize": 378 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 37, | |
"timestamp": 1629375753973, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 140, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2785733007931983", | |
"createdAt": 1629375748983, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b428b930-bbe9-47a8-a6bf-9169964a0cca", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 15, | |
"timestamp": 1629375777168, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 170, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18502162759877583", | |
"createdAt": 1629375767953, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "86b33968-79c2-40c4-b8a6-1ba1f18a1e6d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 87, | |
"threadCounter": 5, | |
"timestamp": 1629375786380, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 197, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3900833454978174", | |
"createdAt": 1629375768158, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3fbc07aa-c116-4814-90f9-29bb69381968", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 55, | |
"timestamp": 1629368435288, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 197, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13628059114411517", | |
"createdAt": 1629368233720, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "17fa8d4a-8cd3-41a0-bd15-036372dcdb27", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 88, | |
"threadCounter": 56, | |
"timestamp": 1629368435718, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 592, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5493634363036755", | |
"createdAt": 1629368245592, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c09add18-a89f-422f-bfc1-6cb631fc064f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 62, | |
"timestamp": 1629375858836, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 346, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8539278149887154", | |
"createdAt": 1629375769182, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "79a0d6df-8ce4-4cc2-8d30-2d2002ffba65", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 206, | |
"threadCounter": 1, | |
"timestamp": 1629368437153, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 593, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5809421399934246", | |
"createdAt": 1629368245736, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e6d42e24-f0d6-4ab2-9224-e3a03db5b6f2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 24, | |
"timestamp": 1629368556511, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 685, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3840361808716781", | |
"createdAt": 1629368250909, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a888d407-91ec-4aac-a216-fc06f3231ea5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 229, | |
"threadCounter": 1, | |
"timestamp": 1629368586389, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 710, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07174432107205397", | |
"createdAt": 1629368252196, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b2f0a331-5e36-4644-8926-9fa74c68f569", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 20, | |
"timestamp": 1629368611939, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 283, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5946387643740473", | |
"createdAt": 1629368238366, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0fbfd568-f8ca-408d-b562-c3a0727e648d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 11, | |
"timestamp": 1629375746910, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 110, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.629539284047774", | |
"createdAt": 1629375746797, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9c420d6e-40c2-4a85-b8ee-af275f570db8", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 107, | |
"timestamp": 1629375890893, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 391, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.48577312735627554", | |
"createdAt": 1629375769491, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "83042042-5d13-4dc9-b428-2f44dbb26410", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 65, | |
"timestamp": 1629376225738, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 712, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20933904720805852", | |
"createdAt": 1629375771753, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1f3e9227-69aa-4d5c-b5ae-23ec0fbd9153", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 62, | |
"threadCounter": 4, | |
"timestamp": 1629375755269, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 144, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3119727372140476", | |
"createdAt": 1629375748843, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d4be8cf4-5e5e-409f-affe-80858ac2803f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 144, | |
"timestamp": 1629375920686, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 428, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5378608736207229", | |
"createdAt": 1629375769721, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4f774afb-b900-4379-95b5-d46495a071b1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 16, | |
"timestamp": 1629375777587, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 171, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8425998995354466", | |
"createdAt": 1629375767947, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b5f6a4d4-4f50-4600-a9bf-0ae7cee3f291", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 51, | |
"timestamp": 1629375786738, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 198, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.019635241401831927", | |
"createdAt": 1629375768139, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fd763b4e-b4e9-423d-a497-b6c4803acced", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 9, | |
"timestamp": 1629375794029, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 216, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7533621845356192", | |
"createdAt": 1629375768295, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "def6aa4c-0e98-4602-a518-eda4bcaeea44", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 25, | |
"timestamp": 1629375800419, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 232, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.38613990832665934", | |
"createdAt": 1629375768424, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "86cfed7f-3e82-44cc-a0c7-3a79be33c232", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 174, | |
"timestamp": 1629375943711, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 458, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.64168429809701", | |
"createdAt": 1629375769888, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "306d8a0c-a812-4362-b4d1-3664a50fa3bb", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 137, | |
"threadCounter": 5, | |
"timestamp": 1629375805753, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 243, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33735660047518257", | |
"createdAt": 1629375768480, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e87be81-1bb8-49e7-94c7-c0d086214144", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 197, | |
"timestamp": 1629375965257, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 481, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5480731187696275", | |
"createdAt": 1629375770047, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "19c5f769-edc6-4ef1-9058-dde420b349f8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 23, | |
"timestamp": 1629368556015, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 261, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.034876585700036045", | |
"createdAt": 1629368237173, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "590db233-fbd9-4d70-bfd8-ab740bcda733", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 238, | |
"threadCounter": 1, | |
"timestamp": 1629368587587, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 711, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7991073912819556", | |
"createdAt": 1629368252247, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fca64d7d-c3d2-41c1-b8e8-b3daf3a60f6c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 125, | |
"timestamp": 1629383072384, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 140, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40726976804713333", | |
"createdAt": 1629383070166, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fc141bbd-b78e-421a-b50b-5e49362658b4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 89, | |
"threadCounter": 1, | |
"timestamp": 1629368438440, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 594, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19584586548008998", | |
"createdAt": 1629368245839, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bf0b8e8e-4a91-4e4d-9820-eb0d6e270f0e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 207, | |
"threadCounter": 1, | |
"timestamp": 1629368438587, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 198, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3673830692159801", | |
"createdAt": 1629368233771, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ad8284cd-5cc4-41d6-a99b-0f06b3188d6d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 145, | |
"threadCounter": 3, | |
"timestamp": 1629368613053, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 730, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13541742686037406", | |
"createdAt": 1629368253407, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4f139d68-8925-4e4d-9125-5fa74d65b84e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 90, | |
"threadCounter": 1, | |
"timestamp": 1629368439463, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 595, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8838560634209651", | |
"createdAt": 1629368245788, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e7ff9a45-7489-44c2-bd25-f8d9931394ea", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 12, | |
"timestamp": 1629375747011, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 111, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.49536991254927676", | |
"createdAt": 1629375746856, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f68f194e-230c-4634-8599-9a4685cb9acb", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 199, | |
"threadCounter": 2, | |
"timestamp": 1629368440350, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 596, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.97229685279679", | |
"createdAt": 1629368245643, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "597c98f2-c2b6-4430-9c26-91b341592b73", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 180, | |
"timestamp": 1629375754922, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 143, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21547187019429392", | |
"createdAt": 1629375749034, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3b40be3f-e1ca-4ade-86bd-1449855e4044", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 91, | |
"threadCounter": 1, | |
"timestamp": 1629368440935, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 199, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.27527854051098266", | |
"createdAt": 1629368233874, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3d0d72fc-6ba9-4a11-94fa-055558b7ca7c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 193, | |
"timestamp": 1629383093121, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 208, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.857254092832455", | |
"createdAt": 1629383070581, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b29e6586-fc9c-4fe0-b2c1-358107918517", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 208, | |
"threadCounter": 1, | |
"timestamp": 1629368441523, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 597, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.032724664975419926", | |
"createdAt": 1629368245891, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c4ece61a-0694-40c0-958d-c63fe484d943", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 17, | |
"timestamp": 1629375778125, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 172, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5834326048451813", | |
"createdAt": 1629375767960, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a104edd2-cc59-4e5c-a2ed-516f8745928e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 1, | |
"timestamp": 1629368442427, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 598, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.29265801122339496", | |
"createdAt": 1629368245994, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3281774d-4dd3-4b4b-abdf-3f9577307fef", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 2, | |
"timestamp": 1629368442568, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 200, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7929920060685893", | |
"createdAt": 1629368233977, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6e5d42c0-3c47-4033-a732-f5256b9ca37d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 66, | |
"timestamp": 1629375861640, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 350, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9289448912527958", | |
"createdAt": 1629375769189, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1990cefa-1a66-44d7-af39-11b0253d4843", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 246, | |
"threadCounter": 3, | |
"timestamp": 1629375787515, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 200, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03219065280998712", | |
"createdAt": 1629375768171, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "da509327-9328-4560-92b0-79b7f18894a3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 25, | |
"timestamp": 1629368556590, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 103, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.94184533357985", | |
"createdAt": 1629368237208, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eb1ed72e-b770-4f41-8760-5e9b68ec16c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 64, | |
"timestamp": 1629375860121, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 348, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.36227916566075513", | |
"createdAt": 1629375769195, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b01cd599-652d-4a2f-9232-f83452d6a88e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 87, | |
"threadCounter": 3, | |
"timestamp": 1629368589173, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 712, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7417445585434841", | |
"createdAt": 1629368252424, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c1d0020b-b232-4ab6-8053-7239efb2617d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 7, | |
"timestamp": 1629368447356, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 601, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2800190723175323", | |
"createdAt": 1629368246045, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "49ba74e3-a657-49a3-b848-38c8a9ba7dfa", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 68, | |
"timestamp": 1629368614665, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 732, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26297001096113504", | |
"createdAt": 1629368253458, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1eaf4c37-eee3-479f-8a5e-5d3929191e58", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 13, | |
"timestamp": 1629375747115, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 112, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6104815724976751", | |
"createdAt": 1629375746908, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "575cb072-56dd-4012-866f-4d2dade9fdcd", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 101, | |
"threadCounter": 3, | |
"timestamp": 1629375767919, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 145, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8273202990819672", | |
"createdAt": 1629375767780, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cbe368fa-169d-47ad-8c6c-29aa95427c03", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 66, | |
"timestamp": 1629376227528, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 713, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6564927437758401", | |
"createdAt": 1629375771759, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7b315a8a-a5a9-4034-85ca-476d640e17a5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 109, | |
"timestamp": 1629375892462, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 393, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4975979102029823", | |
"createdAt": 1629375769497, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7e31becb-b6a4-46c4-8c94-322f540a228d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 19, | |
"timestamp": 1629375778706, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 174, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.02329277601553781", | |
"createdAt": 1629375767966, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4b70390b-f66f-46b1-b4a9-bf687298bf56", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 244, | |
"threadCounter": 3, | |
"timestamp": 1629375787126, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 199, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6864258187494712", | |
"createdAt": 1629375768178, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8b96dbd0-7785-4764-b269-c1d638f3df56", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 142, | |
"timestamp": 1629375919903, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 426, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7458859355444296", | |
"createdAt": 1629375769715, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "78fd44b3-988b-496c-9341-a6002e6ed384", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 12, | |
"timestamp": 1629375794984, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 219, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4843797133508728", | |
"createdAt": 1629375768301, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2093529e-6744-4973-8a81-8ccd26426399", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 176, | |
"timestamp": 1629375945093, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 460, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3374268640926774", | |
"createdAt": 1629375769906, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a96b87ce-17e3-4c7f-b48e-21011bb1c6f4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 26, | |
"timestamp": 1629375800964, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 233, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5670832381696889", | |
"createdAt": 1629375768430, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4b45cb80-9762-4a2a-99ee-3032fb0e4075", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 127, | |
"timestamp": 1629383073098, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 142, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12285431242894995", | |
"createdAt": 1629383070172, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a3b9c90-a4bb-45fe-bf08-4f2b25197d9e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 199, | |
"timestamp": 1629375967776, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 483, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0837985468695358", | |
"createdAt": 1629375770052, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c8270112-2d85-4563-8111-6fc067be01d6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 3, | |
"timestamp": 1629368443718, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 201, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7680915084145337", | |
"createdAt": 1629368233926, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4527dccb-fa87-4f4e-8dad-5a436ddd9ce9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 26, | |
"timestamp": 1629368556701, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 104, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.969258965609116", | |
"createdAt": 1629368237259, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "76969d48-27a2-453f-a56d-4a6d1fecea17", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 67, | |
"timestamp": 1629376228699, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 714, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6260349842372352", | |
"createdAt": 1629375771747, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e39ec2c7-7d2f-43ee-81bb-979e4bb60b0e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 65, | |
"timestamp": 1629375861012, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 349, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8328246677476129", | |
"createdAt": 1629375769201, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "12040f21-2cc7-42d7-861a-886dde883bff", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 250, | |
"threadCounter": 1, | |
"timestamp": 1629368591527, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 714, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07532008002712587", | |
"createdAt": 1629368252476, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fed9ef81-315c-4978-9e15-d5b58070e1d3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 233, | |
"threadCounter": 2, | |
"timestamp": 1629368614093, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 731, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.40159343197843", | |
"createdAt": 1629368253510, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2e227b3b-9c55-4d39-a4cb-ec71eefbed1e", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 14, | |
"timestamp": 1629375747263, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 113, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3876395846484203", | |
"createdAt": 1629375747084, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2fa250d0-5ab7-494a-a217-157a831ad57b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 106, | |
"timestamp": 1629375890508, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 390, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.083883800956711", | |
"createdAt": 1629375769503, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0d7f1d92-7e01-4f6b-819e-d87dd2b714f2", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 145, | |
"timestamp": 1629375921247, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 429, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2109230978134785", | |
"createdAt": 1629375769727, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "93ca8aed-8598-4947-8642-ca341eb155ec", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 175, | |
"timestamp": 1629375944606, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 459, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7994819131895831", | |
"createdAt": 1629375769912, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6266bd2e-4b04-4feb-8e4f-4b22b393069d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 126, | |
"timestamp": 1629383072763, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 141, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8969526197438481", | |
"createdAt": 1629383070145, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2fb8a481-b151-463b-9b27-a9262a334151", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 202, | |
"timestamp": 1629375969821, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 486, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5389945069093426", | |
"createdAt": 1629375770059, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9d51d7b3-e4ff-4ec8-b0d4-a34915bfea3c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 215, | |
"timestamp": 1629375981478, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 499, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4346189377512494", | |
"createdAt": 1629375770249, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "51a13866-8245-4ee5-9fe6-9e43ba25f9c2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 229, | |
"threadCounter": 3, | |
"timestamp": 1629375770282, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 151, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9571853050344745", | |
"createdAt": 1629375767787, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fe3e718b-04c1-4906-8417-f6a4207ddc97", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 227, | |
"timestamp": 1629375991396, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 511, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.49805319860351016", | |
"createdAt": 1629375770321, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "091c9231-0868-4c52-8906-6ce7600879b5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 23, | |
"timestamp": 1629375779829, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 178, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7959909325716668", | |
"createdAt": 1629375767973, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "52672944-efdb-4cc8-9688-c6dad3c691fc", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 233, | |
"timestamp": 1629375997378, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 517, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2614560019561467", | |
"createdAt": 1629375770355, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b551428d-b319-4081-8602-26335d4e52fd", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 235, | |
"timestamp": 1629376000336, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 519, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39078340385431176", | |
"createdAt": 1629375770373, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "47a781ef-b048-471b-b6f7-e5d4334f53ed", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 4, | |
"timestamp": 1629368444140, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 599, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6627353236473926", | |
"createdAt": 1629368245942, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c4a10c39-25b9-41ff-bc38-66c02428cfea", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 27, | |
"timestamp": 1629368556895, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 262, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5029522959613404", | |
"createdAt": 1629368237224, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "368dbd45-3ded-4640-8d8f-a0e519940868", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 49, | |
"timestamp": 1629368589909, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 274, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22953310751019906", | |
"createdAt": 1629368237884, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5bcfdfa2-1199-4eea-be8d-6e6c25b497cd", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 5, | |
"timestamp": 1629368445615, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 202, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5803841429512073", | |
"createdAt": 1629368234029, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cf1444fc-0387-4ade-97f1-3f844d2ad76c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 6, | |
"timestamp": 1629368446053, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 600, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3824246949087319", | |
"createdAt": 1629368246149, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2fec88b6-532c-44d1-9e79-d43fc1db0158", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 149, | |
"threadCounter": 3, | |
"timestamp": 1629368614764, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 126, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7201440830867445", | |
"createdAt": 1629368238394, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c2f3b714-d4da-4d59-8103-be4f23911476", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 8, | |
"timestamp": 1629368447927, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 203, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7524307844147063", | |
"createdAt": 1629368234081, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8c1864c2-430b-4f69-9c23-21255b9368d1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 9, | |
"timestamp": 1629368448382, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 602, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10076734470434945", | |
"createdAt": 1629368246200, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "58640e73-cfb3-4702-9c31-502525ecbfd9", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 15, | |
"timestamp": 1629375747469, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 114, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6011063162399153", | |
"createdAt": 1629375747031, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c0e9927d-9c08-48a3-83f0-f204e1119f26", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 10, | |
"timestamp": 1629368448964, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 204, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23705014820129466", | |
"createdAt": 1629368234132, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ebb3de7d-3485-4066-8633-6a13a96b5090", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 4, | |
"timestamp": 1629375768189, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 146, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7066774439322469", | |
"createdAt": 1629375767793, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c0caec77-d419-4173-8443-05843f410183", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 11, | |
"timestamp": 1629368449854, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 603, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.808791892070838", | |
"createdAt": 1629368246252, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ea9584cc-9179-4069-9b0c-e1fb89019cb4", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 20, | |
"timestamp": 1629375779066, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 175, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7226642581032681", | |
"createdAt": 1629375767986, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0b601b20-80ec-46b7-9246-2695e44b0cb0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 12, | |
"timestamp": 1629368450751, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 604, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9390702079150505", | |
"createdAt": 1629368246303, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5f701d13-9c2e-4208-853f-4a2a606de975", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 67, | |
"timestamp": 1629375862531, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 351, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3584412726103017", | |
"createdAt": 1629375769213, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b8f2cbfc-060d-4898-bff3-36ddc3d4b08c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 13, | |
"timestamp": 1629368451323, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 205, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4852582883700587", | |
"createdAt": 1629368234183, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f599da20-ee98-4984-9335-5fdd8e482065", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 14, | |
"timestamp": 1629368451775, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 605, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.14098011176254732", | |
"createdAt": 1629368246097, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d43dec37-a544-4f74-9675-24d9b225ae49", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 15, | |
"timestamp": 1629368451964, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 206, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12625076919046296", | |
"createdAt": 1629368234234, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "94adcfa6-a258-4944-bcb6-ae025d7f1757", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 16, | |
"timestamp": 1629368452389, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 606, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4624551688351508", | |
"createdAt": 1629368246401, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3c711ccb-995a-4a25-b894-302b3fb456f9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 28, | |
"timestamp": 1629368557405, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 686, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4484766636269747", | |
"createdAt": 1629368251012, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "82f189ee-1736-4cc4-898f-4a9fb97ce64d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 17, | |
"timestamp": 1629368453273, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 607, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3503324800004636", | |
"createdAt": 1629368246452, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "53c5735b-b982-4d17-ac8d-b144369d7027", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 18, | |
"timestamp": 1629368453465, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 207, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2075240290667505", | |
"createdAt": 1629368234286, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "71e2283a-b957-48fb-aa8d-17b156ad5a0f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 244, | |
"threadCounter": 1, | |
"timestamp": 1629368590421, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 713, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.86957285929182", | |
"createdAt": 1629368252527, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5fd8ffd5-d18a-452b-ba6d-857031c0c98d", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 19, | |
"timestamp": 1629368454381, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 608, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23344160327372054", | |
"createdAt": 1629368246503, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "31842053-5be6-458e-a841-14d789e6afd8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 20, | |
"timestamp": 1629368454598, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 208, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.816702909726271", | |
"createdAt": 1629368234336, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fe10cf4c-e9ef-4556-b413-d9fc394d37f9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 21, | |
"timestamp": 1629368455029, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 609, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9857432871706612", | |
"createdAt": 1629368246555, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "82336209-12e3-4435-a40a-869167c12682", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 238, | |
"threadCounter": 2, | |
"timestamp": 1629368614986, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 284, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9982891824145036", | |
"createdAt": 1629368238418, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0ddc1e4f-3f4b-484f-aff0-ddb81703ec75", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 16, | |
"timestamp": 1629375747635, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 115, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7416371386783069", | |
"createdAt": 1629375747215, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a9548296-7394-4af5-9817-64e9b37cde28", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 225, | |
"threadCounter": 4, | |
"timestamp": 1629375768437, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 147, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5727176813574637", | |
"createdAt": 1629375767800, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "caf4aa86-82cd-4281-9bd4-e369ba1758ff", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 22, | |
"timestamp": 1629368456477, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 610, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8801588353612279", | |
"createdAt": 1629368246658, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8867138a-4bb4-4ad4-97c9-b4a7d9c0e2e3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 23, | |
"timestamp": 1629368456624, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 209, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5155984814886664", | |
"createdAt": 1629368234387, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4aaffd9e-c7c0-4d28-b8ca-7312ac778263", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 24, | |
"timestamp": 1629368457244, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 210, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7407025099298403", | |
"createdAt": 1629368234449, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "efccdf2e-094a-4709-a26c-26c516a9816b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 25, | |
"timestamp": 1629368457696, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 611, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6459932294344828", | |
"createdAt": 1629368246606, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "04ae8ebc-fbe7-4e93-b76c-96a7c362c35c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 21, | |
"timestamp": 1629375779377, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 176, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7988664619142986", | |
"createdAt": 1629375767979, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7e01d331-8d0f-4288-8f44-0b5f5accb88b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 26, | |
"timestamp": 1629368458592, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 612, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20382689850008107", | |
"createdAt": 1629368246762, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1ec32647-3ad2-4103-aa00-a6685709021d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 27, | |
"timestamp": 1629368459066, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 613, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.020982685054115713", | |
"createdAt": 1629368246709, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6a2bd784-80bb-4736-b4de-7b9c087d3a0d", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 28, | |
"timestamp": 1629368459272, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 211, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6737166371568563", | |
"createdAt": 1629368234512, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "47b0a5d0-7e8d-4153-8688-cfab24115e1f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 29, | |
"timestamp": 1629368459703, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 614, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7698387491759396", | |
"createdAt": 1629368246883, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "aa1df764-5dd8-4c4e-be4d-4454bfb1ab86", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 68, | |
"timestamp": 1629376230619, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 715, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2726134169735833", | |
"createdAt": 1629375771765, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9fa134c9-b6a7-4dc8-8820-f911578a85f2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 29, | |
"timestamp": 1629368558473, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 687, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2871860835936073", | |
"createdAt": 1629368250961, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a2de0e73-081a-4ddd-9fec-d66ced6992c8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 246, | |
"threadCounter": 1, | |
"timestamp": 1629368590504, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 117, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09995662177798126", | |
"createdAt": 1629368237930, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b8dc1ef9-db60-42c1-a565-f96ad0bf42c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 128, | |
"timestamp": 1629383073341, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 143, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17404059240384484", | |
"createdAt": 1629383070185, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1ca3550c-94ed-44ed-bf4b-e7d68823963c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 30, | |
"timestamp": 1629368461641, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 615, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17413162944967298", | |
"createdAt": 1629368246830, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c8cbaff5-cf11-429f-b419-a62fc3173894", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 31, | |
"timestamp": 1629368461791, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 212, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0666468499639915", | |
"createdAt": 1629368234563, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "025746a0-594e-4a05-8847-3827731df6b9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 50, | |
"timestamp": 1629368616423, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 127, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.788588118974124", | |
"createdAt": 1629368238445, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b565269d-1000-40b0-9d72-d5156776c973", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 17, | |
"timestamp": 1629375747766, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 116, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5699370993367889", | |
"createdAt": 1629375747414, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "27e71800-95b4-401c-affc-95d3ccc7f0ab", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 32, | |
"timestamp": 1629368463153, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 616, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5845611385915171", | |
"createdAt": 1629368246934, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bd815a68-88d8-4c55-84e2-cb1127b2c783", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 4, | |
"timestamp": 1629375768900, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 148, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8042637220066018", | |
"createdAt": 1629375767807, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "90481769-6565-4978-aa14-c6f0f3bb4ebe", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 33, | |
"timestamp": 1629368464486, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 617, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4364766425425113", | |
"createdAt": 1629368247090, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9cba1d44-31b4-4ae1-abef-05fe5568e6ec", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 22, | |
"timestamp": 1629375779674, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 177, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5129046430847589", | |
"createdAt": 1629375767993, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fd9bce64-ebd1-46cf-b7f3-24401717ef33", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 34, | |
"timestamp": 1629368465402, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 618, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4618950763906349", | |
"createdAt": 1629368247038, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4363f91d-7092-4833-9ce6-526cdfe48d5b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 42, | |
"timestamp": 1629375788068, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 201, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.50711723681828", | |
"createdAt": 1629375768184, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "358a7e20-8bef-4604-91ab-dfeae3ff5eb2", | |
"parentCommentId": null | |
}, | |
"eventSize": 395 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 35, | |
"timestamp": 1629368466294, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 619, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28989198248529635", | |
"createdAt": 1629368246985, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "503df7c1-90cd-48a5-91f3-e798274f273d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 36, | |
"timestamp": 1629368466449, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 213, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4929959244272657", | |
"createdAt": 1629368234615, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d26e63d4-7634-44cb-9ec6-efd9a7fdda25", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 68, | |
"timestamp": 1629375863490, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 352, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22219096825354112", | |
"createdAt": 1629375769219, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "abb23508-f6cd-4b77-9861-4219ace82651", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 37, | |
"timestamp": 1629368467235, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 214, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7218210256163565", | |
"createdAt": 1629368234666, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "778597b3-bcf2-48e5-86cb-73e2eba29fae", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 69, | |
"timestamp": 1629376232458, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 716, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7906203545080145", | |
"createdAt": 1629375771777, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "72e96820-26b8-43a0-aedb-628f1efa7db1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 38, | |
"timestamp": 1629368467828, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 620, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43435555605631526", | |
"createdAt": 1629368247141, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fe85aa4d-fb3a-4e3a-bd8a-f852c8a7bde8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 36, | |
"timestamp": 1629368563327, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 690, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6972604493687967", | |
"createdAt": 1629368251063, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0c0b997b-3922-4749-a4e3-8746be801592", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 130, | |
"timestamp": 1629383073837, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 145, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3003697230023893", | |
"createdAt": 1629383070191, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fe5cac95-af82-43aa-8196-aedee985300a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 39, | |
"timestamp": 1629368468866, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 215, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18282636650093687", | |
"createdAt": 1629368234718, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4faaffcf-1e8c-4514-97d7-6ea2b21677a8", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 40, | |
"timestamp": 1629368469307, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 621, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9462415691642103", | |
"createdAt": 1629368247335, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7ab674cc-1764-473c-8f02-45d85adcc760", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 110, | |
"timestamp": 1629375892818, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 394, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9018927859854443", | |
"createdAt": 1629375769509, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e081a624-26d0-4add-bf58-239781760a10", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 41, | |
"timestamp": 1629368470254, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 622, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2469500502523574", | |
"createdAt": 1629368247284, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "87b4fee9-5c6a-44aa-9927-40ee0ca2c73f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 95, | |
"threadCounter": 2, | |
"timestamp": 1629368592792, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 715, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41782609162658735", | |
"createdAt": 1629368252578, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1f35d3a5-a208-4a94-86fa-f59371e55b77", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 42, | |
"timestamp": 1629368471174, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 623, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.17525569772448757", | |
"createdAt": 1629368247233, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3b74e6bd-5afa-432c-a857-8c1015bb6fda", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 43, | |
"timestamp": 1629368471341, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 216, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.34554260881517773", | |
"createdAt": 1629368234770, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8d22996c-244d-400c-ae70-1aaecd98ce87", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 195, | |
"timestamp": 1629383094048, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 210, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7156897822425472", | |
"createdAt": 1629383070587, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0055712d-2e22-446c-b5a1-fcbf91a068d0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 44, | |
"timestamp": 1629368472289, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 624, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5241031272566878", | |
"createdAt": 1629368247386, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9ce89056-9ace-4b4a-b178-f3db72772a18", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 45, | |
"timestamp": 1629368472444, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 217, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16062168717886105", | |
"createdAt": 1629368234822, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1d8467b4-d3fc-4b2f-a2f8-363b094fabdf", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 244, | |
"threadCounter": 2, | |
"timestamp": 1629368616626, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 285, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9051803644022443", | |
"createdAt": 1629368238472, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "415c4d41-b72d-4312-8fd5-33aeb7e891ab", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 244, | |
"timestamp": 1629383114454, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 259, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2009841596809202", | |
"createdAt": 1629383071108, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cc2b8c58-fcb8-46d0-a7dc-ea7f51277ada", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 30, | |
"timestamp": 1629368560013, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 688, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6607766029970041", | |
"createdAt": 1629368251115, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84f1e1b3-e7ce-4dcb-b932-40f2cabce243", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 251, | |
"threadCounter": 1, | |
"timestamp": 1629368592253, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 275, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20500225043266418", | |
"createdAt": 1629368237935, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6820a644-6e35-4f75-bf97-eaf7896cb7f0", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 51, | |
"timestamp": 1629368477485, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 628, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6620150426340897", | |
"createdAt": 1629368247490, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0c3f5f2e-94c7-4b59-93b0-e6731d02cd9c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 69, | |
"timestamp": 1629375864696, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 353, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9576165751892242", | |
"createdAt": 1629375769231, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6a3d4794-226f-4f42-a003-4b888d140e3c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 246, | |
"threadCounter": 2, | |
"timestamp": 1629368617258, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 734, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3036386908208889", | |
"createdAt": 1629368253612, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a5823246-6f4d-4fc5-8a09-6fd6c7e2ea1b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 108, | |
"timestamp": 1629375891815, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 392, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1782660094381544", | |
"createdAt": 1629375769515, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a611c8e-1cec-444f-9c7e-41bf7b85a3a4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 18, | |
"timestamp": 1629375748160, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 117, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9001173074901441", | |
"createdAt": 1629375747469, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9fb0bfb7-81e6-4bc4-884b-b2fb0cfcc873", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 146, | |
"timestamp": 1629375922041, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 430, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5727197334480666", | |
"createdAt": 1629375769739, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "133bcfee-e045-4eea-ae0d-383ef0860caa", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 177, | |
"timestamp": 1629375945580, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 461, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9490389571895117", | |
"createdAt": 1629375769917, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f7688342-6417-4211-bbe5-29055f3dc4c2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 200, | |
"timestamp": 1629375968953, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 484, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.057351759646628864", | |
"createdAt": 1629375770065, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dbd738fa-cdbe-4296-a99e-412db8e15e76", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 218, | |
"timestamp": 1629375983728, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 502, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9845961581210899", | |
"createdAt": 1629375770255, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "26534e4a-72e6-40ff-a25e-283dace2ec7a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 70, | |
"threadCounter": 5, | |
"timestamp": 1629375770802, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 152, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8798819153630849", | |
"createdAt": 1629375767813, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ae4ffdf-0ebd-4d66-896f-36ac89b2fc90", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 24, | |
"timestamp": 1629375780025, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 179, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8329545029625024", | |
"createdAt": 1629375768006, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "666b5916-5909-46a5-9dc1-55fc17a6c762", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 228, | |
"timestamp": 1629375991868, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 512, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18015589858295367", | |
"createdAt": 1629375770326, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "aa56ec37-2129-4f74-b665-be241957e659", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 38, | |
"timestamp": 1629375788556, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 203, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6876572821143789", | |
"createdAt": 1629375768190, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4f6de8d7-413e-4ce4-b2d0-8df9ec80b9df", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 13, | |
"timestamp": 1629375795208, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 220, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.460992612449854", | |
"createdAt": 1629375768307, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d9d9ebf3-0036-4eaa-8371-2468ae2bd6c5", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 70, | |
"timestamp": 1629376233631, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 717, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7222599392549207", | |
"createdAt": 1629375771771, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "238106e4-98de-4b6c-831e-908a0d79b2c6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 46, | |
"timestamp": 1629368473654, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 218, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3104282719374025", | |
"createdAt": 1629368234873, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "efffef62-47f7-4904-8291-d6817e1d1c30", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 31, | |
"timestamp": 1629368560594, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 105, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6966005447513937", | |
"createdAt": 1629368237310, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b26c6476-76e4-4345-a8f8-bfa872120fda", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 19, | |
"threadCounter": 2, | |
"timestamp": 1629368592885, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 118, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30684695312568544", | |
"createdAt": 1629368237982, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5d7be0e5-45bd-49e7-8474-77b364c08643", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 87, | |
"threadCounter": 4, | |
"timestamp": 1629368616319, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 733, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.034737045729575144", | |
"createdAt": 1629368253561, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "18ee5d2c-16a0-4227-b30a-736992e727f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 129, | |
"timestamp": 1629383073703, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 144, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9218592269859026", | |
"createdAt": 1629383070197, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e5dcdc13-2795-4876-a922-086ff967be81", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 19, | |
"timestamp": 1629375748398, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 118, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13257082246934593", | |
"createdAt": 1629375747361, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9e979386-c687-4643-a22e-4ccd37e5dcbc", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 71, | |
"timestamp": 1629376235442, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 718, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4762765009802531", | |
"createdAt": 1629375771789, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "81b78836-5e69-491d-b719-ac138453ca85", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 102, | |
"threadCounter": 3, | |
"timestamp": 1629375769373, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 149, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23671782975288613", | |
"createdAt": 1629375767819, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2b9f481e-968e-4ad8-903b-ca31917715c2", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 26, | |
"timestamp": 1629375780486, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 181, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6102441126198237", | |
"createdAt": 1629375767999, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "81c94f60-4568-4c59-8187-e702def18b3e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 250, | |
"threadCounter": 3, | |
"timestamp": 1629375788394, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 202, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23705801170242746", | |
"createdAt": 1629375768206, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "656acdff-7c3d-4db0-9528-7838675ea13f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 71, | |
"timestamp": 1629375866763, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 355, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7516112542746781", | |
"createdAt": 1629375769225, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a27c0a0f-2ef4-4984-8d6a-16aba69007c0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 111, | |
"timestamp": 1629375893252, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 395, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12056770865400201", | |
"createdAt": 1629375769521, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "abd4b431-26b9-424c-9369-fb574d94a2ad", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 16, | |
"timestamp": 1629375796389, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 223, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18495513411109743", | |
"createdAt": 1629375768313, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4aa50fe0-f572-49e7-9c0b-3577eda0f171", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 27, | |
"timestamp": 1629375801371, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 234, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20613540319270163", | |
"createdAt": 1629375768437, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "298ce51d-f208-4836-804c-79cc3a82eee6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 244, | |
"threadCounter": 4, | |
"timestamp": 1629375805538, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 242, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5782631463926358", | |
"createdAt": 1629375768494, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6fc6bfaa-9216-424d-8c6d-ae130be50707", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 196, | |
"timestamp": 1629383094458, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 211, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42078325833617125", | |
"createdAt": 1629383070593, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d7b916de-8d96-4e38-8087-b0efd472083b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 147, | |
"timestamp": 1629375923436, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 431, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6067530481776293", | |
"createdAt": 1629375769751, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3224902a-b9e6-46f1-9976-f34cef720572", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 144, | |
"threadCounter": 9, | |
"timestamp": 1629375807794, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 248, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.850539247183848", | |
"createdAt": 1629375768520, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "61d9fe9b-bcc9-4b4f-a41c-5d8979eda52f", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 47, | |
"timestamp": 1629368474092, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 625, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8469819556415795", | |
"createdAt": 1629368247438, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0299eb8a-c5f3-4b79-b2cc-c8ff6fd8cad9", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 131, | |
"timestamp": 1629383074083, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 146, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3774871834445134", | |
"createdAt": 1629383070178, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "97d9695b-b7d7-4bf8-b3cf-c749d3fae0ed", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 48, | |
"timestamp": 1629368475167, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 219, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18894064338454775", | |
"createdAt": 1629368234924, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7413efb8-c0d7-494c-9c3e-9394398a5a1c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 49, | |
"timestamp": 1629368475612, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 626, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20898039836336602", | |
"createdAt": 1629368247596, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1af19ba7-b3fa-4e4c-b16d-5b976934b66a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 34, | |
"timestamp": 1629368562631, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 106, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18458962119204958", | |
"createdAt": 1629368237362, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e2d7df53-95dd-4c8a-ad41-be4fda012ef5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 50, | |
"timestamp": 1629368477015, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 627, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39077792396272126", | |
"createdAt": 1629368247541, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "72e4116d-2424-410c-963d-4258e507fc14", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 52, | |
"timestamp": 1629368477708, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 220, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9228171836275563", | |
"createdAt": 1629368234976, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7a44b80d-49c9-415e-9c5c-578916bda825", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 53, | |
"timestamp": 1629368478156, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 629, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19538898702663055", | |
"createdAt": 1629368247647, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9b4125e0-dba4-47e4-b7e6-75f162ef9ffd", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 197, | |
"timestamp": 1629383095018, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 212, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6752634438153093", | |
"createdAt": 1629383070599, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9fc598c6-ac9a-4fba-8c6a-76beaabb91a7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 199, | |
"threadCounter": 4, | |
"timestamp": 1629368595793, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 717, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.05560281161350222", | |
"createdAt": 1629368252630, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d57af735-1f50-47e5-a62a-6c2c440247bd", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 250, | |
"threadCounter": 2, | |
"timestamp": 1629368618363, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 735, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7148579224591187", | |
"createdAt": 1629368253722, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "66ae5329-df31-4fad-a7a9-afb5d38cfda8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 54, | |
"timestamp": 1629368479950, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 630, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7076532099725801", | |
"createdAt": 1629368247802, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5bd449d8-64b7-4d15-8590-830697812509", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 55, | |
"timestamp": 1629368480132, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 221, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5023454750136218", | |
"createdAt": 1629368235183, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eb0a216b-b503-468c-b57d-7dae258a611f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 56, | |
"timestamp": 1629368480591, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 631, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2504865922291084", | |
"createdAt": 1629368247751, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "941a020e-dd1b-40a9-b807-40d0dafc7752", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 75, | |
"timestamp": 1629376242238, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 722, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6772487241196292", | |
"createdAt": 1629375771783, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "24573dd8-3bb6-4279-b0a3-d8219ee3a846", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 245, | |
"timestamp": 1629383114867, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 260, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30622757724405925", | |
"createdAt": 1629383071114, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b9cae8da-19c4-41c0-8c3c-fc5385299641", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 20, | |
"timestamp": 1629375748629, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 119, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8511576991560161", | |
"createdAt": 1629375747309, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "18085ec7-8d69-4027-bd24-791d20cacc35", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 57, | |
"timestamp": 1629368481855, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 632, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7236840475014564", | |
"createdAt": 1629368247854, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a069fcb8-e740-4098-8e9e-414da72725b2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 32, | |
"timestamp": 1629368560855, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 263, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.404786924996401", | |
"createdAt": 1629368237277, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f2fc9068-0d7c-4a45-9cc5-e53d92a145d9", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 89, | |
"threadCounter": 3, | |
"timestamp": 1629368593985, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 716, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0593053659515852", | |
"createdAt": 1629368252736, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0af6f999-641b-46c2-a42a-0d4416d04b65", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 70, | |
"timestamp": 1629375865859, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 354, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6302716126736285", | |
"createdAt": 1629375769207, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "55805c2f-8cad-4b06-a808-ffbe8e1c379b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 95, | |
"threadCounter": 3, | |
"timestamp": 1629368619676, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 736, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4882392946861833", | |
"createdAt": 1629368253781, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "133e6ca1-b44b-4cda-9d64-37b0fded86ef", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 132, | |
"timestamp": 1629383074216, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 147, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.609698503503571", | |
"createdAt": 1629383070203, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "3023100f-01d8-4725-b609-5e74b792302e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 22, | |
"timestamp": 1629375748984, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 121, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4284306054497662", | |
"createdAt": 1629375747577, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a6583ad0-da70-4b04-b66e-1e7bc0a2e19b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 112, | |
"timestamp": 1629375894518, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 396, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5353123374440515", | |
"createdAt": 1629375769533, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "fe427550-d39c-4970-9d0d-6977f7b0dc7e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 72, | |
"timestamp": 1629376237332, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 719, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.23699324629392127", | |
"createdAt": 1629375771795, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4c8d2d42-79ba-400b-9c64-45fcd7d971ef", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 148, | |
"timestamp": 1629375924508, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 432, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3549479916653927", | |
"createdAt": 1629375769745, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1b3208c4-3dbc-4229-878c-28ec4505072f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 145, | |
"threadCounter": 4, | |
"timestamp": 1629375771530, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 155, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06016452757350199", | |
"createdAt": 1629375767825, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "895dca24-5652-44ee-919b-d5f265f5635d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 25, | |
"timestamp": 1629375780297, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 180, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7683337057242327", | |
"createdAt": 1629375768012, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cc29d266-2f4f-4761-8971-c6ee5eafd90e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 178, | |
"timestamp": 1629375946437, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 462, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5240488407620348", | |
"createdAt": 1629375769923, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "19c49d7b-0509-45ff-a466-58e1dc4ee8a2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 95, | |
"threadCounter": 4, | |
"timestamp": 1629375789454, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 205, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5552649811737013", | |
"createdAt": 1629375768200, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0088b2f6-1e09-4c5a-9f3d-60592f2a3ef2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 14, | |
"timestamp": 1629375795581, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 221, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6443629713498051", | |
"createdAt": 1629375768356, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f4357dab-bc4c-4e85-a370-7e804a1bac79", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 201, | |
"timestamp": 1629375969373, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 485, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43251025266457344", | |
"createdAt": 1629375770041, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "251455eb-66fe-4290-b781-e54cf0ca17a4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 28, | |
"timestamp": 1629375801943, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 235, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.25884518318128036", | |
"createdAt": 1629375768412, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "51838052-617d-43be-8d9c-0dca76fa53f5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 144, | |
"threadCounter": 5, | |
"timestamp": 1629375806129, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 244, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19525636233339294", | |
"createdAt": 1629375768501, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "75573301-cccd-41fc-9cb3-8ae404264327", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 58, | |
"timestamp": 1629368481991, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 222, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19397406486937185", | |
"createdAt": 1629368235131, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ce196d87-e03b-47c5-889f-2129a57dd057", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 133, | |
"timestamp": 1629383074400, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 148, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8566235255431237", | |
"createdAt": 1629383070209, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d9e02efe-b5b3-44b5-8968-85731ef153e5", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 35, | |
"timestamp": 1629368562823, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 264, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2416062683679958", | |
"createdAt": 1629368237328, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "651a257f-6284-47e1-8a57-c40b0eb036d3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 72, | |
"timestamp": 1629375867381, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 356, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5292286295781928", | |
"createdAt": 1629375769290, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "98cb17e8-037a-4b41-b6ce-e6f8123851d2", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 137, | |
"threadCounter": 3, | |
"timestamp": 1629368596892, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 718, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0899169250014279", | |
"createdAt": 1629368252787, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "195a3df1-5035-459d-836b-69f337c7e053", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 251, | |
"threadCounter": 2, | |
"timestamp": 1629368619159, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 286, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7918445381183398", | |
"createdAt": 1629368238575, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c2a399af-2d46-4685-b806-f5c223c9f912", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 21, | |
"timestamp": 1629375748847, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 120, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15395417819450263", | |
"createdAt": 1629375747629, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "46d9b68a-8358-4f41-a883-b9217f38f295", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 138, | |
"threadCounter": 4, | |
"timestamp": 1629375769882, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 150, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.900517225997473", | |
"createdAt": 1629375767831, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f0a63887-3c7e-4a65-a462-07467e1b8c60", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 27, | |
"timestamp": 1629375780711, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 182, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5334306593000132", | |
"createdAt": 1629375768019, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d769dd62-6022-4da8-b851-9633076a1bc3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 251, | |
"threadCounter": 3, | |
"timestamp": 1629375788945, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 204, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.41195766225417985", | |
"createdAt": 1629375768212, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6e0cd341-eb9f-48a1-8b23-669323dcf520", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 74, | |
"timestamp": 1629376240969, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 721, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9956768100259342", | |
"createdAt": 1629375771801, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7f801fbe-f6cc-4024-bc45-878704824ad3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 198, | |
"timestamp": 1629383095574, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 213, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28778194288705117", | |
"createdAt": 1629383070604, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4445e2ff-9c99-4a67-bae6-7ceba1a9087a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 116, | |
"timestamp": 1629375897855, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 400, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9054517487919759", | |
"createdAt": 1629375769527, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bafb5f76-2d38-4cb4-9a8e-ce4a5c9ab094", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 20, | |
"timestamp": 1629375798198, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 227, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.362824067831674", | |
"createdAt": 1629375768362, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "92d7f784-bf2c-49eb-9d75-95a529e9c584", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 246, | |
"timestamp": 1629383115436, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 261, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.025493423315946062", | |
"createdAt": 1629383071126, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84872c8d-0a5f-4c66-90fb-7f5b2fee5834", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 30, | |
"timestamp": 1629375803236, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 237, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8461255461959266", | |
"createdAt": 1629375768442, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7c7226c1-9fed-414f-a907-2703fab0d50d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 33, | |
"timestamp": 1629368561526, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 689, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9885666397597485", | |
"createdAt": 1629368251217, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bf19c13f-657f-4296-ad48-1f4dadcb53fd", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 2, | |
"timestamp": 1629368595089, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 119, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16218135197615324", | |
"createdAt": 1629368238034, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2876cb55-b871-47c2-b1db-393652b96e29", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 61, | |
"timestamp": 1629368484245, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 224, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9399873394347966", | |
"createdAt": 1629368235028, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0fc33d6a-07c5-43a2-9328-b12cc1d0f465", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 73, | |
"timestamp": 1629376239153, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 720, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1955016012854408", | |
"createdAt": 1629375771807, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a998c29d-e8bb-4577-af36-d48858f69ca0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 73, | |
"timestamp": 1629375868330, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 357, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07024995809681667", | |
"createdAt": 1629375769296, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2102c8ce-3f5b-434b-bee3-c8652ce65c47", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 137, | |
"threadCounter": 4, | |
"timestamp": 1629368625745, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 739, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.0701990841542457", | |
"createdAt": 1629368253885, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "92c93fd1-6aa0-41d3-a93e-5851a4b65b7a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 136, | |
"timestamp": 1629383074989, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 151, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4988874700343692", | |
"createdAt": 1629383070217, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "00dc5013-59c6-4638-95a9-0a6ce1bdea9d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 23, | |
"timestamp": 1629375749322, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 122, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9034579112777181", | |
"createdAt": 1629375747732, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bb6261ec-bdb2-460c-b822-051ed86e193f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 114, | |
"timestamp": 1629375896227, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 398, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4035770796062006", | |
"createdAt": 1629375769539, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9900cc97-606f-45ca-8dac-749722937fdb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 100, | |
"timestamp": 1629376375936, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 747, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7021383924103878", | |
"createdAt": 1629375847108, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1ef18555-fa05-422a-bd33-bd782b99fd89", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 141, | |
"threadCounter": 21, | |
"timestamp": 1629375771071, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 153, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.661408783433712", | |
"createdAt": 1629375767838, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8a0beeac-aa0f-409f-991c-30b825fb495c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 149, | |
"timestamp": 1629375925233, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 433, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21399477677047196", | |
"createdAt": 1629375769757, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "abb6dcb6-bb27-4faa-b4b5-f565ab9ae976", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 28, | |
"timestamp": 1629375781165, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 183, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6593506337968268", | |
"createdAt": 1629375768032, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c46b2315-70b6-4dac-873f-84e593a39c4f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 179, | |
"timestamp": 1629375946905, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 463, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.38755248794703967", | |
"createdAt": 1629375769929, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "611504c3-480c-47e5-869d-954d477c19b1", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 19, | |
"threadCounter": 4, | |
"timestamp": 1629375789671, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 206, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5585764305921369", | |
"createdAt": 1629375768219, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "86321411-ff2e-4a22-ab4a-e3258514e660", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 15, | |
"timestamp": 1629375796165, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 222, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8436660814916384", | |
"createdAt": 1629375768368, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b890208e-21a4-4616-b086-8cbb52653df6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 203, | |
"timestamp": 1629375970330, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 487, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.15819652560720565", | |
"createdAt": 1629375770077, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "21a481f2-8e3f-4d0e-8402-e36776003c5c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 217, | |
"timestamp": 1629375983182, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 501, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6901566259543486", | |
"createdAt": 1629375770261, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4a797c42-05cc-4c47-a721-d169fdf30f01", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 74, | |
"timestamp": 1629375868948, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 358, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4863123892327177", | |
"createdAt": 1629375769303, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "df055667-b716-4eea-b99a-c4749fc80a1e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 113, | |
"timestamp": 1629375895195, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 397, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4815692504033421", | |
"createdAt": 1629375769546, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2baf44ea-fca1-4c24-861f-73a548b209da", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 60, | |
"timestamp": 1629368483408, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 223, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8171235409888916", | |
"createdAt": 1629368235080, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5ecc625b-657b-4062-9a4a-eec148c34c6a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 37, | |
"timestamp": 1629368564378, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 691, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21608004413287007", | |
"createdAt": 1629368251166, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b18ec5ff-3fff-4f3a-a577-ca7f38d27419", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 62, | |
"timestamp": 1629368484699, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 634, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.34732346540933734", | |
"createdAt": 1629368247905, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4bc213d3-cbd3-4736-90d0-72f1a0b2fc06", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 214, | |
"threadCounter": 2, | |
"timestamp": 1629368595282, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 276, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.24724560176141674", | |
"createdAt": 1629368237986, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d0a1e172-6533-471c-8ce2-e269e79db1ba", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 19, | |
"threadCounter": 3, | |
"timestamp": 1629368620310, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 128, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3904184640312742", | |
"createdAt": 1629368238549, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9011dd1e-d5f0-4d4d-9c96-2e834b6d341a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 134, | |
"timestamp": 1629383074659, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 149, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4254111245980525", | |
"createdAt": 1629383070223, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4603c3e8-9eae-457d-bc7c-a32edd1331a7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 25, | |
"timestamp": 1629375749741, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 124, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.30647265798338186", | |
"createdAt": 1629375747681, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "66cb799b-d2df-4755-946c-c002023a5d25", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 220, | |
"threadCounter": 4, | |
"timestamp": 1629375771357, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 154, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6895087242828752", | |
"createdAt": 1629375767844, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "20b01fc4-c948-4ad3-935b-b614222c9406", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 151, | |
"timestamp": 1629375926770, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 435, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06927184208015125", | |
"createdAt": 1629375769733, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "67840b5b-f51a-46a0-8684-5efb75baf9fd", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 29, | |
"timestamp": 1629375781360, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 184, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5681993562522177", | |
"createdAt": 1629375768025, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c9ccd372-adfd-4448-bc21-dcd76a9f6c3f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 76, | |
"timestamp": 1629376243564, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 723, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.26992821160103897", | |
"createdAt": 1629375771813, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "04b4ce8f-947b-4a06-8c6e-8076b49bc1fc", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 87, | |
"threadCounter": 6, | |
"timestamp": 1629375790346, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 207, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.22443336923993273", | |
"createdAt": 1629375768231, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8a56eb09-cac6-47a8-826c-e8a51c77c2c4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 181, | |
"timestamp": 1629375948671, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 465, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6018588156270482", | |
"createdAt": 1629375769935, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f78f8b60-1d07-474d-9cb4-0ac5b03f775c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 18, | |
"timestamp": 1629375797291, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 225, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.111723882551236", | |
"createdAt": 1629375768374, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6734d93d-8056-4aa3-a0ab-7b5d1572a7dc", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 29, | |
"timestamp": 1629375802662, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 236, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11322164399759393", | |
"createdAt": 1629375768454, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a51c9f2f-b469-4e29-9ecf-e5c20d0432d1", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 59, | |
"timestamp": 1629368483250, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 633, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.791207105062034", | |
"createdAt": 1629368247700, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "35116825-7f25-4e39-8f4b-f0155bb8673a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 63, | |
"timestamp": 1629368484835, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 104, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8411560929116731", | |
"createdAt": 1629368235196, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "952d96e7-3c39-4733-bf17-183387764d4d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 64, | |
"timestamp": 1629368485306, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 635, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21439768889783728", | |
"createdAt": 1629368247957, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e0bf3ea-c5ad-479b-b9ff-3148dac9bd53", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 75, | |
"timestamp": 1629375869562, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 359, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4449773810848905", | |
"createdAt": 1629375769308, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f0948040-a0eb-4801-ae70-4d493da63bcb", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 38, | |
"timestamp": 1629368565483, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 692, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4430061406739155", | |
"createdAt": 1629368251268, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f5f0f57a-ecb7-4fe8-afca-9eed93e5e357", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 65, | |
"timestamp": 1629368486361, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 225, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6979820170507861", | |
"createdAt": 1629368235234, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "17ab7619-1d98-4667-bf57-794b85cbca32", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 135, | |
"timestamp": 1629383074810, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 150, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.667379199207118", | |
"createdAt": 1629383070229, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "510642b7-9551-40d6-b13c-edd029b8583c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 222, | |
"threadCounter": 2, | |
"timestamp": 1629368598239, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 719, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16184535564405045", | |
"createdAt": 1629368252842, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "544c81a8-f0ce-410e-b35b-8c2454bde719", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 66, | |
"timestamp": 1629368487484, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 636, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9019552884366152", | |
"createdAt": 1629368248008, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "60b5c05e-9ea8-49c2-aff3-ebd9522ea5ac", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 115, | |
"timestamp": 1629375896921, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 399, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.08643986731934528", | |
"createdAt": 1629375769551, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b12fdd7c-d65d-4e76-a17c-b6509273e9b4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 1, | |
"timestamp": 1629368488098, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 226, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.38352519036803234", | |
"createdAt": 1629368235285, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1e8581fb-d011-47d4-bb92-ef8c7173b12d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 89, | |
"threadCounter": 4, | |
"timestamp": 1629368621803, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 129, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8324935553924704", | |
"createdAt": 1629368238498, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dee0de7c-d136-4b8f-93bd-9b1298de1de7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 150, | |
"timestamp": 1629375926016, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 434, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.01910963147422673", | |
"createdAt": 1629375769763, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2a5a0202-9b9e-416a-a66d-1f8b51beda6c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 2, | |
"timestamp": 1629368489185, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 637, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7107235990900237", | |
"createdAt": 1629368248189, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1c0645b1-b0dd-4eb7-bfd9-3449fa93ac42", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 180, | |
"timestamp": 1629375947778, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 464, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9994834319360831", | |
"createdAt": 1629375769946, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "014ab2c7-0690-4ad5-a78c-a1f5dc1a84ac", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 27, | |
"timestamp": 1629375750173, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 126, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4204943454643033", | |
"createdAt": 1629375747801, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "13bb677e-bb19-4d7e-98d7-5f49ab0c6a04", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 3, | |
"timestamp": 1629368490271, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 227, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.33758425767832645", | |
"createdAt": 1629368235387, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "64a8c4fe-13a1-41d4-85a4-7804c078a19b", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 204, | |
"timestamp": 1629375971253, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 488, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6511768883933111", | |
"createdAt": 1629375770083, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a7b20921-47e2-49a5-b55a-6fde0282f663", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 4, | |
"timestamp": 1629368490893, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 638, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8792521790593634", | |
"createdAt": 1629368248137, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "abfd871a-8816-4c10-a019-d68ac6b649b4", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 5, | |
"timestamp": 1629368491104, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 228, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2661562722762264", | |
"createdAt": 1629368235336, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7310bc79-1ca7-4d27-9f59-e8a85bf050af", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 39, | |
"timestamp": 1629368565673, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 265, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4290574809463885", | |
"createdAt": 1629368237411, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "10c00b98-3af8-4c7f-8553-1e73e2a56843", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 144, | |
"threadCounter": 3, | |
"timestamp": 1629368596985, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 120, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3560505391784008", | |
"createdAt": 1629368238085, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "887cc0d5-e838-48bf-b7aa-3fd1918813b6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 77, | |
"timestamp": 1629376244829, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 724, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28047808132294694", | |
"createdAt": 1629375771819, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "579c17b7-adfd-4de3-864b-2189b3619435", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 3, | |
"timestamp": 1629368622009, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 287, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9475177145974106", | |
"createdAt": 1629368238523, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "87ca49d2-26d4-41ef-b6c8-9a341c8e1900", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 24, | |
"timestamp": 1629375749621, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 123, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.28682033156742903", | |
"createdAt": 1629375747853, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "762e4d47-a99e-4503-985b-bc8e280b977e", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 233, | |
"threadCounter": 3, | |
"timestamp": 1629375771846, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 156, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.20503725112226967", | |
"createdAt": 1629375767858, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0f64486b-375c-44ca-8b02-f499a1bb5c5d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 30, | |
"timestamp": 1629375781538, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 185, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6789754774638299", | |
"createdAt": 1629375768038, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cf4a26bc-cd38-481a-9575-a11a9456c101", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 77, | |
"timestamp": 1629375870760, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 361, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4326038026046616", | |
"createdAt": 1629375769314, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c3916312-05ef-4791-91a4-f2496d24ee98", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 117, | |
"timestamp": 1629375898566, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 401, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.12383135597666006", | |
"createdAt": 1629375769557, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2f9716b6-8bc9-4c12-b4f1-d175547ca100", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 152, | |
"timestamp": 1629375927183, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 436, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03157249000657636", | |
"createdAt": 1629375769774, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "82a92aa1-682b-4eaa-8eee-46aec23dbfef", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 89, | |
"threadCounter": 5, | |
"timestamp": 1629375791665, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 210, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8745602552852774", | |
"createdAt": 1629375768238, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "abaf8eb1-b928-4012-92a9-b053d7b4014e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 17, | |
"timestamp": 1629375796929, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 224, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3379232210884673", | |
"createdAt": 1629375768380, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "50be0e80-a77d-4591-8768-14afabb7083f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 137, | |
"timestamp": 1629383075396, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 152, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7528726669596385", | |
"createdAt": 1629383070235, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "06dd48bf-27f9-4940-95df-df17ad1aa46d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 182, | |
"timestamp": 1629375949471, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 466, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11203058619827178", | |
"createdAt": 1629375769941, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7d23caea-39ce-4244-b94a-6c0daf8d84a3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 205, | |
"timestamp": 1629375972909, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 489, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.155107338778801", | |
"createdAt": 1629375770071, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a8728664-1069-4cd8-96d8-d5a578c3504c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 126, | |
"threadCounter": 181, | |
"timestamp": 1629375804971, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 241, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11132362511699834", | |
"createdAt": 1629375768461, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "38309ef9-a12a-4ac2-954f-ae0fb986aacc", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 6, | |
"timestamp": 1629368491621, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 639, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.44624712932961574", | |
"createdAt": 1629368248084, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "40fa138d-49e8-4421-a002-f5e3d435f840", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 40, | |
"timestamp": 1629368565753, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 107, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42567779388739646", | |
"createdAt": 1629368237465, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b86c4157-e47b-4c33-97c2-61323438e3a5", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 217, | |
"threadCounter": 2, | |
"timestamp": 1629368597184, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 277, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5314008257066583", | |
"createdAt": 1629368238038, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "84425961-0439-45b6-9df6-cc00f121a426", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 76, | |
"timestamp": 1629375870426, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 360, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.42393281671924865", | |
"createdAt": 1629375769237, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "47e82aa9-d556-4696-a70a-6e6ccfccfcb4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 214, | |
"threadCounter": 3, | |
"timestamp": 1629368622526, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 737, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6727761519360488", | |
"createdAt": 1629368253937, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9b5c8a92-ab95-4de0-ae60-fd30d122cad0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 7, | |
"timestamp": 1629368493486, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 640, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.855622852648735", | |
"createdAt": 1629368248292, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1104a75f-e7dd-432e-8d25-a7e38a2feb8e", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 26, | |
"timestamp": 1629375749965, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 125, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06280883426565353", | |
"createdAt": 1629375747906, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "06382709-182f-43a2-b321-74a4ecf05857", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 8, | |
"timestamp": 1629368494159, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 229, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3693441010990651", | |
"createdAt": 1629368235500, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d52798b8-f96e-4f10-96a6-c84715f3d710", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 9, | |
"timestamp": 1629368494881, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 230, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7449779137412598", | |
"createdAt": 1629368235552, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b0924c51-de55-4e2b-b60b-ac7fd6e9d07b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 10, | |
"timestamp": 1629368495335, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 641, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9825794144085632", | |
"createdAt": 1629368248240, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5b370904-a5a5-477b-ba54-e9c53f2aee55", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 92, | |
"threadCounter": 69, | |
"timestamp": 1629375772259, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 157, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03331228027498179", | |
"createdAt": 1629375767864, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5bf58c48-21e1-4eb8-9d30-5873a9698f0f", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 31, | |
"timestamp": 1629375781740, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 186, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.927329946188497", | |
"createdAt": 1629375768095, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "49b525e1-8533-48fc-b91b-a83b9ae4f20a", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 11, | |
"timestamp": 1629368496156, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 231, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9775049347820751", | |
"createdAt": 1629368235603, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eb80cf9d-caeb-4bc1-8df5-a3cf4e95b922", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 12, | |
"timestamp": 1629368496674, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 642, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5586606928541791", | |
"createdAt": 1629368248409, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ef387c37-ad6d-46b2-b28b-bdc0fbf8fd3f", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 118, | |
"timestamp": 1629375899598, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 402, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.3026557293554458", | |
"createdAt": 1629375769563, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ffd0e1d7-2c2a-4105-9464-579b240fa189", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 196, | |
"threadCounter": 4, | |
"timestamp": 1629375790713, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 208, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4256346914603938", | |
"createdAt": 1629375768225, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b91d27ad-39a9-4d4d-b2e5-53d5494d8273", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 13, | |
"timestamp": 1629368497876, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 643, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4136567639205011", | |
"createdAt": 1629368248518, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dc70a46a-3068-491b-9d1a-02345ac3dcdf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 19, | |
"timestamp": 1629375797666, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 226, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43010040915027425", | |
"createdAt": 1629375768387, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1ff2729d-f7b7-48d0-bb48-f1b7687e4fbf", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 14, | |
"timestamp": 1629368498544, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 232, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6049915363563328", | |
"createdAt": 1629368235449, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5aa7b484-41ec-4907-9071-68cf02244b0d", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 41, | |
"timestamp": 1629368566251, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 693, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9605317429490534", | |
"createdAt": 1629368251422, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "aac4793e-b4ba-420c-b402-260538416219", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 78, | |
"timestamp": 1629376246027, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 725, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4444147811088358", | |
"createdAt": 1629375771831, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b7e6ec5c-0fb4-496b-8dd4-247675054be6", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 187, | |
"threadCounter": 2, | |
"timestamp": 1629368599321, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 720, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07375599980818925", | |
"createdAt": 1629368252893, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "44e3d735-d3d4-4aa0-82f7-17a8e5a1fb03", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 138, | |
"timestamp": 1629383075666, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 153, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.596687568448052", | |
"createdAt": 1629383070241, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c5cdb58d-c9ec-4b2b-92aa-172b5bacde0d", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 80, | |
"timestamp": 1629375872630, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 364, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19830195786867688", | |
"createdAt": 1629375769320, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "f8a0058b-50a9-46d9-a3b0-b89659e58951", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 144, | |
"threadCounter": 4, | |
"timestamp": 1629368626284, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 740, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.39540862987291414", | |
"createdAt": 1629368253834, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1ee11119-cb88-48a0-914a-67ba2bc7bb6d", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 200, | |
"timestamp": 1629383096574, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 215, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.11111563275119174", | |
"createdAt": 1629383070622, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "0e00a84e-4d18-4cab-bc46-1419a84baa0c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 28, | |
"timestamp": 1629375750428, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 127, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7505440725604009", | |
"createdAt": 1629375747958, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1366e77c-4ee9-479f-b001-8b9823907fc7", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 121, | |
"timestamp": 1629375902224, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 405, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.370090970136539", | |
"createdAt": 1629375769570, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "caa53fa0-3a3c-4fba-b33a-246d36c8d494", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 149, | |
"threadCounter": 4, | |
"timestamp": 1629375772694, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 158, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7673171673544363", | |
"createdAt": 1629375767851, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "14153ad2-e71c-4522-b361-a106ee07be1a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 248, | |
"timestamp": 1629383116214, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 263, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.876536977228833", | |
"createdAt": 1629383071120, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ce0ffd31-1a98-4195-8b6d-5961555a6346", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 32, | |
"timestamp": 1629375782099, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 187, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.03246013630276068", | |
"createdAt": 1629375768085, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "67b2399a-5da1-4eae-a334-799e0ba503aa", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 52, | |
"timestamp": 1629375791080, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 209, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.45931436802265035", | |
"createdAt": 1629375768244, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "00be8460-12cd-4965-bb4d-7c8acc40e701", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 153, | |
"timestamp": 1629375927932, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 437, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.005751898995998372", | |
"createdAt": 1629375769769, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5bb3b0a3-7a38-4af0-b908-795825cde4be", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 42, | |
"timestamp": 1629368566790, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 694, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4734779999965456", | |
"createdAt": 1629368251319, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e8bd0e81-b859-46dc-b33b-9451f1218004", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 45, | |
"threadCounter": 2, | |
"timestamp": 1629368599588, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 278, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7274519183887745", | |
"createdAt": 1629368238089, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6f670066-e560-442d-9b16-ad31e4f017ac", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 17, | |
"timestamp": 1629368500713, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 645, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.18958482811943123", | |
"createdAt": 1629368248343, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "150e1c58-1f28-4e2c-a15b-3528097578d4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 199, | |
"threadCounter": 5, | |
"timestamp": 1629368624109, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 738, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7620762801944533", | |
"createdAt": 1629368253988, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "16221fd3-93ab-4bdd-afbf-520c4698be87", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 78, | |
"timestamp": 1629375871360, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 362, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.43701684542318653", | |
"createdAt": 1629375769326, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c4b253c6-ba64-431b-8d29-c92cb0ea17b4", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 29, | |
"timestamp": 1629375750683, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 128, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8772692639847524", | |
"createdAt": 1629375748011, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "4cce7049-07c2-4b2b-9cf3-b644514961a3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 79, | |
"timestamp": 1629376246740, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 726, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5235336884917109", | |
"createdAt": 1629375771825, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ef68ad48-f970-4bcf-9556-aa9686e8a48c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 98, | |
"timestamp": 1629376351108, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 745, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.048509201640218325", | |
"createdAt": 1629375840768, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c53a49ee-ecb5-41b9-bea4-0982da45104e", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 6, | |
"timestamp": 1629375773591, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 161, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5523987907276877", | |
"createdAt": 1629375767871, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "de337bf3-afa5-4da6-a4ff-2bc4636ac457", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 122, | |
"timestamp": 1629375902946, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 406, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5900747322305366", | |
"createdAt": 1629375769576, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "8e684da0-ab50-429c-bdaf-8fc2368d50e3", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 36, | |
"timestamp": 1629375783336, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 191, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.16754972440557636", | |
"createdAt": 1629375768101, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5fc8e5ce-9687-49cb-bce8-22c60c933cb1", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 141, | |
"timestamp": 1629383076441, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 156, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6687559576481991", | |
"createdAt": 1629383070247, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "176b278f-fc56-43dc-bca6-a472dc8daf6c", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 6, | |
"timestamp": 1629375792732, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 213, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6421575297975678", | |
"createdAt": 1629375768251, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "2effb9ee-0045-46b0-9fa3-eab678d08621", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 32, | |
"threadCounter": 21, | |
"timestamp": 1629375798404, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 228, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.06786403320419199", | |
"createdAt": 1629375768393, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b6653704-422a-4905-8ba4-a59aa34d65df", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 155, | |
"timestamp": 1629375929636, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 439, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5949652695470816", | |
"createdAt": 1629375769780, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "b9606452-2ac4-4678-8541-35799b506a48", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 199, | |
"timestamp": 1629383096217, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 214, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.006406794271898275", | |
"createdAt": 1629383070610, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "78395135-b851-4358-8786-3d3bbb122ee5", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 66, | |
"threadCounter": 4, | |
"timestamp": 1629375804180, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 239, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9845736602129588", | |
"createdAt": 1629375768448, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "42654bf3-11ab-4eeb-b529-ff7229c8b133", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 15, | |
"timestamp": 1629368499581, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 644, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5458076863480086", | |
"createdAt": 1629368248463, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "72186abb-fabb-4fd7-87f0-75d4495b08a8", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 16, | |
"timestamp": 1629368500215, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 233, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.543304991467555", | |
"createdAt": 1629368235654, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "06781af8-1f49-47c6-893d-9692f644bb2c", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 79, | |
"timestamp": 1629375872039, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 363, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7238722290541686", | |
"createdAt": 1629375769332, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9abed38a-11c4-44de-bfd6-f72eefc9146b", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 44, | |
"timestamp": 1629368567893, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 695, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10752808005354142", | |
"createdAt": 1629368251371, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "7c25b3d5-cb33-4150-9582-cabb36186599", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 18, | |
"timestamp": 1629368501832, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 234, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2951715103828262", | |
"createdAt": 1629368235706, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bebcb354-50cd-42da-9b4f-9f8f108358da", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 19, | |
"timestamp": 1629368501909, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 93, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.012867234948665152", | |
"createdAt": 1629368235782, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "9102c5cd-6f07-4934-9d05-c68a7b879ac6", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 20, | |
"timestamp": 1629368502369, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 646, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4786213798239053", | |
"createdAt": 1629368248672, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "59b3ff7d-98b3-48d3-8d5a-fec2038e76ad", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 208, | |
"threadCounter": 3, | |
"timestamp": 1629368600107, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 721, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4471376460450154", | |
"createdAt": 1629368252944, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "34c166b2-85cd-4803-b613-471387a2f27a", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 119, | |
"timestamp": 1629375900549, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 403, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.24883294074912343", | |
"createdAt": 1629375769581, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "eef8630e-33f0-4214-86ca-4a4057f5c310", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 21, | |
"timestamp": 1629368503186, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 235, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5178432278105339", | |
"createdAt": 1629368235809, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "bebd4b40-b109-4279-a8a6-812c465f38ed", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 209, | |
"threadCounter": 22, | |
"timestamp": 1629368503643, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 647, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7914225986742636", | |
"createdAt": 1629368248620, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "a072b6e6-176e-44d0-8b0e-f4666ff9c8f0", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 217, | |
"threadCounter": 3, | |
"timestamp": 1629368627379, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 741, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.6831252154892912", | |
"createdAt": 1629368254040, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5a2789a7-e2b9-4836-8f60-3da3f9d05389", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 154, | |
"timestamp": 1629375928752, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 438, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.32354654007988815", | |
"createdAt": 1629375769786, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "27000714-b504-4555-ab31-e6f0a62c2866", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 1, | |
"timestamp": 1629368505086, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 648, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.5748174283128253", | |
"createdAt": 1629368248569, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "ce6d018f-ed80-4886-98a0-ae9cd676ad17", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 78, | |
"threadCounter": 2, | |
"timestamp": 1629368505269, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 236, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.19399979499306608", | |
"createdAt": 1629368235757, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "784990fc-18fd-4f8c-90b8-baf6e79259f3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 30, | |
"timestamp": 1629375751070, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 129, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.13510882887341258", | |
"createdAt": 1629375748101, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "cbdea4f0-487f-4a36-a3c1-ecdf267d1c0c", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 200, | |
"threadCounter": 2, | |
"timestamp": 1629368506286, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 649, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.056299624929168623", | |
"createdAt": 1629368248724, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "c6666d95-2937-4e40-be5c-4d486807a379", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 210, | |
"threadCounter": 1, | |
"timestamp": 1629368506889, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 650, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8865518325307292", | |
"createdAt": 1629368248827, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "5d94af6e-6ef7-43ab-97b9-617e1f89b53e", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 139, | |
"timestamp": 1629383075915, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 154, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.9979566229935384", | |
"createdAt": 1629383070254, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "572cb7b9-e512-4109-b771-9a9fafc4f5a1", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 94, | |
"threadCounter": 1, | |
"timestamp": 1629368507557, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 237, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.1580909032750647", | |
"createdAt": 1629368235860, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d7de1405-7f76-4233-a1a5-6154b0fe20df", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 93, | |
"threadCounter": 43, | |
"timestamp": 1629368567367, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 108, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.09010320228253454", | |
"createdAt": 1629368237414, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "333a9fb1-02e0-4436-b96f-897b935da59a", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 189, | |
"threadCounter": 2, | |
"timestamp": 1629368600196, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 121, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.21872912845746972", | |
"createdAt": 1629368238136, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6fe3e0a6-1dd6-4519-b17f-129f783b1211", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 222, | |
"threadCounter": 3, | |
"timestamp": 1629368627475, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 130, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.010353973409775286", | |
"createdAt": 1629368238602, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "dc630410-6a63-43e7-bc9d-0ac8ec022fc6", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 80, | |
"timestamp": 1629376248009, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 727, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.2235655444563378", | |
"createdAt": 1629375771843, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "943cb572-41e7-44c7-93ed-a223d0308cdf", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 211, | |
"threadCounter": 1, | |
"timestamp": 1629368509042, | |
"aggregateId": "cca2127c-7cad-41c0-b9c1-251c4c34b812", | |
"aggregateversion": 651, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.10759048775679592", | |
"createdAt": 1629368248932, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "14175e5d-8496-4ec7-8819-b88848429a11", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 79, | |
"threadCounter": 2, | |
"timestamp": 1629368509260, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 238, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.07884538269436081", | |
"createdAt": 1629368236015, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "facb807c-2107-44c3-91d8-fbd39d2da3a3", | |
"parentCommentId": null | |
}, | |
"eventSize": 398 | |
}, | |
{ | |
"threadId": 60, | |
"threadCounter": 31, | |
"timestamp": 1629375751185, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 130, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.4122514876079858", | |
"createdAt": 1629375748152, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "1b491b1f-ac01-43d5-acb6-f30634f9a663", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 129, | |
"threadCounter": 140, | |
"timestamp": 1629383076179, | |
"aggregateId": "006ba5d8-5ce9-4315-9a79-a97252b4c873", | |
"aggregateversion": 155, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.024788250274092594", | |
"createdAt": 1629383070266, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "d2e2506d-98cd-4337-b8a5-66316ba4573d", | |
"parentCommentId": null | |
}, | |
"eventSize": 399 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 5, | |
"timestamp": 1629375773361, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 160, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.7728035506752169", | |
"createdAt": 1629375767883, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "e1fe5164-203b-4b9e-8758-3400c93d8f10", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 203, | |
"threadCounter": 33, | |
"timestamp": 1629375782427, | |
"aggregateId": "3d65e019-c418-4366-b6fc-cec48249c520", | |
"aggregateversion": 188, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.583096542195516", | |
"createdAt": 1629375768108, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "805fecb7-97ae-4fc9-a462-75a0cf9156b3", | |
"parentCommentId": null | |
}, | |
"eventSize": 396 | |
}, | |
{ | |
"threadId": 95, | |
"threadCounter": 1, | |
"timestamp": 1629368511427, | |
"aggregateId": "ace5372e-9ca5-4e95-b46c-046e2f3f1494", | |
"aggregateversion": 239, | |
"type": "COMMENT_CREATED", | |
"payload": { | |
"content": { | |
"text": "QQQ-0.8789462816467534", | |
"createdAt": 1629368236068, | |
"createdBy": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"createdByName": "QQQ" | |
}, | |
"authorId": "9b7e897c-b1e0-430a-b3e9-1a243844576c", | |
"commentId": "6a96804f-41dd-4520-90b5-b7a9e41baf31", | |
"parentCommentId": null | |
}, | |
"eventSize": 397 | |
}, | |
{ | |
"threadId": 81, | |
"threadCounter": 82, |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment