diff --git a/frontend/.gitignore b/frontend/.gitignore index 6fce862e7..80ae973a7 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -15,3 +15,6 @@ app/components/ui/SVG.js !.yarn/releases !.yarn/sdks !.yarn/versions +*.env.json +cypress.env.json +cypress/snapshots/__diff_output__/ \ No newline at end of file diff --git a/frontend/app/components/Session/WebPlayer.tsx b/frontend/app/components/Session/WebPlayer.tsx index 210e2bba1..783d45bf7 100644 --- a/frontend/app/components/Session/WebPlayer.tsx +++ b/frontend/app/components/Session/WebPlayer.tsx @@ -67,9 +67,13 @@ function WebPlayer(props: any) { } const jumpToTime = props.query.get('jumpto'); + const freeze = props.query.get('freeze') if (jumpToTime) { WebPlayerInst.jump(parseInt(jumpToTime)); } + if (freeze) { + WebPlayerInst.freeze() + } return () => WebPlayerInst.clean(); }, [session.sessionId]); diff --git a/frontend/app/player/player/Animator.ts b/frontend/app/player/player/Animator.ts index a5c399c69..4305ef2a5 100644 --- a/frontend/app/player/player/Animator.ts +++ b/frontend/app/player/player/Animator.ts @@ -26,6 +26,7 @@ export interface SetState { completed: boolean live: boolean livePlay: boolean + freeze: boolean endTime: number } @@ -46,6 +47,7 @@ export default class Animator { completed: false, live: false, livePlay: false, + freeze: false, endTime: 0, } as const @@ -129,6 +131,7 @@ export default class Animator { } play() { + if (this.store.get().freeze) return; if (!this.store.get().ready) { cancelAnimationFrame(this.animationFrameRequestId) this.store.update({ playing: true }) @@ -145,6 +148,18 @@ export default class Animator { this.store.update({ playing: false }) } + freeze() { + if (this.store.get().ready) { + // making sure that replay is displayed completely + setTimeout(() => { + this.store.update({ freeze: true }) + this.pause() + }, 500) + } else { + setTimeout(() => this.freeze(), 500) + } + } + togglePlay = () => { const { playing, completed } = this.store.get() if (playing) { @@ -189,14 +204,4 @@ export default class Animator { ); } } - - // TODO: clearify logic of live time-travel - jumpToLive = () => { - cancelAnimationFrame(this.animationFrameRequestId) - this.setTime(this.store.get().endTime) - this.startAnimation() - this.store.update({ livePlay: true }) - } - - } diff --git a/frontend/app/player/web/MessageManager.ts b/frontend/app/player/web/MessageManager.ts index c6cf403c4..df6a91179 100644 --- a/frontend/app/player/web/MessageManager.ts +++ b/frontend/app/player/web/MessageManager.ts @@ -119,7 +119,8 @@ export default class MessageManager { private readonly session: any /*Session*/, private readonly state: Store, private readonly screen: Screen, - initialLists?: Partial + initialLists?: Partial, + coldStart?: boolean ) { this.pagesManager = new PagesManager(screen, this.session.isMobile, cssLoading => { screen.displayFrame(!cssLoading) @@ -138,8 +139,9 @@ export default class MessageManager { this.activityManager = new ActivityManager(this.session.duration.milliseconds) // only if not-live - - this.loadMessages() + if (!coldStart) { + this.loadMessages() + } } private _sortMessagesHack(msgs: Message[]) { diff --git a/frontend/app/player/web/Screen/Screen.ts b/frontend/app/player/web/Screen/Screen.ts index 0eb1d7245..7fae818f6 100644 --- a/frontend/app/player/web/Screen/Screen.ts +++ b/frontend/app/player/web/Screen/Screen.ts @@ -57,7 +57,9 @@ export default class Screen { private readonly screen: HTMLDivElement; private parentElement: HTMLElement | null = null; - constructor(isMobile: boolean) { + constructor(isMobile: boolean, coldStart?: boolean) { + if (coldStart) return; + const iframe = document.createElement('iframe'); iframe.className = styles.iframe; this.iframe = iframe; diff --git a/frontend/app/player/web/WebPlayer.ts b/frontend/app/player/web/WebPlayer.ts index 81df4d3ca..ac76701ad 100644 --- a/frontend/app/player/web/WebPlayer.ts +++ b/frontend/app/player/web/WebPlayer.ts @@ -25,7 +25,7 @@ export default class WebPlayer extends Player { private targetMarker: TargetMarker - constructor(protected wpState: Store, session: any, live: boolean) { + constructor(protected wpState: Store, session: any, live: boolean, coldStart?: boolean) { let initialLists = live ? {} : { event: session.events || [], stack: session.stackEvents || [], @@ -40,8 +40,8 @@ export default class WebPlayer extends Player { ) || [], } - const screen = new Screen(session.isMobile) - const messageManager = new MessageManager(session, wpState, screen, initialLists) + const screen = new Screen(session.isMobile, coldStart) + const messageManager = new MessageManager(session, wpState, screen, initialLists, coldStart) super(wpState, messageManager) this.screen = screen this.messageManager = messageManager diff --git a/frontend/app/types/session/event.ts b/frontend/app/types/session/event.ts index 6a99d536a..bb901a6b1 100644 --- a/frontend/app/types/session/event.ts +++ b/frontend/app/types/session/event.ts @@ -83,13 +83,13 @@ class Console extends Event { } } -class Click extends Event { +export class Click extends Event { readonly type: typeof CLICKRAGE | typeof CLICK = CLICK; readonly name = 'Click' targetContent = ''; count: number - constructor(evt: ClickEvent, isClickRage: boolean) { + constructor(evt: ClickEvent, isClickRage?: boolean) { super(evt); this.targetContent = evt.targetContent this.count = evt.count @@ -116,7 +116,6 @@ export class Location extends Event { readonly type = LOCATION; url: LocationEvent["url"] host: LocationEvent["host"]; - pageLoad: LocationEvent["pageLoad"]; fcpTime: LocationEvent["fcpTime"]; loadTime: LocationEvent["loadTime"]; domContentLoadedTime: LocationEvent["domContentLoadedTime"]; diff --git a/frontend/app/utils/index.ts b/frontend/app/utils/index.ts index c9bed5e46..b1ae63f43 100644 --- a/frontend/app/utils/index.ts +++ b/frontend/app/utils/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import JSBI from 'jsbi'; import chroma from 'chroma-js'; import * as htmlToImage from 'html-to-image'; diff --git a/frontend/cypress.config.ts b/frontend/cypress.config.ts new file mode 100644 index 000000000..39814c7a8 --- /dev/null +++ b/frontend/cypress.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from "cypress"; +import {addMatchImageSnapshotPlugin} from 'cypress-image-snapshot/plugin'; +export default defineConfig({ + e2e: { + baseUrl: 'http://0.0.0.0:3333/', + setupNodeEvents(on, config) { + // implement node event listeners here + addMatchImageSnapshotPlugin(on, config) + }, + } +}); diff --git a/frontend/cypress.env.example.json b/frontend/cypress.env.example.json new file mode 100644 index 000000000..465ee69d5 --- /dev/null +++ b/frontend/cypress.env.example.json @@ -0,0 +1,4 @@ +{ + "account": "test", + "password": "test" +} \ No newline at end of file diff --git a/frontend/cypress/e2e/replayer.cy.ts b/frontend/cypress/e2e/replayer.cy.ts new file mode 100644 index 000000000..dcfd403fc --- /dev/null +++ b/frontend/cypress/e2e/replayer.cy.ts @@ -0,0 +1,26 @@ +describe('Replayer visual match test', () => { + it('Teklogiks sessions on 3 and 20 seconds are same', () => { + cy.intercept('/api/account').as('getAccount') + cy.intercept('/mobs/*').as('getSession') + + cy.visit('/', { + onBeforeLoad: function (window) { + window.localStorage.setItem('notesFeatureViewed', 'true'); + } + }) + cy.get(':nth-child(1) > .relative > .p-2').type(Cypress.env('account')) + cy.get(':nth-child(2) > .relative > .p-2').type(Cypress.env('password')) + cy.get('.h-10').click() + cy.wait('@getAccount') + cy.visit('3/session/7585361734083637?jumpto=5000&freeze=true') + cy.wait(1000) + + cy.matchImageSnapshot('1st-breakpoint'); + + cy.visit('3/session/7585361734083637?jumpto=20000&freeze=true') + // adjusting because we have more messages to load + cy.wait(3000) + + cy.matchImageSnapshot('2nd-breakpoint'); + }) +}) \ No newline at end of file diff --git a/frontend/cypress/fixtures/example.json b/frontend/cypress/fixtures/example.json new file mode 100644 index 000000000..02e425437 --- /dev/null +++ b/frontend/cypress/fixtures/example.json @@ -0,0 +1,5 @@ +{ + "name": "Using fixtures to represent data", + "email": "hello@cypress.io", + "body": "Fixtures are a great way to mock data for responses to routes" +} diff --git a/frontend/cypress/plugins/index.js b/frontend/cypress/plugins/index.js new file mode 100644 index 000000000..9d50d97dd --- /dev/null +++ b/frontend/cypress/plugins/index.js @@ -0,0 +1,7 @@ +const { + addMatchImageSnapshotPlugin, +} = require('cypress-image-snapshot/plugin'); + +module.exports = (on, config) => { + addMatchImageSnapshotPlugin(on, config); +}; \ No newline at end of file diff --git a/frontend/cypress/support/commands.ts b/frontend/cypress/support/commands.ts new file mode 100644 index 000000000..7288dd0bd --- /dev/null +++ b/frontend/cypress/support/commands.ts @@ -0,0 +1,45 @@ +/// +// *********************************************** +// This example commands.ts shows you how to +// create various custom commands and overwrite +// existing commands. +// +// For more comprehensive examples of custom +// commands please read more here: +// https://on.cypress.io/custom-commands +// *********************************************** +// +// +// -- This is a parent command -- +// Cypress.Commands.add('login', (email, password) => { ... }) +// +// +// -- This is a child command -- +// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) +// +// +// -- This is a dual command -- +// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) +// +// +// -- This will overwrite an existing command -- +// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) +// +// declare global { +// namespace Cypress { +// interface Chainable { +// login(email: string, password: string): Chainable +// drag(subject: string, options?: Partial): Chainable +// dismiss(subject: string, options?: Partial): Chainable +// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable +// } +// } +// } +import { addMatchImageSnapshotCommand } from 'cypress-image-snapshot/command'; + +addMatchImageSnapshotCommand({ + failureThreshold: 0.03, // threshold for entire image + failureThresholdType: "percent", // percent of image or number of pixels + customDiffConfig: { threshold: 0.1 }, // threshold for each pixel + capture: "viewport" // capture viewport in screenshot +}); \ No newline at end of file diff --git a/frontend/cypress/support/e2e.ts b/frontend/cypress/support/e2e.ts new file mode 100644 index 000000000..f80f74f8e --- /dev/null +++ b/frontend/cypress/support/e2e.ts @@ -0,0 +1,20 @@ +// *********************************************************** +// This example support/e2e.ts is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands' + +// Alternatively you can use CommonJS syntax: +// require('./commands') \ No newline at end of file diff --git a/frontend/jest.config.js b/frontend/jest.config.js index 729cf29a6..062feeb02 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,3 +1,33 @@ +/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { - // "preset": "jest-puppeteer" -} \ No newline at end of file + preset: 'ts-jest', + testEnvironment: 'node', + moduleNameMapper: { + '^Types/(.+)$': '/app/types/$1', + '^App/(.+)$': '/app/$1', + }, + transform: { + '^.+\\.(ts|tsx)?$': ['ts-jest', { isolatedModules: true, diagnostics: { warnOnly: true } }], + '^.+\\.(js|jsx)$': 'babel-jest', + }, + moduleDirectories: ['node_modules', 'app'], + moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'], +}; + +// +// module.exports = { +// globals: { +// "ts-jest": { +// tsConfig: "tsconfig.json", +// diagnostics: true +// }, +// NODE_ENV: "test" +// }, +// moduleNameMapper: { +// "^Types/(.+)$": "/app/types/$1" +// }, +// moduleDirectories: ["node_modules", 'app'], +// moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json"], + +// verbose: true +// }; \ No newline at end of file diff --git a/frontend/package.json b/frontend/package.json index 30c2f18e2..972628de3 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -15,7 +15,9 @@ "storybook": "start-storybook -p 6006", "flow": "flow", "postinstall": "yarn gen:icons && yarn gen:colors", - "build-storybook": "build-storybook" + "build-storybook": "build-storybook", + "test": "jest", + "cy:open": "cypress open" }, "dependencies": { "@floating-ui/react-dom-interactions": "^0.10.3", @@ -85,6 +87,7 @@ "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", "@babel/runtime": "^7.17.9", + "@jest/globals": "^29.3.1", "@mdx-js/react": "^1.6.22", "@openreplay/sourcemap-uploader": "^3.0.0", "@storybook/addon-actions": "^6.5.12", @@ -114,6 +117,8 @@ "country-data": "0.0.31", "css-loader": "^6.7.1", "cssnano": "^5.0.12", + "cypress": "^12.3.0", + "cypress-image-snapshot": "^4.0.1", "deasync-promise": "^1.0.1", "deploy-aws-s3-cloudfront": "^3.6.0", "dotenv": "^6.2.0", @@ -124,6 +129,7 @@ "file-loader": "^6.2.0", "flow-bin": "^0.115.0", "html-webpack-plugin": "^5.5.0", + "jest": "^29.3.1", "mini-css-extract-plugin": "^2.6.0", "minio": "^7.0.18", "moment-locales-webpack-plugin": "^1.2.0", @@ -141,6 +147,7 @@ "svg-inline-loader": "^0.8.2", "svgo": "^2.8.0", "tailwindcss": "^3.1.4", + "ts-jest": "^29.0.5", "ts-node": "^10.7.0", "typescript": "^4.6.4", "webpack": "^5.72.1", diff --git a/frontend/tests/mocks/devtools.mob b/frontend/tests/mocks/devtools.mob new file mode 100644 index 000000000..f0960c7f6 Binary files /dev/null and b/frontend/tests/mocks/devtools.mob differ diff --git a/frontend/tests/mocks/dom1.mobs b/frontend/tests/mocks/dom1.mobs new file mode 100644 index 000000000..e4f1a947f Binary files /dev/null and b/frontend/tests/mocks/dom1.mobs differ diff --git a/frontend/tests/mocks/dom2.mobe b/frontend/tests/mocks/dom2.mobe new file mode 100644 index 000000000..a190e354f Binary files /dev/null and b/frontend/tests/mocks/dom2.mobe differ diff --git a/frontend/tests/mocks/sessionData.js b/frontend/tests/mocks/sessionData.js new file mode 100644 index 000000000..f679959ae --- /dev/null +++ b/frontend/tests/mocks/sessionData.js @@ -0,0 +1,175 @@ +export const issues = [ + { + issueId: '9158adad14bcb1e0db18384c778a18f5ef2', + sessionId: 8119081922378909, + timestamp: 1673887658753, + seqIndex: 26901, + payload: { Rate: 71, Duration: 20804 }, + projectId: 2325, + type: 'cpu', + contextString: 'https://app.openreplay.com/5095/session/8118970199817356', + context: null, + icon: undefined, + key: 0, + name: undefined, + time: 300321, + }, + { + issueId: '915b2c49d8e08176a84c0d8e58732995fb8', + sessionId: 8119081922378909, + timestamp: 1673888064761, + seqIndex: 74984, + payload: { Rate: 80, Duration: 9684 }, + projectId: 2325, + type: 'cpu', + contextString: 'https://app.openreplay.com/5095/session/8118613089434832', + context: null, + icon: undefined, + key: 1, + name: undefined, + time: 706329, + }, +]; +export const events = [ + { + time: 519, + label: undefined, + key: 0, + target: { path: undefined, label: undefined }, + name: 'Location', + type: 'LOCATION', + sessionId: 8119081922378909, + messageId: 14, + timestamp: 1673887358951, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: 1637, + firstPaintTime: 1674, + firstContentfulPaintTime: 1674, + loadTime: 1870, + speedIndex: 1889, + visuallyComplete: 5110, + timeToInteractive: 5328, + domBuildingTime: 337, + path: '/3064/sessions', + baseReferrer: '', + responseTime: 2, + responseEnd: 1295, + ttfb: null, + query: '', + value: '/3064/sessions', + url: '/3064/sessions', + fcpTime: 1674, + }, + { + time: 10133, + label: + 'Inicio De Prova SESSIONS ASSIST DASHBOARDS FD Saved Search 0 Clear Search SESSIONS BOOKMARKS NOTES A', + key: 1, + target: { path: undefined, label: undefined }, + type: 'CLICK', + name: 'Click', + targetContent: undefined, + count: undefined, + }, + { + time: 12287, + label: 'Past 7 Days', + key: 2, + target: { path: undefined, label: undefined }, + type: 'CLICK', + name: 'Click', + targetContent: undefined, + count: undefined, + }, + { + time: 13146, + label: 'Search sessions using any captured event (click, input, page, error...)', + key: 3, + target: { path: undefined, label: undefined }, + type: 'CLICK', + name: 'Click', + targetContent: undefined, + count: undefined, + }, + { + time: 13777, + label: + 'Inicio De Prova Add Project Inicio De Prova Nova Proposta SESSIONS ASSIST DASHBOARDS FD INTERACTIONS', + key: 4, + target: { path: undefined, label: undefined }, + type: 'CLICK', + name: 'Click', + targetContent: undefined, + count: undefined, + }, + { + time: 14440, + label: 'Nova Proposta', + key: 5, + target: { path: undefined, label: undefined }, + type: 'CLICK', + name: 'Click', + targetContent: undefined, + count: undefined, + }, + { + time: 14496, + label: undefined, + key: 6, + target: { path: undefined, label: undefined }, + name: 'Location', + type: 'LOCATION', + sessionId: 8119081922378909, + messageId: 2038, + timestamp: 1673887372928, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/sessions', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/sessions', + url: '/5095/sessions', + fcpTime: null, + }, + { + time: 15166, + label: 'Search sessions using any captured event (click, input, page, error...)', + key: 7, + target: { path: undefined, label: undefined }, + type: 'CLICK', + name: 'Click', + targetContent: undefined, + count: undefined, + }, + { + time: 15726, + label: 'Search sessions using any captured event (click, input, page, error...)', + key: 8, + target: { path: undefined, label: undefined }, + type: 'INPUT', + name: 'Input', + value: 'click', + }, + { + time: 17270, + label: 'Click', + key: 9, + target: { path: undefined, label: undefined }, + type: 'CLICK', + name: 'Click', + targetContent: undefined, + count: undefined, + }, +]; diff --git a/frontend/tests/mocks/sessionResponse.js b/frontend/tests/mocks/sessionResponse.js new file mode 100644 index 000000000..6064aec0a --- /dev/null +++ b/frontend/tests/mocks/sessionResponse.js @@ -0,0 +1,12863 @@ +export const session = { + data: { + sessionId: '8119081922378909', + projectId: 2325, + startTs: 1673887358432, + duration: 789966, + userId: 'fernando.dufour@pravaler.com.br', + userAnonymousId: null, + userUuid: '94e71049-8701-45e6-b9ce-b246714ccbc5', + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', + userOs: 'Mac OS X', + userBrowser: 'Chrome', + userDevice: '', + userDeviceType: 'desktop', + userCountry: 'BR', + pagesCount: 23, + eventsCount: 362, + errorsCount: 0, + revId: 'Saas_1.9.0', + userOsVersion: '10.15.7', + userBrowserVersion: '108.0.0', + userDeviceHeapSize: 2172649472, + userDeviceMemorySize: 8192, + trackerVersion: '4.1.8', + watchdogsScore: 0, + platform: 'web', + issueScore: 1673889358, + issueTypes: '{cpu}', + isSnippet: false, + rehydrationId: null, + utmSource: null, + utmMedium: null, + utmCampaign: null, + referrer: null, + baseReferrer: null, + fileKey: null, + projectKey: '9WiKbZukI3t64rIc3lnn', + favorite: false, + viewed: true, + events: [ + { + sessionId: 8119081922378909, + messageId: 14, + timestamp: 1673887358951, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: 1637, + firstPaintTime: 1674, + firstContentfulPaintTime: 1674, + loadTime: 1870, + speedIndex: 1889, + visuallyComplete: 5110, + timeToInteractive: 5328, + domBuildingTime: 337, + path: '/3064/sessions', + baseReferrer: '', + responseTime: 2, + responseEnd: 1295, + ttfb: null, + query: '', + value: '/3064/sessions', + url: '/3064/sessions', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 993, + timestamp: 1673887368565, + label: + 'Inicio De Prova SESSIONS ASSIST DASHBOARDS FD Saved Search 0 Clear Search SESSIONS BOOKMARKS NOTES A', + url: 'app.openreplay.com/3064/sessions', + selector: '#app', + path: '/3064/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 1022, + timestamp: 1673887370719, + label: 'Past 7 Days', + url: 'app.openreplay.com/3064/sessions', + selector: '#react-select-2-option-1', + path: '/3064/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 1677, + timestamp: 1673887371578, + label: 'Search sessions using any captured event (click, input, page, error...)', + url: 'app.openreplay.com/3064/sessions', + selector: '#search', + path: '/3064/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 1686, + timestamp: 1673887372209, + label: + 'Inicio De Prova Add Project Inicio De Prova Nova Proposta SESSIONS ASSIST DASHBOARDS FD INTERACTIONS', + url: 'app.openreplay.com/3064/sessions', + selector: '#app', + path: '/3064/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 1695, + timestamp: 1673887372872, + label: 'Nova Proposta', + url: 'app.openreplay.com/3064/sessions', + selector: + '#app > div.header-module__header--Jwjd7.fixed.w-full.bg-white.flex.justify-between > div.flex.items-center > div > div.siteDropdown-module__wrapper--HHW4o > div.siteDropdown-module__menu--v6SPy > ul > li', + path: '/3064/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 2038, + timestamp: 1673887372928, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/sessions', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/sessions', + url: '/5095/sessions', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 2617, + timestamp: 1673887373598, + label: 'Search sessions using any captured event (click, input, page, error...)', + url: 'app.openreplay.com/5095/sessions', + selector: '#search', + path: '/5095/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 5318, + timestamp: 1673887374158, + label: 'Search sessions using any captured event (click, input, page, error...)', + value: 'click', + type: 'INPUT', + }, + { + sessionId: 8119081922378909, + messageId: 5397, + timestamp: 1673887375702, + label: 'Click', + url: 'app.openreplay.com/5095/sessions', + selector: + '#app > div.page-margin.container-90.flex.relative > div.flex-1.flex > div.w-full.mx-auto > div.mb-5 > div.flex.items-center > div > div.relative > div.absolute.left-0.border.shadow.rounded.bg-white.z-50 > div.FilterModal-module__wrapper--E7xyB > div.mb-6 > div.mb-6.flex.flex-col.gap-2 > div > div.FilterModal-module__optionItem--AWh_e.flex.items-center.py-2.cursor-pointer.-mx-2.px-2', + path: '/5095/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 5689, + timestamp: 1673887375745, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/sessions', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: 'clk=on%7C', + value: '/5095/sessions', + url: '/5095/sessions', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 8353, + timestamp: 1673887376919, + label: 'Type to search', + url: 'app.openreplay.com/5095/sessions', + selector: + '#app > div.page-margin.container-90.flex.relative > div.flex-1.flex > div.w-full.mx-auto > div.mb-5 > div.border.bg-white.rounded.mt-4 > div.p-5 > div.flex.flex-col > div.flex.items-center.hover:bg-active-blue.-mx-5.px-5.py-2 > div.flex.items-start.w-full > div.grid.gap-3.grid-cols-3 > div > div.relative.flex.items-center > div.FilterAutoComplete-module__wrapper--lqRmv.relative > input.w-full.rounded.px-2.no-focus', + path: '/5095/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 8380, + timestamp: 1673887377375, + label: 'Type to search', + value: 'Buscar', + type: 'INPUT', + }, + { + sessionId: 8119081922378909, + messageId: 8423, + timestamp: 1673887380115, + label: 'BUSCAR CURSOS', + url: 'app.openreplay.com/5095/sessions', + selector: '#react-select-7-option-0', + path: '/5095/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 8474, + timestamp: 1673887380152, + label: 'Type to search', + value: 'BUSCAR CURSOS', + type: 'INPUT', + }, + { + sessionId: 8119081922378909, + messageId: 8475, + timestamp: 1673887380152, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/sessions', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: 'clk=on%7CBUSCAR+CURSOS', + value: '/5095/sessions', + url: '/5095/sessions', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 16759, + timestamp: 1673887409535, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/sessions', + selector: '#play-button > a.link-module__link--kvDmn', + path: '/5095/sessions', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 16798, + timestamp: 1673887409611, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8119041915010275', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8119041915010275', + url: '/5095/session/8119041915010275', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 18460, + timestamp: 1673887413132, + label: + 'Back Anonymous User 01:32pm · Brazil · Mobile Safari, IOS, IPhone · More ApplicationId 63226bf93b9b0', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: '#app', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 18768, + timestamp: 1673887414749, + label: '00:20', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 19797, + timestamp: 1673887420017, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 19940, + timestamp: 1673887420737, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20008, + timestamp: 1673887421068, + label: '00:53', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20082, + timestamp: 1673887421433, + label: '00:53', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20220, + timestamp: 1673887422101, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20262, + timestamp: 1673887435113, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20376, + timestamp: 1673887435724, + label: '01:31', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20435, + timestamp: 1673887436057, + label: + 'Back Anonymous User 01:32pm · Brazil · Mobile Safari, IOS, IPhone · More ApplicationId 63226bf93b9b0', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: '#app', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20515, + timestamp: 1673887436481, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 20658, + timestamp: 1673887437138, + label: '02:12', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 21074, + timestamp: 1673887634761, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8119041915010275', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8119041915010275', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 21108, + timestamp: 1673887634918, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8119023158082639', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8119023158082639', + url: '/5095/session/8119023158082639', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 22953, + timestamp: 1673887637612, + label: '00:38', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23109, + timestamp: 1673887638175, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23208, + timestamp: 1673887638543, + label: '01:11', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23326, + timestamp: 1673887639223, + label: '01:11', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23420, + timestamp: 1673887639656, + label: '01:29', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23509, + timestamp: 1673887639993, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23781, + timestamp: 1673887641343, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23807, + timestamp: 1673887641758, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23833, + timestamp: 1673887642229, + label: '04:10', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23864, + timestamp: 1673887642680, + label: '04:14', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23887, + timestamp: 1673887643031, + label: '04:20', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23921, + timestamp: 1673887643497, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 23963, + timestamp: 1673887645210, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 24120, + timestamp: 1673887648980, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8119023158082639', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8119023158082639', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 24147, + timestamp: 1673887649132, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118970199817356', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118970199817356', + url: '/5095/session/8118970199817356', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 25889, + timestamp: 1673887652022, + label: '00:11', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26015, + timestamp: 1673887652517, + label: '00:15', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26107, + timestamp: 1673887653010, + label: '00:15', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26256, + timestamp: 1673887653759, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26332, + timestamp: 1673887654152, + label: '00:28', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26417, + timestamp: 1673887654584, + label: '00:40', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26542, + timestamp: 1673887655207, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26557, + timestamp: 1673887655554, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26622, + timestamp: 1673887655838, + label: '00:55', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26665, + timestamp: 1673887656302, + label: '00:59', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26714, + timestamp: 1673887657071, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26888, + timestamp: 1673887658111, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26913, + timestamp: 1673887680545, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26949, + timestamp: 1673887681614, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118970199817356', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118970199817356', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 26979, + timestamp: 1673887681778, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118941288938501', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118941288938501', + url: '/5095/session/8118941288938501', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 28537, + timestamp: 1673887685261, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 28782, + timestamp: 1673887686146, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 28867, + timestamp: 1673887686590, + label: '00:28', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 28935, + timestamp: 1673887686943, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 29419, + timestamp: 1673887689401, + label: '00:31', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 29526, + timestamp: 1673887689742, + label: '00:32', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 29603, + timestamp: 1673887690224, + label: '00:32', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 29762, + timestamp: 1673887690874, + label: '00:45', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 29946, + timestamp: 1673887691747, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30048, + timestamp: 1673887692095, + label: + 'Back Anonymous User 01:06pm · Brazil · Chrome, Windows, Desktop · More ApplicationId 63c5761909dd6f4', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: '#app', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30110, + timestamp: 1673887692445, + label: + 'Back Anonymous User 01:06pm · Brazil · Chrome, Windows, Desktop · More ApplicationId 63c5761909dd6f4', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: '#app', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30220, + timestamp: 1673887692927, + label: + 'Back Anonymous User 01:06pm · Brazil · Chrome, Windows, Desktop · More ApplicationId 63c5761909dd6f4', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: '#app', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30309, + timestamp: 1673887693439, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30414, + timestamp: 1673887693927, + label: '02:12', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30631, + timestamp: 1673887695086, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30769, + timestamp: 1673887695584, + label: '03:07', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 30896, + timestamp: 1673887696073, + label: '03:41', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 31084, + timestamp: 1673887697099, + label: '03:51', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 31158, + timestamp: 1673887697489, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 31479, + timestamp: 1673887699033, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118941288938501', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118941288938501', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 31510, + timestamp: 1673887699178, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118857356000307', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118857356000307', + url: '/5095/session/8118857356000307', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 33824, + timestamp: 1673887702568, + label: '00:32', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 33917, + timestamp: 1673887703018, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34025, + timestamp: 1673887703537, + label: '01:27', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34168, + timestamp: 1673887704293, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34253, + timestamp: 1673887704710, + label: '01:42', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34338, + timestamp: 1673887705146, + label: '02:09', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34493, + timestamp: 1673887705938, + label: + 'Back Anonymous User 12:45pm · Brazil · Chrome, Windows, Desktop · More ApplicationId 63c571183040b80', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: '#app', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34554, + timestamp: 1673887706304, + label: + 'Back Anonymous User 12:45pm · Brazil · Chrome, Windows, Desktop · More ApplicationId 63c571183040b80', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: '#app', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34616, + timestamp: 1673887706638, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34740, + timestamp: 1673887707199, + label: '03:14', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34895, + timestamp: 1673887707746, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 34955, + timestamp: 1673887708051, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35038, + timestamp: 1673887708495, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35203, + timestamp: 1673887709457, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35311, + timestamp: 1673887710019, + label: '06:57', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35393, + timestamp: 1673887710378, + label: '07:21', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35493, + timestamp: 1673887710931, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35615, + timestamp: 1673887711495, + label: '07:27', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35801, + timestamp: 1673887713149, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118857356000307', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118857356000307', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 35832, + timestamp: 1673887713338, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118843021704432', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118843021704432', + url: '/5095/session/8118843021704432', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 37522, + timestamp: 1673887715900, + label: 'hover-main color-main cursor-pointer rounded hover:bg-gray-light-shade', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.controls-module__buttons--vje3y > div.flex.items-center > div.flex.items-center > div.relative > div > div.hover-main.color-main.cursor-pointer.rounded.hover:bg-gray-light-shade', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 37830, + timestamp: 1673887905304, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 38007, + timestamp: 1673887906287, + label: '00:25', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 38094, + timestamp: 1673887906714, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 38187, + timestamp: 1673887907134, + label: '00:43', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 38277, + timestamp: 1673887907588, + label: '00:51', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 38381, + timestamp: 1673887908132, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 38473, + timestamp: 1673887908561, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 39032, + timestamp: 1673887911408, + label: '01:15', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 39338, + timestamp: 1673887913006, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118843021704432', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118843021704432', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 39368, + timestamp: 1673887913137, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118806248420922', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118806248420922', + url: '/5095/session/8118806248420922', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 41222, + timestamp: 1673887916756, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 41320, + timestamp: 1673887917191, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 41441, + timestamp: 1673887917772, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 41554, + timestamp: 1673887918231, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 41620, + timestamp: 1673887918588, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 41791, + timestamp: 1673887919411, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 41878, + timestamp: 1673887919752, + label: '00:59', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 41978, + timestamp: 1673887920193, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 42085, + timestamp: 1673887920669, + label: '01:07', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 42201, + timestamp: 1673887921245, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 42431, + timestamp: 1673887922478, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 42704, + timestamp: 1673887923933, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118806248420922', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118806248420922', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 42734, + timestamp: 1673887924087, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118804409742859', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118804409742859', + url: '/5095/session/8118804409742859', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 44431, + timestamp: 1673887926799, + label: '00:17', + url: 'app.openreplay.com/5095/session/8118804409742859', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118804409742859', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 47569, + timestamp: 1673887945617, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118804409742859', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118804409742859', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 47705, + timestamp: 1673887946283, + label: '01:54', + url: 'app.openreplay.com/5095/session/8118804409742859', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118804409742859', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 47848, + timestamp: 1673887947314, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118804409742859', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118804409742859', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 47874, + timestamp: 1673887947454, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118789878445746', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118789878445746', + url: '/5095/session/8118789878445746', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 50106, + timestamp: 1673887950396, + label: '00:18', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50184, + timestamp: 1673887950819, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50278, + timestamp: 1673887951274, + label: '00:54', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50360, + timestamp: 1673887951688, + label: '01:06', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50435, + timestamp: 1673887952133, + label: '01:06', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50517, + timestamp: 1673887952549, + label: '01:16', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50613, + timestamp: 1673887953069, + label: '01:16', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50684, + timestamp: 1673887953377, + label: '01:55', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50756, + timestamp: 1673887953787, + label: '01:55', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 50833, + timestamp: 1673887954172, + label: '02:03', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51011, + timestamp: 1673887955089, + label: '02:34', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51107, + timestamp: 1673887955587, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51188, + timestamp: 1673887956021, + label: '02:43', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51319, + timestamp: 1673887956731, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51401, + timestamp: 1673887957167, + label: '03:13', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51596, + timestamp: 1673887958210, + label: '04:37', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51664, + timestamp: 1673887958554, + label: '04:37', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51733, + timestamp: 1673887958896, + label: '05:07', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51798, + timestamp: 1673887959186, + label: '05:50', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51873, + timestamp: 1673887959536, + label: '06:05', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 51930, + timestamp: 1673887959848, + label: '06:05', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52004, + timestamp: 1673887960213, + label: '06:20', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52079, + timestamp: 1673887960608, + label: '06:36', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52150, + timestamp: 1673887960968, + label: '06:59', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52240, + timestamp: 1673887961454, + label: '07:24', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52303, + timestamp: 1673887961771, + label: '07:44', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52367, + timestamp: 1673887962085, + label: '07:57', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52446, + timestamp: 1673887962477, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52821, + timestamp: 1673887964594, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118789878445746', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118789878445746', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 52851, + timestamp: 1673887964798, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118778337868907', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118778337868907', + url: '/5095/session/8118778337868907', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 54862, + timestamp: 1673887968522, + label: '00:34', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 54928, + timestamp: 1673887968856, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 55114, + timestamp: 1673887969890, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 55282, + timestamp: 1673887970613, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 55434, + timestamp: 1673887971164, + label: '00:37', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 55586, + timestamp: 1673887971775, + label: '00:30', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 55791, + timestamp: 1673887972755, + label: '00:30', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 55881, + timestamp: 1673887973220, + label: '00:43', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 55958, + timestamp: 1673887973618, + label: '00:48', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 56060, + timestamp: 1673887974053, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 56172, + timestamp: 1673887974571, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 56252, + timestamp: 1673887974970, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 56515, + timestamp: 1673887976449, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 56847, + timestamp: 1673887978187, + label: '05:32', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 56957, + timestamp: 1673887978765, + label: '05:29', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 57041, + timestamp: 1673887979238, + label: '05:29', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 57233, + timestamp: 1673887980236, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118778337868907', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118778337868907', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 57260, + timestamp: 1673887980376, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118750395677903', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118750395677903', + url: '/5095/session/8118750395677903', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 59858, + timestamp: 1673887984084, + label: '00:28', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 59920, + timestamp: 1673887984438, + label: '00:28', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 60099, + timestamp: 1673887985427, + label: '02:21', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 60189, + timestamp: 1673887985871, + label: '02:09', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 60265, + timestamp: 1673887986324, + label: '02:09', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 60513, + timestamp: 1673887987651, + label: '05:13', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 60596, + timestamp: 1673887988155, + label: '05:13', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 60659, + timestamp: 1673887988464, + label: '05:31', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61027, + timestamp: 1673887990588, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61098, + timestamp: 1673887990935, + label: '07:27', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61166, + timestamp: 1673887991315, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61256, + timestamp: 1673887991725, + label: '09:01', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61405, + timestamp: 1673887992509, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61463, + timestamp: 1673887992797, + label: '10:28', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61570, + timestamp: 1673887993361, + label: '11:12', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61638, + timestamp: 1673887993722, + label: '11:27', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61704, + timestamp: 1673887994084, + label: '12:10', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61771, + timestamp: 1673887994425, + label: '12:37', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61844, + timestamp: 1673887994784, + label: '13:12', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61915, + timestamp: 1673887995125, + label: '13:39', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 61982, + timestamp: 1673887995469, + label: '14:17', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 62037, + timestamp: 1673887995751, + label: '14:32', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 62198, + timestamp: 1673887996610, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118750395677903', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118750395677903', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 62224, + timestamp: 1673887996786, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118746485800060', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118746485800060', + url: '/5095/session/8118746485800060', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 64030, + timestamp: 1673887999813, + label: '00:19', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64108, + timestamp: 1673888000198, + label: '00:15', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64201, + timestamp: 1673888000679, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64289, + timestamp: 1673888001151, + label: '00:30', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64375, + timestamp: 1673888001504, + label: '00:43', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64458, + timestamp: 1673888001945, + label: '00:48', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64541, + timestamp: 1673888002401, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64610, + timestamp: 1673888002736, + label: '00:55', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64748, + timestamp: 1673888003422, + label: + 'Back Anonymous User 12:17pm · Brazil · Chrome Mobile, Android, Motorola G(60) · More ApplicationId 6', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: '#app', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64808, + timestamp: 1673888003778, + label: + 'Back Anonymous User 12:17pm · Brazil · Chrome Mobile, Android, Motorola G(60) · More ApplicationId 6', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: '#app', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64866, + timestamp: 1673888004132, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 64933, + timestamp: 1673888004449, + label: '01:27', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65008, + timestamp: 1673888004764, + label: '01:40', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65080, + timestamp: 1673888005110, + label: + 'Back Anonymous User 12:17pm · Brazil · Chrome Mobile, Android, Motorola G(60) · More ApplicationId 6', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: '#app', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65142, + timestamp: 1673888005494, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65215, + timestamp: 1673888005843, + label: '01:54', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65280, + timestamp: 1673888006147, + label: '01:54', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65439, + timestamp: 1673888006845, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65501, + timestamp: 1673888007190, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65565, + timestamp: 1673888007502, + label: '02:37', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65640, + timestamp: 1673888007877, + label: '02:55', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65726, + timestamp: 1673888008284, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65791, + timestamp: 1673888008586, + label: '03:13', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 65969, + timestamp: 1673888009549, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 66128, + timestamp: 1673888010395, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118746485800060', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118746485800060', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 66159, + timestamp: 1673888010549, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118633985734291', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118633985734291', + url: '/5095/session/8118633985734291', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 67718, + timestamp: 1673888012602, + label: 'hover-main color-main cursor-pointer rounded hover:bg-gray-light-shade', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.controls-module__buttons--vje3y > div.flex.items-center > div.flex.items-center > div.relative > div > div.hover-main.color-main.cursor-pointer.rounded.hover:bg-gray-light-shade', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 67905, + timestamp: 1673888019368, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68094, + timestamp: 1673888020343, + label: '00:16', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68173, + timestamp: 1673888020722, + label: '00:11', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68277, + timestamp: 1673888021266, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68364, + timestamp: 1673888021665, + label: '00:38', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68614, + timestamp: 1673888022969, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68697, + timestamp: 1673888023350, + label: '00:57', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68840, + timestamp: 1673888024075, + label: '01:03', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 68981, + timestamp: 1673888024760, + label: '01:10', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69129, + timestamp: 1673888025520, + label: '01:24', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69209, + timestamp: 1673888025955, + label: '01:24', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69528, + timestamp: 1673888027711, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69587, + timestamp: 1673888027983, + label: '01:58', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69654, + timestamp: 1673888028334, + label: '01:58', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69714, + timestamp: 1673888028588, + label: '02:34', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69876, + timestamp: 1673888029475, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 69953, + timestamp: 1673888029831, + label: '04:14', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 70037, + timestamp: 1673888030253, + label: '04:14', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 70110, + timestamp: 1673888030615, + label: '04:28', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 70185, + timestamp: 1673888031016, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 70234, + timestamp: 1673888031229, + label: '05:00', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 70313, + timestamp: 1673888031575, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 70482, + timestamp: 1673888032496, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118633985734291', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118633985734291', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 70513, + timestamp: 1673888032659, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118630504330810', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118630504330810', + url: '/5095/session/8118630504330810', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 72283, + timestamp: 1673888056856, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72362, + timestamp: 1673888057237, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72455, + timestamp: 1673888057670, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72468, + timestamp: 1673888058107, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72526, + timestamp: 1673888058447, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72649, + timestamp: 1673888058915, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72720, + timestamp: 1673888059247, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72795, + timestamp: 1673888059656, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 72991, + timestamp: 1673888060632, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118630504330810', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118630504330810', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 73021, + timestamp: 1673888060767, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118613089434832', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118613089434832', + url: '/5095/session/8118613089434832', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 75400, + timestamp: 1673888084323, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 75495, + timestamp: 1673888084848, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 75577, + timestamp: 1673888085273, + label: '01:10', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 75663, + timestamp: 1673888085731, + label: '01:46', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 75725, + timestamp: 1673888086047, + label: '02:13', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 75794, + timestamp: 1673888086393, + label: '02:19', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 75892, + timestamp: 1673888086830, + label: '03:14', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 75991, + timestamp: 1673888087362, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 76059, + timestamp: 1673888087695, + label: '03:32', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 76119, + timestamp: 1673888087973, + label: '03:49', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 76280, + timestamp: 1673888088861, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 76432, + timestamp: 1673888089681, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 76507, + timestamp: 1673888090116, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 76684, + timestamp: 1673888091087, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118613089434832', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118613089434832', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 76714, + timestamp: 1673888091277, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118592777665791', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118592777665791', + url: '/5095/session/8118592777665791', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 78810, + timestamp: 1673888097086, + label: '00:19', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 78866, + timestamp: 1673888097360, + label: '00:19', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 78938, + timestamp: 1673888097708, + label: '00:19', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79017, + timestamp: 1673888098012, + label: '00:53', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79170, + timestamp: 1673888098820, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79234, + timestamp: 1673888099155, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79306, + timestamp: 1673888099490, + label: '01:22', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79467, + timestamp: 1673888100272, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79525, + timestamp: 1673888100592, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79608, + timestamp: 1673888100986, + label: '02:03', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79771, + timestamp: 1673888101842, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79849, + timestamp: 1673888102224, + label: '02:23', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79909, + timestamp: 1673888102509, + label: '02:35', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 79990, + timestamp: 1673888102941, + label: '02:35', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80067, + timestamp: 1673888103261, + label: '03:03', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80128, + timestamp: 1673888103620, + label: '03:03', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80195, + timestamp: 1673888103954, + label: '03:12', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80257, + timestamp: 1673888104243, + label: '03:21', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80329, + timestamp: 1673888104487, + label: '03:47', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80398, + timestamp: 1673888104841, + label: '03:47', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80463, + timestamp: 1673888105146, + label: '03:54', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80550, + timestamp: 1673888105544, + label: '04:08', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80834, + timestamp: 1673888107051, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118592777665791', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118592777665791', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 80865, + timestamp: 1673888107239, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118562697246396', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118562697246396', + url: '/5095/session/8118562697246396', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 82627, + timestamp: 1673888109892, + label: '00:11', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 82713, + timestamp: 1673888110281, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 82816, + timestamp: 1673888110699, + label: '00:22', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 82951, + timestamp: 1673888111100, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83069, + timestamp: 1673888111621, + label: '00:39', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83195, + timestamp: 1673888112264, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83285, + timestamp: 1673888112710, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83353, + timestamp: 1673888113044, + label: '00:47', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83523, + timestamp: 1673888113910, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83608, + timestamp: 1673888114270, + label: + 'Back Anonymous User 11:30am · Brazil · Mobile Safari, IOS, IPhone · More ApplicationId 63c541342aba9', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: '#app', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83699, + timestamp: 1673888114832, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83751, + timestamp: 1673888115021, + label: + 'Back Anonymous User 11:30am · Brazil · Mobile Safari, IOS, IPhone · More ApplicationId 63c541342aba9', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: '#app', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 83956, + timestamp: 1673888116167, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 84209, + timestamp: 1673888117518, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118562697246396', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118562697246396', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 84235, + timestamp: 1673888117650, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118559548241523', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118559548241523', + url: '/5095/session/8118559548241523', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 86588, + timestamp: 1673888120950, + label: '00:18', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 86651, + timestamp: 1673888121298, + label: '00:18', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 86723, + timestamp: 1673888121662, + label: '00:26', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 86883, + timestamp: 1673888122561, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 86979, + timestamp: 1673888123037, + label: '03:46', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87098, + timestamp: 1673888123627, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87288, + timestamp: 1673888124715, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87343, + timestamp: 1673888125053, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87421, + timestamp: 1673888125428, + label: '06:42', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87562, + timestamp: 1673888126005, + label: '06:42', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87715, + timestamp: 1673888126781, + label: '07:32', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87790, + timestamp: 1673888127207, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87856, + timestamp: 1673888127584, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 87924, + timestamp: 1673888127937, + label: '08:06', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 88059, + timestamp: 1673888128646, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 88140, + timestamp: 1673888129115, + label: '09:40', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 88238, + timestamp: 1673888129614, + label: '10:58', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 88363, + timestamp: 1673888130346, + label: 'link-module__link--kvDmn', + url: 'app.openreplay.com/5095/session/8118559548241523', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.w-full.px-4.py-2.flex.items-center.border-b > div.ml-auto.text-sm.flex.items-center.color-gray-medium.gap-2 > div > div.flex.items-center > div.relative > div > a.link-module__link--kvDmn', + path: '/5095/session/8118559548241523', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 88393, + timestamp: 1673888130578, + host: 'app.openreplay.com', + referrer: '', + domContentLoadedTime: null, + firstPaintTime: null, + firstContentfulPaintTime: null, + loadTime: null, + speedIndex: null, + visuallyComplete: null, + timeToInteractive: null, + domBuildingTime: null, + path: '/5095/session/8118556979885624', + baseReferrer: '', + responseTime: null, + responseEnd: null, + ttfb: null, + query: '', + value: '/5095/session/8118556979885624', + url: '/5095/session/8118556979885624', + type: 'LOCATION', + }, + { + sessionId: 8119081922378909, + messageId: 90402, + timestamp: 1673888133249, + label: 'hover-main color-main cursor-pointer rounded hover:bg-gray-light-shade', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.controls-module__buttons--vje3y > div.flex.items-center > div.flex.items-center > div.relative > div > div.hover-main.color-main.cursor-pointer.rounded.hover:bg-gray-light-shade', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 90437, + timestamp: 1673888136912, + label: 'overlay-module__overlay--cParP', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.relative.flex-1.overflow-hidden > div.overlay-module__overlay--cParP', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 90590, + timestamp: 1673888137720, + label: '00:15', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 90658, + timestamp: 1673888138083, + label: '00:15', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 90739, + timestamp: 1673888138465, + label: '00:22', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91026, + timestamp: 1673888139974, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91100, + timestamp: 1673888140318, + label: '00:45', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91194, + timestamp: 1673888140694, + label: '00:58', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91281, + timestamp: 1673888141121, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91424, + timestamp: 1673888141937, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91478, + timestamp: 1673888142206, + label: '01:11', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91635, + timestamp: 1673888143053, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91702, + timestamp: 1673888143355, + label: '02:55', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91786, + timestamp: 1673888143762, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91851, + timestamp: 1673888144071, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 91994, + timestamp: 1673888144817, + label: '03:14', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92082, + timestamp: 1673888145213, + label: '03:22', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92168, + timestamp: 1673888145642, + label: '03:34', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92251, + timestamp: 1673888146059, + label: '03:45', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92339, + timestamp: 1673888146394, + label: '04:00', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92416, + timestamp: 1673888146720, + label: '04:09', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92488, + timestamp: 1673888147096, + label: '04:14', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92559, + timestamp: 1673888147441, + label: '04:21', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + { + sessionId: 8119081922378909, + messageId: 92741, + timestamp: 1673888148063, + label: 'timeline-module__progress--zmG3d', + url: 'app.openreplay.com/5095/session/8118556979885624', + selector: + '#app > div.relative > div.flex > div.w-full > div.session-module__session--PKpp5.relative > div.playerBlock-module__playerBlock--c8_Ul.flex.flex-col.overflow-x-hidden > div.flex-1.player-module__playerBody--aoTX_.flex.flex-col.relative > div.controls-module__controls--fXp80 > div.flex.items-center.absolute.w-full > div.timeline-module__progress--zmG3d', + path: '/5095/session/8118556979885624', + type: 'CLICK', + }, + ], + stackEvents: [], + errors: [], + userEvents: [], + domURL: [ + 'https://asayer-mobs.s3.amazonaws.com/8119081922378909/dom.mobs?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA6RAO3SOP6GE5ISKO%2F20230117%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230117T143651Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=d0b022119cae8f66d4a65bf1805424e3fc6c37fab2a3836c45ee40ed522d1f5d', + 'https://asayer-mobs.s3.amazonaws.com/8119081922378909/dom.mobe?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA6RAO3SOP6GE5ISKO%2F20230117%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230117T143651Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=f8b8d4759b7b5daaa57ace809321e136e801fb19c6dcc77b629b01f87060af68', + ], + mobsUrl: [ + 'https://asayer-mobs.s3.amazonaws.com/8119081922378909?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA6RAO3SOP6GE5ISKO%2F20230117%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230117T143651Z&X-Amz-Expires=100000&X-Amz-SignedHeaders=host&X-Amz-Signature=72c446fb41871ebcc17076e6b4b6b5eeed8405205e0af063716346de0c1e5e2c', + 'https://asayer-mobs.s3.amazonaws.com/8119081922378909e?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA6RAO3SOP6GE5ISKO%2F20230117%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230117T143651Z&X-Amz-Expires=100000&X-Amz-SignedHeaders=host&X-Amz-Signature=4058af85175bc590ee868f751d9e161f0ac11dcee99f309c9faecccb5a331f8c', + ], + devtoolsURL: [ + 'https://asayer-mobs.s3.amazonaws.com/8119081922378909/devtools.mob?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA6RAO3SOP6GE5ISKO%2F20230117%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230117T143651Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=520bc5371ba14ac143965d15e20de95d75cfe87a9361bc1a690950b9dceb0aaf', + ], + resources: [ + { + datetime: 1673887354000, + url: 'https://fonts.googleapis.com/css2', + type: 'other', + duration: 6, + ttfb: 6, + headerSize: null, + encodedBodySize: 717, + decodedBodySize: 8820, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://app.openreplay.com/app-a69ab38.js', + type: 'script', + duration: 123, + ttfb: 23, + headerSize: 300, + encodedBodySize: 1217842, + decodedBodySize: 4610798, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://app.openreplay.com/app-48509b8.js', + type: 'script', + duration: 123, + ttfb: 108, + headerSize: 300, + encodedBodySize: 263378, + decodedBodySize: 1097309, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://d2yyd1h5u9mauk.cloudfront.net/integrations/web/v1/library/MehpSkgi5fumG1v1/delighted.js', + type: 'script', + duration: 306, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://client.crisp.chat/l.js', + type: 'script', + duration: 96, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://app.openreplay.com/main.css', + type: 'stylesheet', + duration: 6, + ttfb: 4, + headerSize: null, + encodedBodySize: 28428, + decodedBodySize: 168932, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://api.openreplay.com/account', + type: 'fetch', + duration: 948, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://app.openreplay.com/assets/favicon-32x32.png', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 1090, + decodedBodySize: 1090, + success: 1, + status: 200, + }, + { + datetime: 1673887354000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887355000, + url: 'https://client.crisp.chat/settings/website/adc74d6f-70c5-4947-bdf1-c359f3becfaf/prelude/', + type: 'other', + duration: 273, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887355000, + url: 'https://client.crisp.chat/static/javascripts/client.js', + type: 'script', + duration: 88, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887355000, + url: 'https://client.crisp.chat/static/stylesheets/client_default.css', + type: 'stylesheet', + duration: 3, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887355000, + url: 'https://api.openreplay.com/projects', + type: 'fetch', + duration: 1731, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://client.crisp.chat/settings/website/adc74d6f-70c5-4947-bdf1-c359f3becfaf/', + type: 'other', + duration: 247, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://client.crisp.chat/static/javascripts/locales/pt-br.js', + type: 'script', + duration: 2, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://app.openreplay.com/524.app-f7855df.js', + type: 'script', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 9215, + decodedBodySize: 34130, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://app.openreplay.com/524.css', + type: 'stylesheet', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 945, + decodedBodySize: 945, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/config/assist/credentials', + type: 'fetch', + duration: 452, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/boarding', + type: 'fetch', + duration: 509, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/limits', + type: 'fetch', + duration: 490, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/notifications/count', + type: 'fetch', + duration: 489, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/3064/metadata', + type: 'fetch', + duration: 489, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/3064/saved_search', + type: 'fetch', + duration: 634, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/3064/sessions/search', + type: 'fetch', + duration: 639, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/3064/metadata', + type: 'fetch', + duration: 696, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 631, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://app.openreplay.com/a52087055f7c449b58e37ce2983a1c2b.svg', + type: 'img', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 663, + decodedBodySize: 1390, + success: 1, + status: 200, + }, + { + datetime: 1673887357000, + url: 'https://app.openreplay.com/72e998d1a54e62418bf4fd23d08fb439.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 895, + decodedBodySize: 2194, + success: 1, + status: 200, + }, + { + datetime: 1673887370000, + url: 'https://api.openreplay.com/3064/sessions/search', + type: 'fetch', + duration: 298, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887370000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 14, + ttfb: 14, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887372000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 232, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887372000, + url: 'https://api.openreplay.com/5095/metadata', + type: 'fetch', + duration: 488, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887372000, + url: 'https://api.openreplay.com/5095/saved_search', + type: 'fetch', + duration: 465, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887372000, + url: 'https://api.openreplay.com/5095/assist/sessions', + type: 'fetch', + duration: 590, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887372000, + url: 'https://api.openreplay.com/5095/metadata', + type: 'fetch', + duration: 683, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887372000, + url: 'https://api.openreplay.com/5095/sessions/search', + type: 'fetch', + duration: 941, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887372000, + url: 'https://api.openreplay.com/5095/sessions/search', + type: 'fetch', + duration: 910, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887373000, + url: 'https://app.openreplay.com/cde4fdba423055516fe5.png', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 55435, + decodedBodySize: 55435, + success: 1, + status: 200, + }, + { + datetime: 1673887375000, + url: 'https://api.openreplay.com/5095/sessions/search', + type: 'fetch', + duration: 275, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887375000, + url: 'https://api.openreplay.com/5095/events/search', + type: 'fetch', + duration: 937, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887378000, + url: 'https://api.openreplay.com/5095/events/search', + type: 'fetch', + duration: 793, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887379000, + url: 'https://api.openreplay.com/5095/sessions/search', + type: 'fetch', + duration: 416, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887379000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 13, + ttfb: 12, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887381000, + url: 'https://api.openreplay.com/5095/sessions/search', + type: 'fetch', + duration: 265, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887407000, + url: 'https://api.openreplay.com/5095/sessions/search', + type: 'fetch', + duration: 269, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887407000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 15, + ttfb: 15, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://app.openreplay.com/964.app-d791f13.js', + type: 'script', + duration: 27, + ttfb: 25, + headerSize: null, + encodedBodySize: 14492, + decodedBodySize: 52143, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://app.openreplay.com/577.app-d38b8c9.js', + type: 'script', + duration: 27, + ttfb: 24, + headerSize: null, + encodedBodySize: 38635, + decodedBodySize: 163450, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://app.openreplay.com/723.app-ae9daea.js', + type: 'script', + duration: 28, + ttfb: 26, + headerSize: null, + encodedBodySize: 46917, + decodedBodySize: 216435, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://app.openreplay.com/308.app-3fbd091.js', + type: 'script', + duration: 25, + ttfb: 23, + headerSize: null, + encodedBodySize: 9465, + decodedBodySize: 33695, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://app.openreplay.com/723.css', + type: 'stylesheet', + duration: 26, + ttfb: 25, + headerSize: null, + encodedBodySize: 5572, + decodedBodySize: 27902, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://app.openreplay.com/308.css', + type: 'stylesheet', + duration: 25, + ttfb: 24, + headerSize: null, + encodedBodySize: 1797, + decodedBodySize: 8546, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://api.openreplay.com/5095/sessions/8119041915010275', + type: 'fetch', + duration: 679, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887409000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 4, + ttfb: 4, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887410000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 230, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887410000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 465, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887410000, + url: 'https://api.openreplay.com/integrations/slack/channels', + type: 'fetch', + duration: 456, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887410000, + url: 'https://api.openreplay.com/5095/sessions/8119041915010275/notes', + type: 'fetch', + duration: 470, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887410000, + url: 'https://asayer-mobs.s3.amazonaws.com/8119041915010275/devtools.mob', + type: 'fetch', + duration: 750, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887410000, + url: 'https://asayer-mobs.s3.amazonaws.com/8119041915010275/dom.mobs', + type: 'fetch', + duration: 1194, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887411000, + url: 'https://asayer-mobs.s3.amazonaws.com/8119041915010275/dom.mobe', + type: 'fetch', + duration: 229, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887419000, + url: 'https://cadastro.pravaler.com.br/assets/images/NotFoundSimulation.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887420000, + url: 'https://cadastro.pravaler.com.br/assets/images/NotFoundSimulation.svg', + type: 'img', + duration: 45, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887436000, + url: 'https://cadastro.pravaler.com.br/assets/images/NotFoundSimulation.svg', + type: 'img', + duration: 58, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887634000, + url: 'https://api.openreplay.com/5095/sessions/8119023158082639', + type: 'fetch', + duration: 869, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887634000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887635000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 242, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887635000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 242, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887635000, + url: 'https://api.openreplay.com/5095/sessions/8119023158082639/notes', + type: 'fetch', + duration: 472, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887635000, + url: 'https://asayer-mobs.s3.amazonaws.com/8119023158082639/devtools.mob', + type: 'fetch', + duration: 980, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887635000, + url: 'https://asayer-mobs.s3.amazonaws.com/8119023158082639/dom.mobs', + type: 'fetch', + duration: 1231, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887636000, + url: 'https://asayer-mobs.s3.amazonaws.com/8119023158082639/dom.mobe', + type: 'fetch', + duration: 235, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887636000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 44, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887639000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 8, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887639000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887639000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 4, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887639000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887641000, + url: 'https://static.amigoedu.com.br/5333fba9-1ba7-41b0-9aa4-f797817b654b.jpeg', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887641000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 43, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887641000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 43, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887641000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 45, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887642000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 47, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887643000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887644000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 54, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887645000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887648000, + url: 'https://api.openreplay.com/5095/sessions/8118970199817356', + type: 'fetch', + duration: 700, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887648000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887649000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 249, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887649000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 253, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887649000, + url: 'https://api.openreplay.com/5095/sessions/8118970199817356/notes', + type: 'fetch', + duration: 546, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887649000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118970199817356/devtools.mob', + type: 'fetch', + duration: 906, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887649000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118970199817356/dom.mobs', + type: 'fetch', + duration: 1387, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887650000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118970199817356/dom.mobe', + type: 'fetch', + duration: 221, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887650000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://static.amigoedu.com.br/logos-universidade/12d3bdab-95cf-44a8-b23d-2f1f9bc5237a/ec9dc864-4504-412d-b3d4-bd4ee81ffb96.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 45, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 44, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 44, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://static.amigoedu.com.br/logos-universidade/37ee5a57-c6e0-4f2c-918a-4530d5190652/1663854154556.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 44, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 43, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 43, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 50, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 58, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 24, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 21, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 21, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 24, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 21, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 21, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 20, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 20, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 20, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 19, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 19, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887655000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887681000, + url: 'https://api.openreplay.com/5095/sessions/8118941288938501', + type: 'fetch', + duration: 730, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887681000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887682000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 237, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887682000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 239, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887682000, + url: 'https://api.openreplay.com/5095/sessions/8118941288938501/notes', + type: 'fetch', + duration: 467, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887682000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118941288938501/devtools.mob', + type: 'fetch', + duration: 942, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887682000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118941288938501/dom.mobs', + type: 'fetch', + duration: 1742, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887684000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118941288938501/dom.mobe', + type: 'fetch', + duration: 1320, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887684000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-duvida.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059779;ord=1673885219551', + type: 'img', + duration: 108, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://pubads.g.doubleclick.net/activity;dc_iu=/8804/DFPAudiencePixel;ord=1673885226546dc_seg=7527659555', + type: 'img', + duration: 126, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059782;ord=1673885226546', + type: 'img', + duration: 126, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-lupa.png', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: null, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-duvida.png', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059779;ord=1673885219551', + type: 'img', + duration: 92, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://pubads.g.doubleclick.net/activity;dc_iu=/8804/DFPAudiencePixel;ord=1673885226546dc_seg=7527659555', + type: 'img', + duration: 104, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059782;ord=1673885226546', + type: 'img', + duration: 104, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-lupa.png', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887689000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 0, + status: 400, + }, + { + datetime: 1673887690000, + url: 'https://static.amigoedu.com.br/logos-universidade/4c6524d6-0b59-4e73-abac-5135940afd08/1659970046509.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887690000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887690000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887690000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887691000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 24, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887692000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 46, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887693000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://static.amigoedu.com.br/logos-universidade/37ee5a57-c6e0-4f2c-918a-4530d5190652/1663854154556.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://static.amigoedu.com.br/49cc6e34-c68c-45b5-874d-a0772831969e.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://static.amigoedu.com.br/0efce96e-d1cd-406a-9af0-a37788152473.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 25, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 24, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 24, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887694000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 43, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887695000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://static.amigoedu.com.br/logos-universidade/e4a9e102-de66-470e-845f-6cd9b7557505/1667943448716.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887697000, + url: 'https://static.amigoedu.com.br/logos-universidade/df3cbfcd-e275-4516-ac2e-9e2e2a97ae75/1660158207598.jpeg', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887697000, + url: 'https://static.amigoedu.com.br/logos-universidade/426e4f84-4181-4d15-a180-c9efd391b535/1652990351825.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887697000, + url: 'https://static.amigoedu.com.br/9658f5f5-130c-462f-b712-a63758f7aada.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887697000, + url: 'https://static.amigoedu.com.br/d564c1ba-5a07-4797-b314-ee9233167e91.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887697000, + url: 'https://static.amigoedu.com.br/5333fba9-1ba7-41b0-9aa4-f797817b654b.jpeg', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/ies_default_icon.png', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 23, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 22, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 21, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 20, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 20, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 20, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 19, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 19, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 14, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887697000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887698000, + url: 'https://api.openreplay.com/5095/sessions/8118857356000307', + type: 'fetch', + duration: 751, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887698000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887699000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 237, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887699000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 239, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887699000, + url: 'https://api.openreplay.com/5095/sessions/8118857356000307/notes', + type: 'fetch', + duration: 467, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887699000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118857356000307/devtools.mob', + type: 'fetch', + duration: 927, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887699000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118857356000307/dom.mobs', + type: 'fetch', + duration: 1217, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887700000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118857356000307/dom.mobe', + type: 'fetch', + duration: 218, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887700000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 44, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887702000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887702000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887706000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-duvida.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887706000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887706000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887706000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-lupa.png', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887706000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887706000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887712000, + url: 'https://api.openreplay.com/5095/sessions/8118843021704432', + type: 'fetch', + duration: 830, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887712000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887713000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 238, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887713000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 241, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887713000, + url: 'https://api.openreplay.com/5095/sessions/8118843021704432/notes', + type: 'fetch', + duration: 466, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887713000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118843021704432/devtools.mob', + type: 'fetch', + duration: 683, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887713000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118843021704432/dom.mobs', + type: 'fetch', + duration: 1059, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887714000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118843021704432/dom.mobe', + type: 'fetch', + duration: 218, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887714000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887909000, + url: 'https://cadastro.pravaler.com.br/assets/images/NotFoundSimulation.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887910000, + url: 'https://cadastro.pravaler.com.br/assets/images/NotFoundSimulation.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887912000, + url: 'https://api.openreplay.com/5095/sessions/8118806248420922', + type: 'fetch', + duration: 791, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887912000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 4, + ttfb: 3, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887913000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 255, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887913000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 270, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887913000, + url: 'https://api.openreplay.com/5095/sessions/8118806248420922/notes', + type: 'fetch', + duration: 474, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887913000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118806248420922/devtools.mob', + type: 'fetch', + duration: 738, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887913000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118806248420922/dom.mobs', + type: 'fetch', + duration: 964, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887914000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118806248420922/dom.mobe', + type: 'fetch', + duration: 235, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887914000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887921000, + url: 'https://cadastro.pravaler.com.br/assets/images/NotFoundSimulation.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887921000, + url: 'https://cadastro.pravaler.com.br/assets/images/NotFoundSimulation.svg', + type: 'img', + duration: 50, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887923000, + url: 'https://api.openreplay.com/5095/sessions/8118804409742859', + type: 'fetch', + duration: 742, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887923000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887924000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 236, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887924000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 237, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887924000, + url: 'https://api.openreplay.com/5095/sessions/8118804409742859/notes', + type: 'fetch', + duration: 462, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887924000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118804409742859/devtools.mob', + type: 'fetch', + duration: 854, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887924000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118804409742859/dom.mobs', + type: 'fetch', + duration: 1168, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887925000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118804409742859/dom.mobe', + type: 'fetch', + duration: 216, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887925000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 20, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 19, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 19, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 12, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 11, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 11, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 11, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 10, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887939000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887940000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 14, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887940000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 14, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887940000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 13, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887940000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 12, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887940000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 12, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887940000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887942000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 48, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887942000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 69, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887947000, + url: 'https://api.openreplay.com/5095/sessions/8118789878445746', + type: 'fetch', + duration: 760, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887947000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 240, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887947000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 243, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887947000, + url: 'https://api.openreplay.com/5095/sessions/8118789878445746/notes', + type: 'fetch', + duration: 465, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887947000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118789878445746/devtools.mob', + type: 'fetch', + duration: 1113, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887947000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118789878445746/dom.mobs', + type: 'fetch', + duration: 1243, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887947000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887949000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118789878445746/dom.mobe', + type: 'fetch', + duration: 233, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887949000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887952000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887953000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 13, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887953000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887953000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 6, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887953000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 6, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887964000, + url: 'https://api.openreplay.com/5095/sessions/8118778337868907', + type: 'fetch', + duration: 702, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887964000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887965000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 235, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887965000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 476, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887965000, + url: 'https://api.openreplay.com/5095/sessions/8118778337868907/notes', + type: 'fetch', + duration: 480, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887965000, + url: 'https://api.openreplay.com/5095/sessions/search/ids', + type: 'fetch', + duration: 487, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887965000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118778337868907/devtools.mob', + type: 'fetch', + duration: 918, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887965000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118778337868907/dom.mobs', + type: 'fetch', + duration: 1211, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887966000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118778337868907/dom.mobe', + type: 'fetch', + duration: 231, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887966000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 72, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887969000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 43, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887969000, + url: 'https://pubads.g.doubleclick.net/activity;dc_iu=/8804/DFPAudiencePixel;ord=1673882715700dc_seg=7527870968', + type: 'img', + duration: 70, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887969000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059779;ord=1673882715697', + type: 'img', + duration: 70, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887969000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887970000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887970000, + url: 'https://pubads.g.doubleclick.net/activity;dc_iu=/8804/DFPAudiencePixel;ord=1673882715700dc_seg=7527870968', + type: 'img', + duration: 90, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887970000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059779;ord=1673882715697', + type: 'img', + duration: 90, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887970000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 46, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887970000, + url: 'https://pubads.g.doubleclick.net/activity;dc_iu=/8804/DFPAudiencePixel;ord=1673882715700dc_seg=7527870968', + type: 'img', + duration: 85, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887970000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059779;ord=1673882715697', + type: 'img', + duration: 85, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887971000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887971000, + url: 'https://pubads.g.doubleclick.net/activity;dc_iu=/8804/DFPAudiencePixel;ord=1673882715700dc_seg=7527870968', + type: 'img', + duration: 66, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887971000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059779;ord=1673882715697', + type: 'img', + duration: 65, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887973000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 7, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887973000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887973000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 4, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887973000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 4, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887973000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 7, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887973000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 7, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887974000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 11, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887974000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887974000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 9, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887974000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 42, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887978000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887978000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 77, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887979000, + url: 'https://api.openreplay.com/5095/sessions/8118750395677903', + type: 'fetch', + duration: 833, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887980000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 239, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887980000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 241, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887980000, + url: 'https://api.openreplay.com/5095/sessions/8118750395677903/notes', + type: 'fetch', + duration: 465, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887980000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118750395677903/devtools.mob', + type: 'fetch', + duration: 1054, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887980000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118750395677903/dom.mobs', + type: 'fetch', + duration: 1277, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887980000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887982000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118750395677903/dom.mobe', + type: 'fetch', + duration: 217, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887982000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887982000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887982000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887996000, + url: 'https://api.openreplay.com/5095/sessions/8118746485800060', + type: 'fetch', + duration: 754, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887996000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673887997000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 242, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887997000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 245, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887997000, + url: 'https://api.openreplay.com/5095/sessions/8118746485800060/notes', + type: 'fetch', + duration: 468, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887997000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118746485800060/devtools.mob', + type: 'fetch', + duration: 1019, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887997000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118746485800060/dom.mobs', + type: 'fetch', + duration: 1190, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887998000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118746485800060/dom.mobe', + type: 'fetch', + duration: 236, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887998000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-duvida.png', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887998000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887998000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887998000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-lupa.png', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673887998000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 50, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888005000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888007000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888007000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888010000, + url: 'https://api.openreplay.com/5095/sessions/8118633985734291', + type: 'fetch', + duration: 722, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888010000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 242, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888010000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 469, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888010000, + url: 'https://api.openreplay.com/5095/sessions/8118633985734291/notes', + type: 'fetch', + duration: 469, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888010000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118633985734291/devtools.mob', + type: 'fetch', + duration: 937, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888010000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118633985734291/dom.mobs', + type: 'fetch', + duration: 1220, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888010000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888012000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118633985734291/dom.mobe', + type: 'fetch', + duration: 219, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888012000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 45, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888012000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888012000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888023000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 8, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888023000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888023000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 9, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888023000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888023000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 5, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888023000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888025000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 3, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888025000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888025000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 5, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888025000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888027000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888027000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888028000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888028000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888029000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888029000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 71, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888032000, + url: 'https://api.openreplay.com/5095/sessions/8118630504330810', + type: 'fetch', + duration: 774, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888032000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888033000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 237, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888033000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 240, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888033000, + url: 'https://api.openreplay.com/5095/sessions/8118630504330810/notes', + type: 'fetch', + duration: 463, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888033000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118630504330810/devtools.mob', + type: 'fetch', + duration: 891, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888033000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118630504330810/dom.mobs', + type: 'fetch', + duration: 1216, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888034000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118630504330810/dom.mobe', + type: 'fetch', + duration: 232, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888055000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888057000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 5, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888057000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 26, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-duvida.png', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://pubads.g.doubleclick.net/activity;dc_iu=/8804/DFPAudiencePixel;ord=1673880463599dc_seg=7527870968', + type: 'img', + duration: 77, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://pubads.g.doubleclick.net/activity;xsp=5059779;ord=1673880463599', + type: 'img', + duration: 76, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-lupa.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 39, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888058000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888060000, + url: 'https://api.openreplay.com/5095/sessions/8118613089434832', + type: 'fetch', + duration: 805, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888060000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888061000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 238, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888061000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 241, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888061000, + url: 'https://api.openreplay.com/5095/sessions/8118613089434832/notes', + type: 'fetch', + duration: 465, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888061000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118613089434832/devtools.mob', + type: 'fetch', + duration: 1069, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888061000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118613089434832/dom.mobs', + type: 'fetch', + duration: 1293, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888062000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118613089434832/dom.mobe', + type: 'fetch', + duration: 227, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888063000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888063000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 40, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888063000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 69, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888086000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888086000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888087000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 4, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888087000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888087000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 41, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888087000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888088000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888089000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888089000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 73, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888090000, + url: 'https://api.openreplay.com/5095/sessions/8118592777665791', + type: 'fetch', + duration: 686, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888090000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 4, + ttfb: 4, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888091000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 244, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888091000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 251, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888091000, + url: 'https://api.openreplay.com/5095/sessions/8118592777665791/notes', + type: 'fetch', + duration: 470, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888091000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118592777665791/devtools.mob', + type: 'fetch', + duration: 1044, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888091000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118592777665791/dom.mobs', + type: 'fetch', + duration: 1139, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888092000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118592777665791/dom.mobe', + type: 'fetch', + duration: 220, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888106000, + url: 'https://api.openreplay.com/5095/sessions/8118562697246396', + type: 'fetch', + duration: 689, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888106000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888107000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 237, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888107000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 239, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888107000, + url: 'https://api.openreplay.com/5095/sessions/8118562697246396/notes', + type: 'fetch', + duration: 462, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888107000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118562697246396/devtools.mob', + type: 'fetch', + duration: 889, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888107000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118562697246396/dom.mobs', + type: 'fetch', + duration: 1179, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888108000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118562697246396/dom.mobe', + type: 'fetch', + duration: 219, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888108000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888111000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888112000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888112000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888113000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 27, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888114000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888114000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888117000, + url: 'https://api.openreplay.com/5095/sessions/8118559548241523', + type: 'fetch', + duration: 719, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888117000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888118000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 237, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888118000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 239, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888118000, + url: 'https://api.openreplay.com/5095/sessions/8118559548241523/notes', + type: 'fetch', + duration: 464, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888118000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118559548241523/devtools.mob', + type: 'fetch', + duration: 1162, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888118000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118559548241523/dom.mobs', + type: 'fetch', + duration: 1346, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888119000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118559548241523/dom.mobe', + type: 'fetch', + duration: 233, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888119000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 53, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 9, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 9, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 9, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 9, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 8, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 8, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 8, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 8, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 43, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 14, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 14, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 14, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 14, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 13, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 13, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 12, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 12, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888122000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 12, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-duvida.png', + type: 'img', + duration: 31, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://static.amigoedu.com.br/logos-universidade/37ee5a57-c6e0-4f2c-918a-4530d5190652/1663854154556.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673888125000, + url: 'https://static.amigoedu.com.br/logos-universidade/426e4f84-4181-4d15-a180-c9efd391b535/1652990351825.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673888125000, + url: 'https://static.amigoedu.com.br/88cc0647-cbad-4811-b45f-4758b469bdd0.png', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/ies_default_icon.png', + type: 'img', + duration: 38, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://static.amigoedu.com.br/logos-universidade/43ab3b89-4274-4127-99f4-2e7b1d2b228f/1658502191843.jpeg', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673888125000, + url: 'https://static.amigoedu.com.br/b9af77d6-bf8b-476c-9b3a-51447140630b.jpeg', + type: 'img', + duration: null, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 0, + status: 400, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 48, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/homem-lupa.png', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 2, + ttfb: 2, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 19, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 18, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 17, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888125000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 33, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888126000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888126000, + url: 'https://cadastro.pravaler.com.br/assets/icons/book-icon.svg', + type: 'img', + duration: 32, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888126000, + url: 'https://cadastro.pravaler.com.br/assets/icons/point-icon.svg', + type: 'img', + duration: 37, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888126000, + url: 'https://cadastro.pravaler.com.br/assets/images/ies_default_icon.png', + type: 'img', + duration: 34, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 16, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 15, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888127000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 35, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888128000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 28, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888128000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888130000, + url: 'https://api.openreplay.com/5095/sessions/8118556979885624', + type: 'fetch', + duration: 758, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888130000, + url: 'https://api.openreplay.com/integrations/issues', + type: 'fetch', + duration: 243, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888130000, + url: 'https://api.openreplay.com/client/members', + type: 'fetch', + duration: 242, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888130000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118556979885624/devtools.mob', + type: 'fetch', + duration: 944, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888130000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118556979885624/dom.mobs', + type: 'fetch', + duration: 1220, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888130000, + url: 'https://app.openreplay.com/3c091395cdc66aaa862e731865a1e1c4.svg', + type: 'img', + duration: 1, + ttfb: 1, + headerSize: null, + encodedBodySize: 771, + decodedBodySize: 2330, + success: 1, + status: 200, + }, + { + datetime: 1673888131000, + url: 'https://api.openreplay.com/5095/sessions/search/ids', + type: 'fetch', + duration: 262, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888131000, + url: 'https://api.openreplay.com/5095/sessions/8118556979885624/notes', + type: 'fetch', + duration: 463, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888132000, + url: 'https://asayer-mobs.s3.amazonaws.com/8118556979885624/dom.mobe', + type: 'fetch', + duration: 231, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888132000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image-studying-men.png', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888132000, + url: 'https://cadastro.pravaler.com.br/assets/images/dsprv-image_group-clipart-doctor.png', + type: 'img', + duration: 29, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888132000, + url: 'https://cadastro.pravaler.com.br/_next/static/media/logo-pravaler.a40af452.svg', + type: 'img', + duration: 30, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + { + datetime: 1673888139000, + url: 'https://cadastro.pravaler.com.br/assets/images/dropdown-icon.svg', + type: 'img', + duration: 36, + ttfb: null, + headerSize: null, + encodedBodySize: null, + decodedBodySize: null, + success: 1, + status: 200, + }, + ], + notes: [], + metadata: { plan: 'pay_as_you_go' }, + issues: [ + { + issueId: '9158adad14bcb1e0db18384c778a18f5ef2', + sessionId: 8119081922378909, + timestamp: 1673887658753, + seqIndex: 26901, + payload: { Rate: 71, Duration: 20804 }, + projectId: 2325, + type: 'cpu', + contextString: 'https://app.openreplay.com/5095/session/8118970199817356', + context: null, + }, + { + issueId: '915b2c49d8e08176a84c0d8e58732995fb8', + sessionId: 8119081922378909, + timestamp: 1673888064761, + seqIndex: 74984, + payload: { Rate: 80, Duration: 9684 }, + projectId: 2325, + type: 'cpu', + contextString: 'https://app.openreplay.com/5095/session/8118613089434832', + context: null, + }, + ], + live: false, + inDB: true, + }, +}; diff --git a/frontend/tests/player.test.js b/frontend/tests/player.test.js new file mode 100644 index 000000000..76f2ea262 --- /dev/null +++ b/frontend/tests/player.test.js @@ -0,0 +1,8 @@ +import WebPlayer from 'App/player/web/WebPlayer'; +import SimpleStore from 'App/player/common/SimpleStore' + +let store = new SimpleStore({ + ...WebPlayer.INITIAL_STATE, +}) + +const player = new WebPlayer(store, session, false) diff --git a/frontend/tests/session.test.js b/frontend/tests/session.test.js new file mode 100644 index 000000000..9f3f4b674 --- /dev/null +++ b/frontend/tests/session.test.js @@ -0,0 +1,32 @@ +import { describe, expect, test } from '@jest/globals'; + +import Session from 'Types/Session'; +import { Click, Location } from 'Types/Session/event'; +import Issue from 'Types/Session/issue'; +import { session } from './mocks/sessionResponse'; +import { issues, events } from "./mocks/sessionData"; + +describe('Testing Session class', () => { + const sessionInfo = new Session(session.data); + + test('checking type instances', () => { + expect(sessionInfo).toBeInstanceOf(Session); + expect(sessionInfo.issues[0]).toBeInstanceOf(Issue); + expect(sessionInfo.events[0]).toBeInstanceOf(Location); + expect(sessionInfo.events[1]).toBeInstanceOf(Click); + }); + test('checking basic session info(id, userId, issues and events lengths to match)', () => { + expect(sessionInfo.sessionId).toBe('8119081922378909'); + expect(sessionInfo.isMobile).toBe(false); + expect(sessionInfo.userNumericHash).toBe(55003039); + expect(sessionInfo.userId).toBe('fernando.dufour@pravaler.com.br'); + expect(sessionInfo.issues.length).toBe(2); + expect(sessionInfo.notesWithEvents.length).toBe(362); + }); + test('checking issue mapping', () => { + expect([...sessionInfo.issues]).toMatchObject(issues); + }); + test('checking events mapping', () => { + expect([...sessionInfo.events.slice(0, 10)]).toMatchObject(events) + }) +});